mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Tab): tab(with sticky prop) loss 'fixed' classname after switch tab (#12547)
This commit is contained in:
parent
b5645ee192
commit
b6a1c00e95
@ -119,7 +119,8 @@ export default defineComponent({
|
|||||||
if (container) {
|
if (container) {
|
||||||
const containerRect = useRect(container);
|
const containerRect = useRect(container);
|
||||||
const difference = containerRect.bottom - offset.value - state.height;
|
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;
|
state.transform = difference < 0 ? difference : 0;
|
||||||
} else {
|
} else {
|
||||||
state.fixed = offset.value > rootRect.top;
|
state.fixed = offset.value > rootRect.top;
|
||||||
|
@ -437,6 +437,51 @@ test('should not render header when showHeader is false', async () => {
|
|||||||
expect(tabs.length).toEqual(0);
|
expect(tabs.length).toEqual(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('should fixed when sticky offset is equal top', async () => {
|
||||||
|
const wrapper = mount({
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Tabs sticky>
|
||||||
|
<Tab title="title1">Text</Tab>
|
||||||
|
<Tab title="title2">Text</Tab>
|
||||||
|
</Tabs>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
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 () => {
|
test('should call before-change prop before changing', async () => {
|
||||||
const onChange = vi.fn();
|
const onChange = vi.fn();
|
||||||
const beforeChange = (name: number) => {
|
const beforeChange = (name: number) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user