mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(DropdownMenu): fix recursive update when passing object literal to title-class (#12614)
This commit is contained in:
parent
da08e699eb
commit
a5a9a6c5db
@ -2,6 +2,7 @@ import {
|
|||||||
ref,
|
ref,
|
||||||
computed,
|
computed,
|
||||||
defineComponent,
|
defineComponent,
|
||||||
|
toRaw,
|
||||||
type InjectionKey,
|
type InjectionKey,
|
||||||
type CSSProperties,
|
type CSSProperties,
|
||||||
type ExtractPropTypes,
|
type ExtractPropTypes,
|
||||||
@ -17,7 +18,6 @@ import {
|
|||||||
makeNumericProp,
|
makeNumericProp,
|
||||||
createNamespace,
|
createNamespace,
|
||||||
HAPTICS_FEEDBACK,
|
HAPTICS_FEEDBACK,
|
||||||
type ComponentInstance,
|
|
||||||
} from '../utils';
|
} from '../utils';
|
||||||
|
|
||||||
// Composables
|
// Composables
|
||||||
@ -33,6 +33,7 @@ import {
|
|||||||
|
|
||||||
// Types
|
// Types
|
||||||
import type { DropdownMenuProvide, DropdownMenuDirection } from './types';
|
import type { DropdownMenuProvide, DropdownMenuDirection } from './types';
|
||||||
|
import type { DropdownItemInstance } from '../dropdown-item';
|
||||||
|
|
||||||
const [name, bem] = createNamespace('dropdown-menu');
|
const [name, bem] = createNamespace('dropdown-menu');
|
||||||
|
|
||||||
@ -63,7 +64,10 @@ export default defineComponent({
|
|||||||
const barRef = ref<HTMLElement>();
|
const barRef = ref<HTMLElement>();
|
||||||
const offset = ref(0);
|
const offset = ref(0);
|
||||||
|
|
||||||
const { children, linkChildren } = useChildren(DROPDOWN_KEY);
|
const { children, linkChildren } = useChildren<
|
||||||
|
DropdownItemInstance,
|
||||||
|
unknown
|
||||||
|
>(DROPDOWN_KEY);
|
||||||
const scrollParent = useScrollParent(root);
|
const scrollParent = useScrollParent(root);
|
||||||
|
|
||||||
const opened = computed(() =>
|
const opened = computed(() =>
|
||||||
@ -121,9 +125,9 @@ export default defineComponent({
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const renderTitle = (item: ComponentInstance, index: number) => {
|
const renderTitle = (item: DropdownItemInstance, index: number) => {
|
||||||
const { showPopup } = item.state;
|
const { showPopup } = item.state;
|
||||||
const { disabled, titleClass } = item;
|
const { disabled, titleClass } = toRaw(item.$props);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
|
@ -367,3 +367,28 @@ test('auto-locate prop', async () => {
|
|||||||
|
|
||||||
vi.doUnmock('../../utils/dom');
|
vi.doUnmock('../../utils/dom');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('title-class prop', async () => {
|
||||||
|
const titleClass = ref({ custom: true });
|
||||||
|
const wrapper = mount({
|
||||||
|
setup() {
|
||||||
|
return () => (
|
||||||
|
<DropdownMenu>
|
||||||
|
<DropdownItem titleClass={{ custom: true }} />
|
||||||
|
<DropdownItem titleClass={titleClass.value} />
|
||||||
|
</DropdownMenu>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
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');
|
||||||
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user