admin
2020-12-08 7f2d1daf6af6ecebad84d80de46a0e5024bbf5da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import _regeneratorRuntime from "@babel/runtime/regenerator";
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
import fmtUnit from '../_util/fmtUnit';
Component({
  data: {
    tabTop: 0,
    wrapScrollTop: 0,
    besideRadius: fmtUnit('8px')
  },
  props: {
    activeTab: 0,
    className: '',
    tabs: [],
    animated: false,
    swipeable: true,
    tabBarActiveTextColor: '#1677FF',
    tabBarInactiveTextColor: '#333333',
    tabBarActiveBgColor: '#ffffff',
    tabBarInactiveBgColor: '#f5f5f5',
    tabBarlineColor: '#1677FF',
    sameFontSize: true,
    tabBarlineShow: true,
    onTabClick: function onTabClick() {},
    onScrollBar: function onScrollBar() {}
  },
  didMount: function didMount() {
    var _this = this;
 
    return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
      return _regeneratorRuntime.wrap(function _callee$(_context) {
        while (1) {
          switch (_context.prev = _context.next) {
            case 0:
              _this.isScrolling = false;
              _this.onlyChangeTab = false;
              _this.timerId = null;
              _context.next = 5;
              return _this.calcHeight();
 
            case 5:
              _this.setData({
                wrapScrollTop: _this.anchorMap[_this.props.tabs[_this.props.activeTab].anchor]
              });
 
            case 6:
            case "end":
              return _context.stop();
          }
        }
      }, _callee);
    }))();
  },
  didUpdate: function didUpdate(prevProps) {
    var activeTab = this.props.activeTab;
 
    if (this.props.tabs.length !== prevProps.tabs.length || activeTab !== prevProps.activeTab) {
      this.calcHeight();
    }
  },
  didUnmount: function didUnmount() {
    if (this.timerId) {
      clearTimeout(this.timerId);
      this.timerId = null;
    }
  },
  methods: {
    calcHeight: function calcHeight() {
      var _this2 = this;
 
      return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
        var activeTab, tabs, rects, prevHeight, i, height;
        return _regeneratorRuntime.wrap(function _callee2$(_context2) {
          while (1) {
            switch (_context2.prev = _context2.next) {
              case 0:
                activeTab = _this2.props.activeTab;
                _this2.anchorMap = {};
                _this2.indexMap = {};
                _this2.wrapHeight = 0;
                _this2.scrollWrapHeight = 0;
 
                _this2.setData({
                  currentBefore: activeTab - 1,
                  currentAfter: activeTab + 1
                });
 
                _context2.next = 8;
                return new Promise(function (resolve) {
                  my.createSelectorQuery().select(".am-vtabs-slides-" + _this2.$id).boundingClientRect().exec(function (ret) {
                    _this2.wrapHeight = ret[0].height;
                    resolve();
                  });
                });
 
              case 8:
                tabs = _this2.props.tabs || [];
                _context2.next = 11;
                return new Promise(function (resolve) {
                  my.createSelectorQuery().selectAll(tabs.map(function (tab) {
                    return "#am-vtab-slide-" + tab.anchor;
                  }).join(',')).boundingClientRect().exec(function (res) {
                    return resolve(res[0].sort(function (a, b) {
                      return a.top - b.top;
                    }));
                  });
                });
 
              case 11:
                rects = _context2.sent;
                prevHeight = 0;
 
                for (i = 0; i < tabs.length; i += 1) {
                  height = rects[i].height;
                  _this2.anchorMap[tabs[i].anchor] = prevHeight;
                  _this2.indexMap[i] = height;
                  prevHeight += height;
                  _this2.scrollWrapHeight = prevHeight;
                }
 
              case 14:
              case "end":
                return _context2.stop();
            }
          }
        }, _callee2);
      }))();
    },
    handleTabClick: function handleTabClick(e) {
      var _e$target$dataset = e.target.dataset,
          anchor = _e$target$dataset.anchor,
          index = _e$target$dataset.index;
 
      if (!this.isScrolling || !this.props.swipeable || this.onlyChangeTab) {
        if (this.props.activeTab !== index) {
          this.props.onTabClick(index);
        }
 
        this.setData({
          wrapScrollTop: this.anchorMap[anchor]
        });
        this.moveScrollBar(index);
      }
    },
    moveScrollBar: function moveScrollBar(current) {
      var tabTop; // tabTop 用来控制侧边 tab 的 scroll-view 滚动位置
 
      if (current < 6) {
        tabTop = 0;
      } else {
        tabTop = (current - 5) * 55;
      } // tab-content 滚动时,对侧边 tab 的影响
 
 
      if (this.props.activeTab !== current) {
        if (this.props.onChange) {
          this.props.onChange(current);
        } else {
          this.props.onScrollBar(current);
        }
      }
 
      this.setData({
        tabTop: tabTop,
        current: current,
        currentBefore: current - 1,
        currentAfter: current + 1
      });
    },
    onScroll: function onScroll(e) {
      var _this3 = this;
 
      var scrollTop = e.detail.scrollTop;
      var keys = Object.keys(this.anchorMap);
 
      if (this.timerId) {
        clearTimeout(this.timerId);
        this.timerId = null;
      }
 
      this.timerId = setTimeout(function () {
        _this3.isScrolling = false;
      }, 300);
      var anchorLength = keys.length;
 
      for (var i = 0; i < anchorLength; i++) {
        if (i === anchorLength - 1) {
          // 如果是最后一个只需满足scrollTop高于当前vtab-content的高度
          if (scrollTop >= this.anchorMap[keys[i]]) {
            this.moveScrollBar(i);
            break;
          }
        }
 
        if (scrollTop >= this.anchorMap[keys[i]] && scrollTop < this.anchorMap[keys[i + 1]]) {
          // 如果每个vtab-content高度小于scroll-view高度,到达底部后就不需要根据scrollTop再去判断左侧的选择项
          if (scrollTop + this.wrapHeight < this.scrollWrapHeight) {
            this.moveScrollBar(i);
          }
 
          break;
        }
      }
    },
    onWrapTouchMove: function onWrapTouchMove() {
      if (this.props.swipeable) {
        this.isScrolling = true;
        this.onlyChangeTab = true;
      }
    },
    onTabFirstShow: function onTabFirstShow(e) {
      // SDKversion 最低要求 1.9.4
      var _e$target$dataset2 = e.target.dataset,
          index = _e$target$dataset2.index,
          anchor = _e$target$dataset2.anchor;
 
      if (this.props.onTabFirstShow) {
        this.props.onTabFirstShow({
          index: index,
          anchor: anchor
        });
      }
    }
  }
});