123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <template>
- <view class="van-index-bar">
- <slot />
- <view
- v-if="showSidebar"
- class="van-index-bar__sidebar"
- @tap.stop.prevent="onClick"
- @touchmove.stop.prevent="onTouchMove"
- @touchend.stop.prevent="onTouchStop"
- @touchcancel.stop.prevent="onTouchStop"
- >
- <view
- class="van-index-bar__index"
- :style="'z-index: ' + (zIndex + 1) + '; color: ' + (activeAnchorIndex === index ? highlightColor : '')"
- :data-index="index"
- v-for="(item, index) in indexList"
- :key="index"
- >
- {{ item }}
- </view>
- </view>
- </view>
- </template>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- var color_1 = require('../common/color');
- var page_scroll_1 = require('../mixins/page-scroll');
- var indexList = function () {
- var indexList = [];
- var charCodeOfA = 'A'.charCodeAt(0);
- for (var i = 0; i < 26; i++) {
- indexList.push(String.fromCharCode(charCodeOfA + i));
- }
- return indexList;
- };
- component_1.VantComponent({
- relation: {
- name: 'index-anchor',
- type: 'descendant',
- current: 'index-bar',
- linked: function () {
- this.updateData();
- },
- unlinked: function () {
- this.updateData();
- }
- },
- props: {
- sticky: {
- type: Boolean,
- value: true
- },
- zIndex: {
- type: Number,
- value: 1
- },
- highlightColor: {
- type: String,
- value: color_1.GREEN
- },
- stickyOffsetTop: {
- type: Number,
- value: 0
- },
- indexList: {
- type: Array,
- value: indexList()
- }
- },
- mixins: [
- page_scroll_1.pageScrollMixin(function (event) {
- this.scrollTop = event.scrollTop || 0;
- this.onScroll();
- })
- ],
- data: {
- activeAnchorIndex: null,
- showSidebar: false
- },
- created: function () {
- this.scrollTop = 0;
- },
- methods: {
- updateData: function () {
- var that = this;
- this.$nextTick(function () {
- if (that.timer != null) {
- clearTimeout(that.timer);
- }
- that.timer = setTimeout(function () {
- that.setData({
- showSidebar: !!that.children.length
- });
- that.setRect().then(function () {
- that.onScroll();
- });
- }, 0);
- });
- },
- setRect: function () {
- return Promise.all([this.setAnchorsRect(), this.setListRect(), this.setSiderbarRect()]);
- },
- setAnchorsRect: function () {
- var that = this;
- return Promise.all(
- this.children.map(function (anchor) {
- return anchor.getRect('.van-index-anchor-wrapper').then(function (rect) {
- Object.assign(anchor, {
- height: rect.height,
- top: rect.top + that.scrollTop
- });
- });
- })
- );
- },
- setListRect: function () {
- var that = this;
- return this.getRect('.van-index-bar').then(function (rect) {
- Object.assign(that, {
- height: rect.height,
- top: rect.top + that.scrollTop
- });
- });
- },
- setSiderbarRect: function () {
- var that = this;
- return this.getRect('.van-index-bar__sidebar').then(function (res) {
- that.sidebar = {
- height: res.height,
- top: res.top
- };
- });
- },
- setDiffData: function (_a) {
- var target = _a.target;
- var data = _a.data;
- var diffData = {};
- Object.keys(data).forEach(function (key) {
- if (target.data[key] !== data[key]) {
- diffData[key] = data[key];
- }
- });
- if (Object.keys(diffData).length) {
- target.setData(diffData);
- }
- },
- getAnchorRect: function (anchor) {
- return anchor.getRect('.van-index-anchor-wrapper').then(function (rect) {
- return {
- height: rect.height,
- top: rect.top
- };
- });
- },
- getActiveAnchorIndex: function () {
- var that = this;
- var children = that.children;
- var scrollTop = that.scrollTop;
- var _b = this;
- var sticky = _b.sticky;
- var stickyOffsetTop = _b.stickyOffsetTop;
- for (var i = this.children.length - 1; i >= 0; i--) {
- var preAnchorHeight = i > 0 ? children[i - 1].height : 0;
- var reachTop = sticky ? preAnchorHeight + stickyOffsetTop : 0;
- if (reachTop + scrollTop >= children[i].top) {
- return i;
- }
- }
- return -1;
- },
- onScroll: function () {
- var that = this;
- var _a = this;
- var _b = _a.children;
- var children = _b === void 0 ? [] : _b;
- var scrollTop = _a.scrollTop;
- if (!children.length) {
- return;
- }
- var _c = this;
- var sticky = _c.sticky;
- var stickyOffsetTop = _c.stickyOffsetTop;
- var zIndex = _c.zIndex;
- var highlightColor = _c.highlightColor;
- var active = this.getActiveAnchorIndex();
- this.setDiffData({
- target: this,
- data: {
- activeAnchorIndex: active
- }
- });
- if (sticky) {
- var isActiveAnchorSticky_1 = false;
- if (active !== -1) {
- isActiveAnchorSticky_1 = children[active].top <= stickyOffsetTop + scrollTop;
- }
- children.forEach(function (item, index) {
- if (index === active) {
- var wrapperStyle = '';
- var anchorStyle = '\n color: ' + highlightColor + ';\n ';
- if (isActiveAnchorSticky_1) {
- wrapperStyle = '\n height: ' + children[index].height + 'px;\n ';
- anchorStyle =
- '\n position: fixed;\n top: ' +
- stickyOffsetTop +
- 'px;\n z-index: ' +
- zIndex +
- ';\n color: ' +
- highlightColor +
- ';\n ';
- }
- that.setDiffData({
- target: item,
- data: {
- active: true,
- anchorStyle: anchorStyle,
- wrapperStyle: wrapperStyle
- }
- });
- } else if (index === active - 1) {
- var currentAnchor = children[index];
- var currentOffsetTop = currentAnchor.top;
- var targetOffsetTop = index === children.length - 1 ? that.top : children[index + 1].top;
- var parentOffsetHeight = targetOffsetTop - currentOffsetTop;
- var translateY = parentOffsetHeight - currentAnchor.height;
- var anchorStyle =
- '\n position: relative;\n transform: translate3d(0, ' +
- translateY +
- 'px, 0);\n z-index: ' +
- zIndex +
- ';\n color: ' +
- highlightColor +
- ';\n ';
- that.setDiffData({
- target: item,
- data: {
- active: true,
- anchorStyle: anchorStyle
- }
- });
- } else {
- that.setDiffData({
- target: item,
- data: {
- active: false,
- anchorStyle: '',
- wrapperStyle: ''
- }
- });
- }
- });
- }
- },
- onClick: function (event) {
- this.scrollToAnchor(event.target.dataset.index);
- },
- onTouchMove: function (event) {
- var sidebarLength = this.children.length;
- var touch = event.touches[0];
- var itemHeight = this.sidebar.height / sidebarLength;
- var index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight);
- if (index < 0) {
- index = 0;
- } else if (index > sidebarLength - 1) {
- index = sidebarLength - 1;
- }
- this.scrollToAnchor(index);
- },
- onTouchStop: function () {
- this.scrollToAnchorIndex = null;
- },
- scrollToAnchor: function (index) {
- var that = this;
- if (typeof index !== 'number' || this.scrollToAnchorIndex === index) {
- return;
- }
- this.scrollToAnchorIndex = index;
- var anchor = this.children.find(function (item) {
- return item.data.index === that.indexList[index];
- });
- if (anchor) {
- anchor.scrollIntoView(this.scrollTop);
- this.$emit('select', anchor.data.index);
- }
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|