diff --git a/packages/vant-use/src/useRelation/useChildren.ts b/packages/vant-use/src/useRelation/useChildren.ts index 7e78075bb..df7173cad 100644 --- a/packages/vant-use/src/useRelation/useChildren.ts +++ b/packages/vant-use/src/useRelation/useChildren.ts @@ -37,6 +37,20 @@ export function flattenVNodes(children: VNodeNormalizedChildren) { return result; } +const findVNodeIndex = (vnodes: VNode[], vnode: VNode) => { + const index = vnodes.indexOf(vnode); + if (index === -1) { + return vnodes.findIndex( + (item) => + vnode.key !== undefined && + vnode.key !== null && + item.type === vnode.type && + item.key === vnode.key + ); + } + return index; +}; + // sort children instances by vnodes order export function sortChildren( parent: ComponentInternalInstance, @@ -46,7 +60,7 @@ export function sortChildren( const vnodes = flattenVNodes(parent.subTree.children); internalChildren.sort( - (a, b) => vnodes.indexOf(a.vnode) - vnodes.indexOf(b.vnode) + (a, b) => findVNodeIndex(vnodes, a.vnode) - findVNodeIndex(vnodes, b.vnode) ); const orderedPublicChildren = internalChildren.map((item) => item.proxy!); diff --git a/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap b/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap index d44b3e5f1..f90861d96 100644 --- a/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap +++ b/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap @@ -154,6 +154,54 @@ exports[`should render correctly after inserting a tab 1`] = ` `; +exports[`should render correctly after inserting a tab from an array 1`] = ` +
+
+
+ + + +
+
+
+
+
+
+
+`; + exports[`should render correctly after inserting a tab with name 1`] = `
diff --git a/packages/vant/src/tab/test/insert.spec.tsx b/packages/vant/src/tab/test/insert.spec.tsx index e6f4a6d6e..92195127a 100644 --- a/packages/vant/src/tab/test/insert.spec.tsx +++ b/packages/vant/src/tab/test/insert.spec.tsx @@ -1,4 +1,4 @@ -import { defineComponent } from 'vue'; +import { defineComponent, reactive } from 'vue'; import { mount, later } from '../../../test'; import { Tab } from '..'; import { Tabs } from '../../tabs'; @@ -32,6 +32,45 @@ test('should render correctly after inserting a tab', async () => { expect(wrapper.html()).toMatchSnapshot(); }); +test('should render correctly after inserting a tab from an array', async () => { + const tabs = reactive([ + { + text: 1, + show: true, + }, + { + text: 2, + show: false, + }, + { + text: 3, + show: true, + }, + ]); + + const wrapper = mount({ + render() { + return ( + + {tabs.map((tab, index) => ( + + ))} + + ); + }, + data() { + return { + active: 1, + }; + }, + }); + + await later(); + tabs[1].show = true; + await later(); + expect(wrapper.html()).toMatchSnapshot(); +}); + test('should render correctly after inserting a tab with name', async () => { const onChange = jest.fn(); const wrapper = mount({