From d99829d28d8841bc12811e109fe1d39d07d0f494 Mon Sep 17 00:00:00 2001 From: rex Date: Tue, 26 Mar 2019 00:09:05 +0800 Subject: [PATCH] [improvement] Tabbar: improve performance fix #1429 --- packages/tabbar-item/index.ts | 15 ++++++---- packages/tabbar-item/index.wxml | 6 ++-- packages/tabbar/README.md | 7 ----- packages/tabbar/index.ts | 49 +++++++++++++++++---------------- 4 files changed, 38 insertions(+), 39 deletions(-) diff --git a/packages/tabbar-item/index.ts b/packages/tabbar-item/index.ts index aaebf2e3..521fae35 100644 --- a/packages/tabbar-item/index.ts +++ b/packages/tabbar-item/index.ts @@ -9,7 +9,10 @@ VantComponent({ relation: { name: 'tabbar', - type: 'ancestor' + type: 'ancestor', + linked(target: Weapp.Component) { + this.parent = target; + } }, data: { @@ -18,17 +21,17 @@ VantComponent({ methods: { onClick() { - const parent = this.getRelationNodes('../tabbar/index')[0]; - if (parent) { - parent.onChange(this); + if (this.parent) { + this.parent.onChange(this); } this.$emit('click'); }, - setActive({ active, color }) { + setActive({ active, color }): Promise { if (this.data.active !== active) { - this.set({ active, color }); + return this.set({ active, color }); } + return Promise.resolve(); } } }); diff --git a/packages/tabbar-item/index.wxml b/packages/tabbar-item/index.wxml index 43378e94..58940604 100644 --- a/packages/tabbar-item/index.wxml +++ b/packages/tabbar-item/index.wxml @@ -1,9 +1,11 @@ + + - + { - this.setActiveItem(); - }); + this.children = this.children || []; + this.children.push(target); + this.setActiveItem(); }, unlinked(target: Weapp.Component) { - this.data.items = this.data.items.filter(item => item !== target); - setTimeout(() => { - this.setActiveItem(); - }); + this.children = this.children || []; + this.children = this.children.filter(item => item !== target); + this.setActiveItem(); } }, @@ -34,12 +32,8 @@ VantComponent({ } }, - data: { - items: [] - }, - watch: { - active(active) { + active(active: number) { this.currentActive = active; this.setActiveItem(); } @@ -50,21 +44,28 @@ VantComponent({ }, methods: { - setActiveItem() { - this.data.items.forEach((item, index) => { - item.setActive({ - active: index === this.currentActive, - color: this.data.activeColor - }); - }); + setActiveItem(): Promise { + if (!Array.isArray(this.children) || !this.children.length) { + return Promise.resolve(); + } + return Promise.all( + this.children.map((item: Weapp.Component, index: number) => + item.setActive({ + active: index === this.currentActive, + color: this.data.activeColor + }) + ) + ); }, - onChange(child) { - const active = this.data.items.indexOf(child); + onChange(child: Weapp.Component) { + const active = (this.children || []).indexOf(child); + if (active !== this.currentActive && active !== -1) { - this.$emit('change', active); this.currentActive = active; - this.setActiveItem(); + this.setActiveItem().then(() => { + this.$emit('change', active); + }); } } }