index.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <template>
  2. <view class="van-index-bar">
  3. <slot />
  4. <view
  5. v-if="showSidebar"
  6. class="van-index-bar__sidebar"
  7. @tap.stop.prevent="onClick"
  8. @touchmove.stop.prevent="onTouchMove"
  9. @touchend.stop.prevent="onTouchStop"
  10. @touchcancel.stop.prevent="onTouchStop"
  11. >
  12. <view
  13. class="van-index-bar__index"
  14. :style="'z-index: ' + (zIndex + 1) + '; color: ' + (activeAnchorIndex === index ? highlightColor : '')"
  15. :data-index="index"
  16. v-for="(item, index) in indexList"
  17. :key="index"
  18. >
  19. {{ item }}
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import { VantComponent } from '../common/component';
  26. import { GREEN } from '../common/color';
  27. import { pageScrollMixin } from '../mixins/page-scroll';
  28. const indexList = () => {
  29. const indexList = [];
  30. const charCodeOfA = 'A'.charCodeAt(0);
  31. for (let i = 0; i < 26; i++) {
  32. indexList.push(String.fromCharCode(charCodeOfA + i));
  33. }
  34. return indexList;
  35. };
  36. export default {
  37. data() {
  38. return {
  39. activeAnchorIndex: null,
  40. showSidebar: false
  41. };
  42. },
  43. '../index-anchor/index': {
  44. name: 'index-anchor',
  45. type: 'descendant',
  46. current: 'index-bar',
  47. linked() {
  48. this.updateData();
  49. },
  50. unlinked() {
  51. this.updateData();
  52. }
  53. },
  54. props: {
  55. sticky: {
  56. type: Boolean,
  57. default: true
  58. },
  59. zIndex: {
  60. type: Number,
  61. default: 1
  62. },
  63. highlightColor: {
  64. type: String,
  65. default: GREEN
  66. },
  67. stickyOffsetTop: {
  68. type: Number,
  69. default: 0
  70. },
  71. indexList: {
  72. type: Array,
  73. default: indexList()
  74. }
  75. },
  76. mixins: [
  77. pageScrollMixin(function (event) {
  78. this.scrollTop = event.scrollTop || 0;
  79. this.onScroll();
  80. })
  81. ],
  82. created() {
  83. this.scrollTop = 0;
  84. },
  85. methods: {
  86. updateData() {
  87. this.$nextTick(() => {
  88. if (this.timer != null) {
  89. clearTimeout(this.timer);
  90. }
  91. this.timer = setTimeout(() => {
  92. this.setData({
  93. showSidebar: !!this.children.length
  94. });
  95. this.setRect().then(() => {
  96. this.onScroll();
  97. });
  98. }, 0);
  99. });
  100. },
  101. setRect() {
  102. return Promise.all([this.setAnchorsRect(), this.setListRect(), this.setSiderbarRect()]);
  103. },
  104. setAnchorsRect() {
  105. return Promise.all(
  106. this.children.map((anchor) =>
  107. anchor.getRect('.van-index-anchor-wrapper').then((rect) => {
  108. Object.assign(anchor, {
  109. height: rect.height,
  110. top: rect.top + this.scrollTop
  111. });
  112. })
  113. )
  114. );
  115. },
  116. setListRect() {
  117. return this.getRect('.van-index-bar').then((rect) => {
  118. Object.assign(this, {
  119. height: rect.height,
  120. top: rect.top + this.scrollTop
  121. });
  122. });
  123. },
  124. setSiderbarRect() {
  125. return this.getRect('.van-index-bar__sidebar').then((res) => {
  126. this.sidebar = {
  127. height: res.height,
  128. top: res.top
  129. };
  130. });
  131. },
  132. setDiffData({ target, data }) {
  133. const diffData = {};
  134. Object.keys(data).forEach((key) => {
  135. if (target.data[key] !== data[key]) {
  136. diffData[key] = data[key];
  137. }
  138. });
  139. if (Object.keys(diffData).length) {
  140. target.setData(diffData);
  141. }
  142. },
  143. getAnchorRect(anchor) {
  144. return anchor.getRect('.van-index-anchor-wrapper').then((rect) => ({
  145. height: rect.height,
  146. top: rect.top
  147. }));
  148. },
  149. getActiveAnchorIndex() {
  150. const { children, scrollTop } = this;
  151. const { sticky, stickyOffsetTop } = this;
  152. for (let i = this.children.length - 1; i >= 0; i--) {
  153. const preAnchorHeight = i > 0 ? children[i - 1].height : 0;
  154. const reachTop = sticky ? preAnchorHeight + stickyOffsetTop : 0;
  155. if (reachTop + scrollTop >= children[i].top) {
  156. return i;
  157. }
  158. }
  159. return -1;
  160. },
  161. onScroll() {
  162. const { children = [], scrollTop } = this;
  163. if (!children.length) {
  164. return;
  165. }
  166. const { sticky, stickyOffsetTop, zIndex, highlightColor } = this;
  167. const active = this.getActiveAnchorIndex();
  168. this.setDiffData({
  169. target: this,
  170. data: {
  171. activeAnchorIndex: active
  172. }
  173. });
  174. if (sticky) {
  175. let isActiveAnchorSticky = false;
  176. if (active !== -1) {
  177. isActiveAnchorSticky = children[active].top <= stickyOffsetTop + scrollTop;
  178. }
  179. children.forEach((item, index) => {
  180. if (index === active) {
  181. let wrapperStyle = '';
  182. let anchorStyle = `
  183. color: ${highlightColor};
  184. `;
  185. if (isActiveAnchorSticky) {
  186. wrapperStyle = `
  187. height: ${children[index].height}px;
  188. `;
  189. anchorStyle = `
  190. position: fixed;
  191. top: ${stickyOffsetTop}px;
  192. z-index: ${zIndex};
  193. color: ${highlightColor};
  194. `;
  195. }
  196. this.setDiffData({
  197. target: item,
  198. data: {
  199. active: true,
  200. anchorStyle,
  201. wrapperStyle
  202. }
  203. });
  204. } else if (index === active - 1) {
  205. const currentAnchor = children[index];
  206. const currentOffsetTop = currentAnchor.top;
  207. const targetOffsetTop = index === children.length - 1 ? this.top : children[index + 1].top;
  208. const parentOffsetHeight = targetOffsetTop - currentOffsetTop;
  209. const translateY = parentOffsetHeight - currentAnchor.height;
  210. const anchorStyle = `
  211. position: relative;
  212. transform: translate3d(0, ${translateY}px, 0);
  213. z-index: ${zIndex};
  214. color: ${highlightColor};
  215. `;
  216. this.setDiffData({
  217. target: item,
  218. data: {
  219. active: true,
  220. anchorStyle
  221. }
  222. });
  223. } else {
  224. this.setDiffData({
  225. target: item,
  226. data: {
  227. active: false,
  228. anchorStyle: '',
  229. wrapperStyle: ''
  230. }
  231. });
  232. }
  233. });
  234. }
  235. },
  236. onClick(event) {
  237. this.scrollToAnchor(event.target.dataset.index);
  238. },
  239. onTouchMove(event) {
  240. const sidebarLength = this.children.length;
  241. const touch = event.touches[0];
  242. const itemHeight = this.sidebar.height / sidebarLength;
  243. let index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight);
  244. if (index < 0) {
  245. index = 0;
  246. } else if (index > sidebarLength - 1) {
  247. index = sidebarLength - 1;
  248. }
  249. this.scrollToAnchor(index);
  250. },
  251. onTouchStop() {
  252. this.scrollToAnchorIndex = null;
  253. },
  254. scrollToAnchor(index) {
  255. if (typeof index !== 'number' || this.scrollToAnchorIndex === index) {
  256. return;
  257. }
  258. this.scrollToAnchorIndex = index;
  259. const anchor = this.children.find((item) => item.data.index === this.indexList[index]);
  260. if (anchor) {
  261. anchor.scrollIntoView(this.scrollTop);
  262. this.$emit('select', anchor.data.index);
  263. }
  264. }
  265. }
  266. };
  267. </script>
  268. <style>
  269. @import './index.css';
  270. </style>