From b6a1c00e95da1ef4055326f42e06e6a9ff4a92e2 Mon Sep 17 00:00:00 2001 From: Nemo Shen Date: Sat, 6 Jan 2024 18:55:44 +0800 Subject: [PATCH] fix(Tab): tab(with sticky prop) loss 'fixed' classname after switch tab (#12547) --- packages/vant/src/sticky/Sticky.tsx | 3 +- packages/vant/src/tab/test/index.spec.tsx | 45 +++++++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/packages/vant/src/sticky/Sticky.tsx b/packages/vant/src/sticky/Sticky.tsx index 4a04d6087..3b80e6300 100644 --- a/packages/vant/src/sticky/Sticky.tsx +++ b/packages/vant/src/sticky/Sticky.tsx @@ -119,7 +119,8 @@ export default defineComponent({ if (container) { const containerRect = useRect(container); const difference = containerRect.bottom - offset.value - state.height; - state.fixed = offset.value > rootRect.top && containerRect.bottom > 0; + state.fixed = + offset.value >= rootRect.top && containerRect.bottom > 0; state.transform = difference < 0 ? difference : 0; } else { state.fixed = offset.value > rootRect.top; diff --git a/packages/vant/src/tab/test/index.spec.tsx b/packages/vant/src/tab/test/index.spec.tsx index 7597cdb53..0c5903a89 100644 --- a/packages/vant/src/tab/test/index.spec.tsx +++ b/packages/vant/src/tab/test/index.spec.tsx @@ -437,6 +437,51 @@ test('should not render header when showHeader is false', async () => { expect(tabs.length).toEqual(0); }); +test('should fixed when sticky offset is equal top', async () => { + const wrapper = mount({ + render() { + return ( + + Text + Text + + ); + }, + }); + + const mockContainerRect = vi + .spyOn(wrapper.element, 'getBoundingClientRect') + .mockReturnValue({ + bottom: 10, + } as DOMRect); + const container = wrapper.element.children[0]; + const mockStickyRect = vi + .spyOn(container, 'getBoundingClientRect') + .mockReturnValue({ + top: -10, + } as DOMRect); + + expect(wrapper.find('.van-sticky').classes()).toStrictEqual(['van-sticky']); + + await mockScrollTop(100); + expect(wrapper.find('.van-sticky').classes()).toStrictEqual([ + 'van-sticky', + 'van-sticky--fixed', + ]); + + mockStickyRect.mockReturnValue({ + top: 0, + } as DOMRect); + await mockScrollTop(100); + expect(wrapper.find('.van-sticky').classes()).toStrictEqual([ + 'van-sticky', + 'van-sticky--fixed', + ]); + + mockStickyRect.mockRestore(); + mockContainerRect.mockRestore(); +}); + test('should call before-change prop before changing', async () => { const onChange = vi.fn(); const beforeChange = (name: number) => {