index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  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/dist/wxs/utils.wxs"></script>
  47. <script module="getters" lang="wxs" src="@/node_modules/@vant/weapp/dist/tabs/index.wxs"></script>
  48. <script>
  49. import { VantComponent } from '../common/component';
  50. import { touch } from '../mixins/touch';
  51. import { isDef, addUnit } from '../common/utils';
  52. export default {
  53. data() {
  54. return {
  55. tabs: [],
  56. lineStyle: '',
  57. scrollLeft: 0,
  58. scrollable: false,
  59. trackStyle: '',
  60. currentIndex: null,
  61. container: null
  62. };
  63. },
  64. mixins: [touch],
  65. classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
  66. '../tab/index': {
  67. name: 'tab',
  68. type: 'descendant',
  69. current: 'tabs',
  70. linked(target) {
  71. target.index = this.children.length - 1;
  72. this.updateTabs();
  73. },
  74. unlinked() {
  75. this.children = this.children.map((child, index) => {
  76. child.index = index;
  77. return child;
  78. });
  79. this.updateTabs();
  80. }
  81. },
  82. props: {
  83. color: {
  84. type: String
  85. },
  86. sticky: Boolean,
  87. animated: {
  88. type: Boolean
  89. },
  90. swipeable: Boolean,
  91. lineWidth: {
  92. type: [String, Number],
  93. default: -1
  94. },
  95. lineHeight: {
  96. type: [String, Number],
  97. default: -1
  98. },
  99. titleActiveColor: String,
  100. titleInactiveColor: String,
  101. active: {
  102. type: [String, Number],
  103. default: 0
  104. },
  105. type: {
  106. type: String,
  107. default: 'line'
  108. },
  109. border: {
  110. type: Boolean,
  111. default: true
  112. },
  113. ellipsis: {
  114. type: Boolean,
  115. default: true
  116. },
  117. duration: {
  118. type: Number,
  119. default: 0.3
  120. },
  121. zIndex: {
  122. type: Number,
  123. default: 1
  124. },
  125. swipeThreshold: {
  126. type: Number,
  127. default: 4
  128. },
  129. offsetTop: {
  130. type: Number,
  131. default: 0
  132. },
  133. lazyRender: {
  134. type: Boolean,
  135. default: true
  136. }
  137. },
  138. mounted() {
  139. this.$nextTick(() => {
  140. this.setLine(true);
  141. this.scrollIntoView();
  142. });
  143. },
  144. methods: {
  145. updateContainer() {
  146. this.setData({
  147. container: () => uni.createSelectorQuery().in(this).select('.van-tabs')
  148. });
  149. },
  150. updateTabs() {
  151. const { children = [], data } = this;
  152. this.setData({
  153. tabs: children.map((child) => child.data),
  154. scrollable: this.children.length > data.swipeThreshold || !data.ellipsis
  155. });
  156. this.setCurrentIndexByName(this.getCurrentName() || data.active);
  157. },
  158. trigger(eventName, child) {
  159. const { currentIndex } = this;
  160. const currentChild = child || this.children[currentIndex];
  161. if (!isDef(currentChild)) {
  162. return;
  163. }
  164. this.$emit(eventName, {
  165. index: currentChild.index,
  166. name: currentChild.getComputedName(),
  167. title: currentChild.data.title
  168. });
  169. },
  170. onTap(event) {
  171. const { index } = event.currentTarget.dataset;
  172. const child = this.children[index];
  173. if (child.data.disabled) {
  174. this.trigger('disabled', child);
  175. } else {
  176. this.setCurrentIndex(index);
  177. this.$nextTick(() => {
  178. this.trigger('click');
  179. });
  180. }
  181. },
  182. // correct the index of active tab
  183. setCurrentIndexByName(name) {
  184. const { children = [] } = this;
  185. const matched = children.filter((child) => child.getComputedName() === name);
  186. if (matched.length) {
  187. this.setCurrentIndex(matched[0].index);
  188. }
  189. },
  190. setCurrentIndex(currentIndex) {
  191. const { data, children = [] } = this;
  192. if (!isDef(currentIndex) || currentIndex >= children.length || currentIndex < 0) {
  193. return;
  194. }
  195. children.forEach((item, index) => {
  196. const active = index === currentIndex;
  197. if (active !== item.data.active || !item.inited) {
  198. item.updateRender(active, this);
  199. }
  200. });
  201. if (currentIndex === data.currentIndex) {
  202. return;
  203. }
  204. const shouldEmitChange = data.currentIndex !== null;
  205. this.setData({
  206. currentIndex
  207. });
  208. this.$nextTick(() => {
  209. this.setLine();
  210. this.scrollIntoView();
  211. this.updateContainer();
  212. this.trigger('input');
  213. if (shouldEmitChange) {
  214. this.trigger('change');
  215. }
  216. });
  217. },
  218. getCurrentName() {
  219. const activeTab = this.children[this.currentIndex];
  220. if (activeTab) {
  221. return activeTab.getComputedName();
  222. }
  223. },
  224. setLine(skipTransition) {
  225. if (this.type !== 'line') {
  226. return;
  227. }
  228. const { color, duration, currentIndex, lineWidth, lineHeight } = this;
  229. this.getRect('.van-tab', true).then((rects = []) => {
  230. const rect = rects[currentIndex];
  231. if (rect == null) {
  232. return;
  233. }
  234. const width = lineWidth !== -1 ? lineWidth : rect.width / 2;
  235. const height = lineHeight !== -1 ? `height: ${addUnit(lineHeight)}; border-radius: ${addUnit(lineHeight)};` : '';
  236. let left = rects.slice(0, currentIndex).reduce((prev, curr) => prev + curr.width, 0);
  237. left += (rect.width - width) / 2;
  238. const transition = skipTransition ? '' : `transition-duration: ${duration}s; -webkit-transition-duration: ${duration}s;`;
  239. this.setData({
  240. lineStyle: `
  241. ${height}
  242. width: ${addUnit(width)};
  243. background-color: ${color};
  244. -webkit-transform: translateX(${left}px);
  245. transform: translateX(${left}px);
  246. ${transition}
  247. `
  248. });
  249. });
  250. },
  251. // scroll active tab into view
  252. scrollIntoView() {
  253. const { currentIndex, scrollable } = this;
  254. if (!scrollable) {
  255. return;
  256. }
  257. Promise.all([this.getRect('.van-tab', true), this.getRect('.van-tabs__nav')]).then(([tabRects, navRect]) => {
  258. const tabRect = tabRects[currentIndex];
  259. const offsetLeft = tabRects.slice(0, currentIndex).reduce((prev, curr) => prev + curr.width, 0);
  260. this.setData({
  261. scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2
  262. });
  263. });
  264. },
  265. onTouchScroll(event) {
  266. this.$emit('scroll', event.detail);
  267. },
  268. onTouchStart(event) {
  269. if (!this.swipeable) {
  270. return;
  271. }
  272. this.touchStart(event);
  273. },
  274. onTouchMove(event) {
  275. if (!this.swipeable) {
  276. return;
  277. }
  278. this.touchMove(event);
  279. },
  280. // watch swipe touch end
  281. onTouchEnd() {
  282. if (!this.swipeable) {
  283. return;
  284. }
  285. const { tabs, currentIndex } = this;
  286. const { direction, deltaX, offsetX } = this;
  287. const minSwipeDistance = 50;
  288. if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
  289. if (deltaX > 0 && currentIndex !== 0) {
  290. this.setCurrentIndex(currentIndex - 1);
  291. } else if (deltaX < 0 && currentIndex !== tabs.length - 1) {
  292. this.setCurrentIndex(currentIndex + 1);
  293. }
  294. }
  295. }
  296. },
  297. watch: {
  298. color: {
  299. handler: function (skipTransition) {
  300. if (this.type !== 'line') {
  301. return;
  302. }
  303. const { color, duration, currentIndex, lineWidth, lineHeight } = this;
  304. this.getRect('.van-tab', true).then((rects = []) => {
  305. const rect = rects[currentIndex];
  306. if (rect == null) {
  307. return;
  308. }
  309. const width = lineWidth !== -1 ? lineWidth : rect.width / 2;
  310. const height = lineHeight !== -1 ? `height: ${addUnit(lineHeight)}; border-radius: ${addUnit(lineHeight)};` : '';
  311. let left = rects.slice(0, currentIndex).reduce((prev, curr) => prev + curr.width, 0);
  312. left += (rect.width - width) / 2;
  313. const transition = skipTransition ? '' : `transition-duration: ${duration}s; -webkit-transition-duration: ${duration}s;`;
  314. this.setData({
  315. lineStyle: `
  316. ${height}
  317. width: ${addUnit(width)};
  318. background-color: ${color};
  319. -webkit-transform: translateX(${left}px);
  320. transform: translateX(${left}px);
  321. ${transition}
  322. `
  323. });
  324. });
  325. },
  326. immediate: true
  327. },
  328. animated: {
  329. handler: function () {
  330. this.children.forEach((child, index) => child.updateRender(index === this.currentIndex, this));
  331. },
  332. immediate: true
  333. },
  334. lineWidth: {
  335. handler: function (skipTransition) {
  336. if (this.type !== 'line') {
  337. return;
  338. }
  339. const { color, duration, currentIndex, lineWidth, lineHeight } = this;
  340. this.getRect('.van-tab', true).then((rects = []) => {
  341. const rect = rects[currentIndex];
  342. if (rect == null) {
  343. return;
  344. }
  345. const width = lineWidth !== -1 ? lineWidth : rect.width / 2;
  346. const height = lineHeight !== -1 ? `height: ${addUnit(lineHeight)}; border-radius: ${addUnit(lineHeight)};` : '';
  347. let left = rects.slice(0, currentIndex).reduce((prev, curr) => prev + curr.width, 0);
  348. left += (rect.width - width) / 2;
  349. const transition = skipTransition ? '' : `transition-duration: ${duration}s; -webkit-transition-duration: ${duration}s;`;
  350. this.setData({
  351. lineStyle: `
  352. ${height}
  353. width: ${addUnit(width)};
  354. background-color: ${color};
  355. -webkit-transform: translateX(${left}px);
  356. transform: translateX(${left}px);
  357. ${transition}
  358. `
  359. });
  360. });
  361. },
  362. immediate: true
  363. },
  364. lineHeight: {
  365. handler: function (skipTransition) {
  366. if (this.type !== 'line') {
  367. return;
  368. }
  369. const { color, duration, currentIndex, lineWidth, lineHeight } = this;
  370. this.getRect('.van-tab', true).then((rects = []) => {
  371. const rect = rects[currentIndex];
  372. if (rect == null) {
  373. return;
  374. }
  375. const width = lineWidth !== -1 ? lineWidth : rect.width / 2;
  376. const height = lineHeight !== -1 ? `height: ${addUnit(lineHeight)}; border-radius: ${addUnit(lineHeight)};` : '';
  377. let left = rects.slice(0, currentIndex).reduce((prev, curr) => prev + curr.width, 0);
  378. left += (rect.width - width) / 2;
  379. const transition = skipTransition ? '' : `transition-duration: ${duration}s; -webkit-transition-duration: ${duration}s;`;
  380. this.setData({
  381. lineStyle: `
  382. ${height}
  383. width: ${addUnit(width)};
  384. background-color: ${color};
  385. -webkit-transform: translateX(${left}px);
  386. transform: translateX(${left}px);
  387. ${transition}
  388. `
  389. });
  390. });
  391. },
  392. immediate: true
  393. },
  394. active: {
  395. handler: function (name) {
  396. if (name !== this.getCurrentName()) {
  397. this.setCurrentIndexByName(name);
  398. }
  399. },
  400. immediate: true
  401. },
  402. swipeThreshold: {
  403. handler: function (value) {
  404. this.setData({
  405. scrollable: this.children.length > value || !this.ellipsis
  406. });
  407. },
  408. immediate: true
  409. }
  410. }
  411. };
  412. </script>
  413. <style>
  414. @import './index.css';
  415. </style>