vant-weapp/dist/tabs/index.js
2019-02-26 18:13:02 +08:00

353 lines
9.3 KiB
JavaScript

import { VantComponent } from '../common/component';
import { touch } from '../mixins/touch';
VantComponent({
mixins: [touch],
relation: {
name: 'tab',
type: 'descendant',
linked: function linked(child) {
this.child.push(child);
this.updateTabs(this.data.tabs.concat(child.data));
},
unlinked: function unlinked(child) {
var index = this.child.indexOf(child);
var tabs = this.data.tabs;
tabs.splice(index, 1);
this.child.splice(index, 1);
this.updateTabs(tabs);
}
},
props: {
color: String,
sticky: Boolean,
animated: Boolean,
swipeable: Boolean,
lineWidth: {
type: Number,
value: -1
},
lineHeight: {
type: Number,
value: -1
},
active: {
type: Number,
value: 0
},
type: {
type: String,
value: 'line'
},
border: {
type: Boolean,
value: true
},
duration: {
type: Number,
value: 0.3
},
zIndex: {
type: Number,
value: 1
},
swipeThreshold: {
type: Number,
value: 4
},
offsetTop: {
type: Number,
value: 0
}
},
data: {
tabs: [],
lineStyle: '',
scrollLeft: 0,
scrollable: false,
trackStyle: '',
wrapStyle: '',
position: ''
},
watch: {
swipeThreshold: function swipeThreshold() {
this.set({
scrollable: this.child.length > this.data.swipeThreshold
});
},
color: 'setLine',
lineWidth: 'setLine',
lineHeight: 'setLine',
active: 'setActiveTab',
animated: 'setTrack',
offsetTop: 'setWrapStyle'
},
beforeCreate: function beforeCreate() {
this.child = [];
},
mounted: function mounted() {
var _this = this;
this.setLine(true);
this.setTrack();
this.scrollIntoView();
this.getRect('.van-tabs__wrap').then(function (rect) {
_this.navHeight = rect.height;
_this.observerContentScroll();
});
},
destroyed: function destroyed() {
wx.createIntersectionObserver(this).disconnect();
},
methods: {
updateTabs: function updateTabs(tabs) {
tabs = tabs || this.data.tabs;
this.set({
tabs: tabs,
scrollable: tabs.length > this.data.swipeThreshold
});
this.setActiveTab();
},
trigger: function trigger(eventName, index) {
this.$emit(eventName, {
index: index,
title: this.data.tabs[index].title
});
},
onTap: function onTap(event) {
var index = event.currentTarget.dataset.index;
if (this.data.tabs[index].disabled) {
this.trigger('disabled', index);
} else {
this.trigger('click', index);
this.setActive(index);
}
},
setActive: function setActive(active) {
if (active !== this.data.active) {
this.trigger('change', active);
this.set({
active: active
});
this.setActiveTab();
}
},
setLine: function setLine(skipTransition) {
var _this2 = this;
if (this.data.type !== 'line') {
return;
}
var _this$data = this.data,
color = _this$data.color,
active = _this$data.active,
duration = _this$data.duration,
lineWidth = _this$data.lineWidth,
lineHeight = _this$data.lineHeight;
this.getRect('.van-tab', true).then(function (rects) {
var rect = rects[active];
var width = lineWidth !== -1 ? lineWidth : rect.width / 2;
var height = lineHeight !== -1 ? "height: " + lineHeight + "px;" : '';
var left = rects.slice(0, active).reduce(function (prev, curr) {
return prev + curr.width;
}, 0);
left += (rect.width - width) / 2;
var transition = skipTransition ? '' : "transition-duration: " + duration + "s; -webkit-transition-duration: " + duration + "s;";
_this2.set({
lineStyle: "\n " + height + "\n width: " + width + "px;\n background-color: " + color + ";\n -webkit-transform: translateX(" + left + "px);\n transform: translateX(" + left + "px);\n " + transition + "\n "
});
});
},
setTrack: function setTrack() {
var _this3 = this;
var _this$data2 = this.data,
animated = _this$data2.animated,
active = _this$data2.active,
duration = _this$data2.duration;
if (!animated) return '';
this.getRect('.van-tabs__content').then(function (rect) {
var width = rect.width;
_this3.set({
trackStyle: "\n width: " + width * _this3.child.length + "px;\n left: " + -1 * active * width + "px;\n transition: left " + duration + "s;\n display: -webkit-box;\n display: flex;\n "
});
var props = {
width: width,
animated: animated
};
_this3.child.forEach(function (item) {
item.set(props);
});
});
},
setActiveTab: function setActiveTab() {
var _this4 = this;
this.child.forEach(function (item, index) {
var data = {
active: index === _this4.data.active
};
if (data.active) {
data.inited = true;
}
if (data.active !== item.data.active) {
item.set(data);
}
});
this.set({}, function () {
_this4.setLine();
_this4.setTrack();
_this4.scrollIntoView();
});
},
// scroll active tab into view
scrollIntoView: function scrollIntoView() {
var _this5 = this;
var _this$data3 = this.data,
active = _this$data3.active,
scrollable = _this$data3.scrollable;
if (!scrollable) {
return;
}
Promise.all([this.getRect('.van-tab', true), this.getRect('.van-tabs__nav')]).then(function (_ref) {
var tabRects = _ref[0],
navRect = _ref[1];
var tabRect = tabRects[active];
var offsetLeft = tabRects.slice(0, active).reduce(function (prev, curr) {
return prev + curr.width;
}, 0);
_this5.set({
scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2
});
});
},
onTouchStart: function onTouchStart(event) {
if (!this.data.swipeable) return;
this.touchStart(event);
},
onTouchMove: function onTouchMove(event) {
if (!this.data.swipeable) return;
this.touchMove(event);
},
// watch swipe touch end
onTouchEnd: function onTouchEnd() {
if (!this.data.swipeable) return;
var _this$data4 = this.data,
active = _this$data4.active,
tabs = _this$data4.tabs;
var direction = this.direction,
deltaX = this.deltaX,
offsetX = this.offsetX;
var minSwipeDistance = 50;
if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
if (deltaX > 0 && active !== 0) {
this.setActive(active - 1);
} else if (deltaX < 0 && active !== tabs.length - 1) {
this.setActive(active + 1);
}
}
},
setWrapStyle: function setWrapStyle() {
var _ref2 = this.data,
offsetTop = _ref2.offsetTop,
position = _ref2.position;
var wrapStyle;
switch (position) {
case 'top':
wrapStyle = "\n top: " + offsetTop + "px;\n position: fixed;\n ";
break;
case 'bottom':
wrapStyle = "\n top: auto;\n bottom: 0;\n ";
break;
default:
wrapStyle = '';
} // cut down `set`
if (wrapStyle === this.data.wrapStyle) return;
this.set({
wrapStyle: wrapStyle
});
},
observerContentScroll: function observerContentScroll() {
var _this6 = this;
if (!this.data.sticky) {
return;
}
var offsetTop = this.data.offsetTop;
var _wx$getSystemInfoSync = wx.getSystemInfoSync(),
windowHeight = _wx$getSystemInfoSync.windowHeight;
wx.createIntersectionObserver(this).relativeToViewport({
top: -this.navHeight
}).observe('.van-tabs', function (res) {
var top = res.boundingClientRect.top;
if (top > 0) {
return;
}
var position = res.intersectionRatio > 0 ? 'top' : 'bottom';
_this6.$emit('scroll', {
scrollTop: top + offsetTop,
isFixed: position === 'top'
});
_this6.setPosition(position);
});
wx.createIntersectionObserver(this).relativeToViewport({
bottom: -(windowHeight - 1)
}).observe('.van-tabs', function (res) {
var _res$boundingClientRe = res.boundingClientRect,
top = _res$boundingClientRe.top,
bottom = _res$boundingClientRe.bottom;
if (bottom < _this6.navHeight) {
return;
}
var position = res.intersectionRatio > 0 ? 'top' : '';
_this6.$emit('scroll', {
scrollTop: top + offsetTop,
isFixed: position === 'top'
});
_this6.setPosition(position);
});
},
setPosition: function setPosition(position) {
var _this7 = this;
if (position !== this.data.position) {
this.set({
position: position
}).then(function () {
_this7.setWrapStyle();
});
}
}
}
});