index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <template>
  2. <view :class="'custom-class ' + utils.bem('tabs', [type])">
  3. <van-sticky :disabled="!sticky" :z-index="zIndex" :offset-top="offsetTop" :container="container" @scroll="onTouchScroll">
  4. <view :class="utils.bem('tabs__wrap', { scrollable }) + ' ' + (type === 'line' && border ? 'van-hairline--top-bottom' : '')">
  5. <slot name="nav-left" />
  6. <scroll-view
  7. :scroll-x="scrollable"
  8. scroll-with-animation
  9. :scroll-left="scrollLeft"
  10. :class="utils.bem('tabs__scroll', [type])"
  11. :style="color ? 'border-color: ' + color : ''"
  12. >
  13. <view :class="utils.bem('tabs__nav', [type]) + ' nav-class'" :style="getters.tabCardTypeBorderStyle(color, type)">
  14. <view v-if="type === 'line'" class="van-tabs__line" :style="lineStyle" />
  15. <view
  16. :data-index="index"
  17. :class="
  18. getters.tabClass(index === currentIndex, ellipsis) +
  19. ' ' +
  20. utils.bem('tab', { active: index === currentIndex, disabled: item.disabled, complete: !ellipsis })
  21. "
  22. :style="
  23. getters.tabStyle(index === currentIndex, ellipsis, color, type, item.disabled, titleActiveColor, titleInactiveColor, swipeThreshold, scrollable)
  24. "
  25. @tap="onTap"
  26. v-for="(item, index) in tabs"
  27. :key="index"
  28. >
  29. <view :class="ellipsis ? 'van-ellipsis' : ''" :style="item.titleStyle">
  30. {{ item.title }}
  31. <van-info v-if="item.info !== null || item.dot" :info="item.info" :dot="item.dot" custom-class="van-tab__title__info" />
  32. </view>
  33. </view>
  34. </view>
  35. </scroll-view>
  36. <slot name="nav-right" />
  37. </view>
  38. </van-sticky>
  39. <view class="van-tabs__content" @touchstart="onTouchStart" @touchmove="onTouchMove" @touchend="onTouchEnd" @touchcancel="onTouchEnd">
  40. <view :class="utils.bem('tabs__track', [{ animated }]) + ' van-tabs__track'" :style="getters.trackStyle({ duration, currentIndex, animated })">
  41. <slot />
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  47. <script module="getters" lang="wxs" src="@/node_modules/@vant/weapp/lib/tabs/index.wxs"></script>
  48. <script>
  49. 'use strict';
  50. Object.defineProperty(exports, '__esModule', {
  51. value: true
  52. });
  53. var component_1 = require('../common/component');
  54. var touch_1 = require('../mixins/touch');
  55. var utils_1 = require('../common/utils');
  56. component_1.VantComponent({
  57. mixins: [touch_1.touch],
  58. classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
  59. relation: {
  60. name: 'tab',
  61. type: 'descendant',
  62. current: 'tabs',
  63. linked: function (target) {
  64. target.index = this.children.length - 1;
  65. this.updateTabs();
  66. },
  67. unlinked: function () {
  68. this.children = this.children.map(function (child, index) {
  69. child.index = index;
  70. return child;
  71. });
  72. this.updateTabs();
  73. }
  74. },
  75. props: {
  76. color: {
  77. type: String,
  78. observer: 'setLine'
  79. },
  80. sticky: Boolean,
  81. animated: {
  82. type: Boolean,
  83. observer: function () {
  84. var that = this;
  85. this.children.forEach(function (child, index) {
  86. return child.updateRender(index === that.currentIndex, that);
  87. });
  88. }
  89. },
  90. swipeable: Boolean,
  91. lineWidth: {
  92. type: [String, Number],
  93. value: -1,
  94. observer: 'setLine'
  95. },
  96. lineHeight: {
  97. type: [String, Number],
  98. value: -1,
  99. observer: 'setLine'
  100. },
  101. titleActiveColor: String,
  102. titleInactiveColor: String,
  103. active: {
  104. type: [String, Number],
  105. value: 0,
  106. observer: function (name) {
  107. if (name !== this.getCurrentName()) {
  108. this.setCurrentIndexByName(name);
  109. }
  110. }
  111. },
  112. type: {
  113. type: String,
  114. value: 'line'
  115. },
  116. border: {
  117. type: Boolean,
  118. value: true
  119. },
  120. ellipsis: {
  121. type: Boolean,
  122. value: true
  123. },
  124. duration: {
  125. type: Number,
  126. value: 0.3
  127. },
  128. zIndex: {
  129. type: Number,
  130. value: 1
  131. },
  132. swipeThreshold: {
  133. type: Number,
  134. value: 4,
  135. observer: function (value) {
  136. this.setData({
  137. scrollable: this.children.length > value || !this.ellipsis
  138. });
  139. }
  140. },
  141. offsetTop: {
  142. type: Number,
  143. value: 0
  144. },
  145. lazyRender: {
  146. type: Boolean,
  147. value: true
  148. }
  149. },
  150. data: {
  151. tabs: [],
  152. lineStyle: '',
  153. scrollLeft: 0,
  154. scrollable: false,
  155. trackStyle: '',
  156. currentIndex: null,
  157. container: null
  158. },
  159. mounted: function () {
  160. var that = this;
  161. this.$nextTick(function () {
  162. that.setLine(true);
  163. that.scrollIntoView();
  164. });
  165. },
  166. methods: {
  167. updateContainer: function () {
  168. var that = this;
  169. this.setData({
  170. container: function () {
  171. return uni.createSelectorQuery().in(that).select('.van-tabs');
  172. }
  173. });
  174. },
  175. updateTabs: function () {
  176. var that = this;
  177. var _b = that.children;
  178. var children = _b === void 0 ? [] : _b;
  179. var data = that;
  180. this.setData({
  181. tabs: children.map(function (child) {
  182. return child.data;
  183. }),
  184. scrollable: this.children.length > data.swipeThreshold || !data.ellipsis
  185. });
  186. this.setCurrentIndexByName(this.getCurrentName() || data.active);
  187. },
  188. trigger: function (eventName, child) {
  189. var currentIndex = this.currentIndex;
  190. var currentChild = child || this.children[currentIndex];
  191. if (!utils_1.isDef(currentChild)) {
  192. return;
  193. }
  194. this.$emit(eventName, {
  195. index: currentChild.index,
  196. name: currentChild.getComputedName(),
  197. title: currentChild.data.title
  198. });
  199. },
  200. onTap: function (event) {
  201. var that = this;
  202. var index = event.currentTarget.dataset.index;
  203. var child = this.children[index];
  204. if (child.data.disabled) {
  205. this.trigger('disabled', child);
  206. } else {
  207. this.setCurrentIndex(index);
  208. this.$nextTick(function () {
  209. that.trigger('click');
  210. });
  211. }
  212. },
  213. // correct the index of active tab
  214. setCurrentIndexByName: function (name) {
  215. var _a = this.children;
  216. var children = _a === void 0 ? [] : _a;
  217. var matched = children.filter(function (child) {
  218. return child.getComputedName() === name;
  219. });
  220. if (matched.length) {
  221. this.setCurrentIndex(matched[0].index);
  222. }
  223. },
  224. setCurrentIndex: function (currentIndex) {
  225. var that = this;
  226. var _a = this;
  227. var data = _a;
  228. var _b = _a.children;
  229. var children = _b === void 0 ? [] : _b;
  230. if (!utils_1.isDef(currentIndex) || currentIndex >= children.length || currentIndex < 0) {
  231. return;
  232. }
  233. children.forEach(function (item, index) {
  234. var active = index === currentIndex;
  235. if (active !== item.data.active || !item.inited) {
  236. item.updateRender(active, that);
  237. }
  238. });
  239. if (currentIndex === data.currentIndex) {
  240. return;
  241. }
  242. var shouldEmitChange = data.currentIndex !== null;
  243. this.setData({
  244. currentIndex: currentIndex
  245. });
  246. this.$nextTick(function () {
  247. that.setLine();
  248. that.scrollIntoView();
  249. that.updateContainer();
  250. that.trigger('input');
  251. if (shouldEmitChange) {
  252. that.trigger('change');
  253. }
  254. });
  255. },
  256. getCurrentName: function () {
  257. var activeTab = this.children[this.currentIndex];
  258. if (activeTab) {
  259. return activeTab.getComputedName();
  260. }
  261. },
  262. setLine: function (skipTransition) {
  263. var that = this;
  264. if (this.type !== 'line') {
  265. return;
  266. }
  267. var _a = this;
  268. var color = _a.color;
  269. var duration = _a.duration;
  270. var currentIndex = _a.currentIndex;
  271. var lineWidth = _a.lineWidth;
  272. var lineHeight = _a.lineHeight;
  273. this.getRect('.van-tab', true).then(function (rects) {
  274. if (rects === void 0) {
  275. rects = [];
  276. }
  277. var rect = rects[currentIndex];
  278. if (rect == null) {
  279. return;
  280. }
  281. var width = lineWidth !== -1 ? lineWidth : rect.width / 2;
  282. var height = lineHeight !== -1 ? 'height: ' + utils_1.addUnit(lineHeight) + '; border-radius: ' + utils_1.addUnit(lineHeight) + ';' : '';
  283. var left = rects.slice(0, currentIndex).reduce(function (prev, curr) {
  284. return prev + curr.width;
  285. }, 0);
  286. left += (rect.width - width) / 2;
  287. var transition = skipTransition ? '' : 'transition-duration: ' + duration + 's; -webkit-transition-duration: ' + duration + 's;';
  288. that.setData({
  289. lineStyle:
  290. '\n ' +
  291. height +
  292. '\n width: ' +
  293. utils_1.addUnit(width) +
  294. ';\n background-color: ' +
  295. color +
  296. ';\n -webkit-transform: translateX(' +
  297. left +
  298. 'px);\n transform: translateX(' +
  299. left +
  300. 'px);\n ' +
  301. transition +
  302. '\n '
  303. });
  304. });
  305. },
  306. // scroll active tab into view
  307. scrollIntoView: function () {
  308. var that = this;
  309. var _a = this;
  310. var currentIndex = _a.currentIndex;
  311. var scrollable = _a.scrollable;
  312. if (!scrollable) {
  313. return;
  314. }
  315. Promise.all([this.getRect('.van-tab', true), this.getRect('.van-tabs__nav')]).then(function (_a) {
  316. var tabRects = _a[0];
  317. var navRect = _a[1];
  318. var tabRect = tabRects[currentIndex];
  319. var offsetLeft = tabRects.slice(0, currentIndex).reduce(function (prev, curr) {
  320. return prev + curr.width;
  321. }, 0);
  322. that.setData({
  323. scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2
  324. });
  325. });
  326. },
  327. onTouchScroll: function (event) {
  328. this.$emit('scroll', event.detail);
  329. },
  330. onTouchStart: function (event) {
  331. if (!this.swipeable) {
  332. return;
  333. }
  334. this.touchStart(event);
  335. },
  336. onTouchMove: function (event) {
  337. if (!this.swipeable) {
  338. return;
  339. }
  340. this.touchMove(event);
  341. },
  342. // watch swipe touch end
  343. onTouchEnd: function () {
  344. if (!this.swipeable) {
  345. return;
  346. }
  347. var _a = this;
  348. var tabs = _a.tabs;
  349. var currentIndex = _a.currentIndex;
  350. var that = this;
  351. var direction = that.direction;
  352. var deltaX = that.deltaX;
  353. var offsetX = that.offsetX;
  354. var minSwipeDistance = 50;
  355. if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
  356. if (deltaX > 0 && currentIndex !== 0) {
  357. this.setCurrentIndex(currentIndex - 1);
  358. } else if (deltaX < 0 && currentIndex !== tabs.length - 1) {
  359. this.setCurrentIndex(currentIndex + 1);
  360. }
  361. }
  362. }
  363. }
  364. });
  365. </script>
  366. <style>
  367. @import './index.css';
  368. </style>