fix(tab): rollback line style refactor (#3511)

fix #3492, fix #3504
This commit is contained in:
rex 2020-08-12 14:23:19 +08:00 committed by GitHub
parent 1d34ada225
commit e047a89079
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 30 deletions

View File

@ -26,13 +26,13 @@ VantComponent({
} }
); );
this.updateTabs(); this.updateTabs();
} },
}, },
props: { props: {
color: { color: {
type: String, type: String,
observer: 'setLine' observer: 'setLine',
}, },
sticky: Boolean, sticky: Boolean,
animated: { animated: {
@ -41,18 +41,18 @@ VantComponent({
this.children.forEach((child: TrivialInstance, index: number) => this.children.forEach((child: TrivialInstance, index: number) =>
child.updateRender(index === this.data.currentIndex, this) child.updateRender(index === this.data.currentIndex, this)
); );
} },
}, },
swipeable: Boolean, swipeable: Boolean,
lineWidth: { lineWidth: {
type: [String, Number], type: [String, Number],
value: -1, value: -1,
observer: 'setLine' observer: 'setLine',
}, },
lineHeight: { lineHeight: {
type: [String, Number], type: [String, Number],
value: -1, value: -1,
observer: 'setLine' observer: 'setLine',
}, },
titleActiveColor: String, titleActiveColor: String,
titleInactiveColor: String, titleInactiveColor: String,
@ -63,45 +63,45 @@ VantComponent({
if (name !== this.getCurrentName()) { if (name !== this.getCurrentName()) {
this.setCurrentIndexByName(name); this.setCurrentIndexByName(name);
} }
} },
}, },
type: { type: {
type: String, type: String,
value: 'line' value: 'line',
}, },
border: { border: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
ellipsis: { ellipsis: {
type: Boolean, type: Boolean,
value: true value: true,
}, },
duration: { duration: {
type: Number, type: Number,
value: 0.3 value: 0.3,
}, },
zIndex: { zIndex: {
type: Number, type: Number,
value: 1 value: 1,
}, },
swipeThreshold: { swipeThreshold: {
type: Number, type: Number,
value: 5, value: 5,
observer(value) { observer(value) {
this.setData({ this.setData({
scrollable: this.children.length > value || !this.data.ellipsis scrollable: this.children.length > value || !this.data.ellipsis,
}); });
} },
}, },
offsetTop: { offsetTop: {
type: Number, type: Number,
value: 0 value: 0,
}, },
lazyRender: { lazyRender: {
type: Boolean, type: Boolean,
value: true value: true,
} },
}, },
data: { data: {
@ -111,7 +111,7 @@ VantComponent({
scrollable: false, scrollable: false,
trackStyle: '', trackStyle: '',
currentIndex: null, currentIndex: null,
container: null container: null,
}, },
mounted() { mounted() {
@ -124,7 +124,7 @@ VantComponent({
methods: { methods: {
updateContainer() { updateContainer() {
this.setData({ this.setData({
container: () => this.createSelectorQuery().select('.van-tabs') container: () => this.createSelectorQuery().select('.van-tabs'),
}); });
}, },
@ -132,7 +132,8 @@ VantComponent({
const { children = [], data } = this; const { children = [], data } = this;
this.setData({ this.setData({
tabs: children.map((child: TrivialInstance) => child.data), tabs: children.map((child: TrivialInstance) => child.data),
scrollable: this.children.length > data.swipeThreshold || !data.ellipsis scrollable:
this.children.length > data.swipeThreshold || !data.ellipsis,
}); });
this.setCurrentIndexByName(this.getCurrentName() || data.active); this.setCurrentIndexByName(this.getCurrentName() || data.active);
@ -150,7 +151,7 @@ VantComponent({
this.$emit(eventName, { this.$emit(eventName, {
index: currentChild.index, index: currentChild.index,
name: currentChild.getComputedName(), name: currentChild.getComputedName(),
title: currentChild.data.title title: currentChild.data.title,
}); });
}, },
@ -235,11 +236,12 @@ VantComponent({
duration, duration,
currentIndex, currentIndex,
lineWidth, lineWidth,
lineHeight lineHeight,
} = this.data; } = this.data;
this.getRect(`.van-tab--${currentIndex}`).then( this.getRect('.van-tab', true).then(
(rect: WechatMiniprogram.BoundingClientRectCallbackResult) => { (rects: WechatMiniprogram.BoundingClientRectCallbackResult[] = []) => {
const rect = rects[currentIndex];
if (rect == null) { if (rect == null) {
return; return;
} }
@ -251,7 +253,11 @@ VantComponent({
)};` )};`
: ''; : '';
const left = rect.left + (rect.width - width) / 2; let left = rects
.slice(0, currentIndex)
.reduce((prev, curr) => prev + curr.width, 0);
left += (rect.width - width) / 2;
const transition = skipTransition const transition = skipTransition
? '' ? ''
@ -265,7 +271,7 @@ VantComponent({
-webkit-transform: translateX(${left}px); -webkit-transform: translateX(${left}px);
transform: translateX(${left}px); transform: translateX(${left}px);
${transition} ${transition}
` `,
}); });
} }
); );
@ -281,7 +287,7 @@ VantComponent({
Promise.all([ Promise.all([
this.getRect('.van-tab', true), this.getRect('.van-tab', true),
this.getRect('.van-tabs__nav') this.getRect('.van-tabs__nav'),
]).then( ]).then(
([tabRects, navRect]: [ ([tabRects, navRect]: [
WechatMiniprogram.BoundingClientRectCallbackResult[], WechatMiniprogram.BoundingClientRectCallbackResult[],
@ -293,7 +299,7 @@ VantComponent({
.reduce((prev, curr) => prev + curr.width, 0); .reduce((prev, curr) => prev + curr.width, 0);
this.setData({ this.setData({
scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2 scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2,
}); });
} }
); );
@ -352,6 +358,6 @@ VantComponent({
} }
return -1; return -1;
} },
} },
}); });

View File

@ -25,7 +25,7 @@
wx:for="{{ tabs }}" wx:for="{{ tabs }}"
wx:key="index" wx:key="index"
data-index="{{ index }}" data-index="{{ index }}"
class="{{ getters.tabClass(index === currentIndex, ellipsis) }} {{ utils.bem('tab', ['' + index, { active: index === currentIndex, disabled: item.disabled, complete: !ellipsis }]) }}" class="{{ getters.tabClass(index === currentIndex, ellipsis) }} {{ utils.bem('tab', { active: index === currentIndex, disabled: item.disabled, complete: !ellipsis }) }}"
style="{{ getters.tabStyle(index === currentIndex, ellipsis, color, type, item.disabled, titleActiveColor, titleInactiveColor, swipeThreshold, scrollable) }}" style="{{ getters.tabStyle(index === currentIndex, ellipsis, color, type, item.disabled, titleActiveColor, titleInactiveColor, swipeThreshold, scrollable) }}"
bind:tap="onTap" bind:tap="onTap"
> >