From 892d0186dc4f1175869c1a64f51ea9d6cf7b74fb Mon Sep 17 00:00:00 2001 From: inottn Date: Sun, 4 Feb 2024 22:44:32 +0800 Subject: [PATCH] Revert "fix(DropdownMenu): fix recursive update when passing object literal to title-class (#12614)" (#12617) --- .../vant/src/dropdown-menu/DropdownMenu.tsx | 12 +++------ .../src/dropdown-menu/test/index.spec.tsx | 25 ------------------- 2 files changed, 4 insertions(+), 33 deletions(-) diff --git a/packages/vant/src/dropdown-menu/DropdownMenu.tsx b/packages/vant/src/dropdown-menu/DropdownMenu.tsx index bd1be0364..c38e38162 100644 --- a/packages/vant/src/dropdown-menu/DropdownMenu.tsx +++ b/packages/vant/src/dropdown-menu/DropdownMenu.tsx @@ -2,7 +2,6 @@ import { ref, computed, defineComponent, - toRaw, type InjectionKey, type CSSProperties, type ExtractPropTypes, @@ -18,6 +17,7 @@ import { makeNumericProp, createNamespace, HAPTICS_FEEDBACK, + type ComponentInstance, } from '../utils'; // Composables @@ -33,7 +33,6 @@ import { // Types import type { DropdownMenuProvide, DropdownMenuDirection } from './types'; -import type { DropdownItemInstance } from '../dropdown-item'; const [name, bem] = createNamespace('dropdown-menu'); @@ -64,10 +63,7 @@ export default defineComponent({ const barRef = ref(); const offset = ref(0); - const { children, linkChildren } = useChildren< - DropdownItemInstance, - unknown - >(DROPDOWN_KEY); + const { children, linkChildren } = useChildren(DROPDOWN_KEY); const scrollParent = useScrollParent(root); const opened = computed(() => @@ -125,9 +121,9 @@ export default defineComponent({ }); }; - const renderTitle = (item: DropdownItemInstance, index: number) => { + const renderTitle = (item: ComponentInstance, index: number) => { const { showPopup } = item.state; - const { disabled, titleClass } = toRaw(item.$props); + const { disabled, titleClass } = item; return (
{ vi.doUnmock('../../utils/dom'); }); - -test('title-class prop', async () => { - const titleClass = ref({ custom: true }); - const wrapper = mount({ - setup() { - return () => ( - - - - - ); - }, - }); - - await later(); - - const titles = wrapper.findAll('.van-dropdown-menu__title'); - // using object literal should work - expect(titles[0].classes()).toContain('custom'); - expect(titles[1].classes()).toContain('custom'); - - titleClass.value.custom = false; - await later(); - expect(titles[1].classes()).not.toContain('custom'); -});