feat(Overlay): add lazy-render prop (#10180)

This commit is contained in:
neverland 2022-01-13 21:02:11 +08:00 committed by GitHub
parent b3da7f7383
commit 4dbd6702b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 1 deletions

View File

@ -26,6 +26,7 @@ const overlayProps = {
duration: numericProp,
className: unknownProp,
lockScroll: truthProp,
lazyRender: truthProp,
customStyle: Object as PropType<CSSProperties>,
};
@ -37,7 +38,7 @@ export default defineComponent({
props: overlayProps,
setup(props, { slots }) {
const lazyRender = useLazyRender(() => props.show);
const lazyRender = useLazyRender(() => props.show || !props.lazyRender);
const preventTouchMove = (event: TouchEvent) => {
preventDefault(event, true);

View File

@ -73,6 +73,7 @@ export default {
| class-name | ClassName | _string_ | - |
| custom-class | Custom style | _object_ | - |
| lock-scroll | Whether to lock background scroll | _boolean_ | `true` |
| lazy-render `v3.4.2` | Whether to lazy render util appeared | _boolean_ | `true` |
### Events

View File

@ -75,6 +75,7 @@ export default {
| class-name | 自定义类名 | _string_ | - |
| custom-style | 自定义样式 | _object_ | - |
| lock-scroll | 是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动 | _boolean_ | `true` |
| lazy-render `v3.4.2` | 是否在显示时才渲染节点 | _boolean_ | `true` |
### Events

View File

@ -1,5 +1,14 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`should allow to disable lazy-render 1`] = `
<transition-stub>
<div class="van-overlay"
style="display: none;"
>
</div>
</transition-stub>
`;
exports[`should render default slot correctly 1`] = `
<transition-stub>
</transition-stub>

View File

@ -94,3 +94,13 @@ test('should not allow to touchmove when lock-scroll is true', async () => {
overlay.trigger('touchmove');
expect(onTouchMove).toHaveBeenCalledTimes(0);
});
test('should allow to disable lazy-render', async () => {
const wrapper = mount({
render() {
return <Overlay lazyRender={false} />;
},
});
expect(wrapper.html()).toMatchSnapshot();
});