Merge pull request #3665 from SergioCrisostomo/tabs-keyboard

Tabs small fixes
This commit is contained in:
Aresn 2018-05-22 10:08:00 +08:00 committed by GitHub
commit fff80ecb01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,7 +133,7 @@
]; ];
}, },
contentStyle () { contentStyle () {
const x = this.navList.findIndex((nav) => nav.name === this.activeKey); const x = this.getTabIndex(this.activeKey);
const p = x === 0 ? '0%' : `-${x}00%`; const p = x === 0 ? '0%' : `-${x}00%`;
let style = {}; let style = {};
@ -184,7 +184,7 @@
}, },
updateBar () { updateBar () {
this.$nextTick(() => { this.$nextTick(() => {
const index = this.navList.findIndex((nav) => nav.name === this.activeKey); const index = this.getTabIndex(this.activeKey);
if (!this.$refs.nav) return; // #2100 if (!this.$refs.nav) return; // #2100
const prevTabs = this.$refs.nav.querySelectorAll(`.${prefixCls}-tab`); const prevTabs = this.$refs.nav.querySelectorAll(`.${prefixCls}-tab`);
const tab = prevTabs[index]; const tab = prevTabs[index];
@ -239,7 +239,7 @@
handleTabKeyboardSelect(init = false){ handleTabKeyboardSelect(init = false){
if (init) return; if (init) return;
const focused = this.focusedKey || 0; const focused = this.focusedKey || 0;
const index = this.navList.findIndex(({name}) => name === focused); const index = this.getTabIndex(focused);
this.handleChange(index); this.handleChange(index);
}, },
handleRemove (index) { handleRemove (index) {
@ -310,6 +310,9 @@
? Number(navStyle.transform.match(/translateX\(-(\d+(\.\d+)*)px\)/)[1]) ? Number(navStyle.transform.match(/translateX\(-(\d+(\.\d+)*)px\)/)[1])
: 0; : 0;
}, },
getTabIndex(name){
return this.navList.findIndex(nav => nav.name === name);
},
setOffset(value) { setOffset(value) {
this.navStyle.transform = `translateX(-${value}px)`; this.navStyle.transform = `translateX(-${value}px)`;
}, },
@ -368,6 +371,18 @@
parentNode = parentNode.parentNode; parentNode = parentNode.parentNode;
} }
return false; return false;
},
updateVisibility(index){
[...this.$refs.panes.children].forEach((el, i) => {
if (index === i) {
[...el.children].forEach(child => child.style.visibility = 'visible');
setTimeout(() => focusFirst(el, el), transitionTime);
} else {
setTimeout(() => {
[...el.children].forEach(child => child.style.visibility = 'hidden');
}, transitionTime);
}
});
} }
}, },
watch: { watch: {
@ -385,15 +400,8 @@
}); });
// update visibility // update visibility
const nextIndex = Math.max(this.navList.findIndex(tab => tab.name === this.focusedKey), 0); const nextIndex = Math.max(this.getTabIndex(this.focusedKey), 0);
[...this.$refs.panes.children].forEach((el, i) => { this.updateVisibility(nextIndex);
if (nextIndex === i) {
[...el.children].forEach(child => child.style.visibility = 'visible');
setTimeout(() => focusFirst(el, el), transitionTime);
} else {
[...el.children].forEach(child => child.style.visibility = 'hidden');
}
});
} }
}, },
mounted () { mounted () {
@ -414,6 +422,7 @@
} }
this.handleTabKeyboardSelect(true); this.handleTabKeyboardSelect(true);
this.updateVisibility(this.getTabIndex(this.activeKey));
}, },
beforeDestroy() { beforeDestroy() {
this.observer.removeListener(this.$refs.navWrap, this.handleResize); this.observer.removeListener(this.$refs.navWrap, this.handleResize);