mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Overlay): add teleport prop (#13087)
This commit is contained in:
parent
42f7e8dc35
commit
4884cb8efa
@ -1,10 +1,12 @@
|
|||||||
import {
|
import {
|
||||||
ref,
|
ref,
|
||||||
Transition,
|
|
||||||
defineComponent,
|
defineComponent,
|
||||||
|
Teleport,
|
||||||
|
Transition,
|
||||||
type PropType,
|
type PropType,
|
||||||
type CSSProperties,
|
type CSSProperties,
|
||||||
type ExtractPropTypes,
|
type ExtractPropTypes,
|
||||||
|
type TeleportProps,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
@ -33,6 +35,7 @@ export const overlayProps = {
|
|||||||
lockScroll: truthProp,
|
lockScroll: truthProp,
|
||||||
lazyRender: truthProp,
|
lazyRender: truthProp,
|
||||||
customStyle: Object as PropType<CSSProperties>,
|
customStyle: Object as PropType<CSSProperties>,
|
||||||
|
teleport: [String, Object] as PropType<TeleportProps['to']>,
|
||||||
};
|
};
|
||||||
|
|
||||||
export type OverlayProps = ExtractPropTypes<typeof overlayProps>;
|
export type OverlayProps = ExtractPropTypes<typeof overlayProps>;
|
||||||
@ -79,8 +82,20 @@ export default defineComponent({
|
|||||||
target: root,
|
target: root,
|
||||||
});
|
});
|
||||||
|
|
||||||
return () => (
|
return () => {
|
||||||
<Transition v-slots={{ default: renderOverlay }} name="van-fade" appear />
|
const Content = (
|
||||||
|
<Transition
|
||||||
|
v-slots={{ default: renderOverlay }}
|
||||||
|
name="van-fade"
|
||||||
|
appear
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (props.teleport) {
|
||||||
|
return <Teleport to={props.teleport}>{Content}</Teleport>;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Content;
|
||||||
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -82,6 +82,7 @@ The default z-index level of the Overlay component is `1`. You can set its z-ind
|
|||||||
| custom-class | Custom style | _object_ | - |
|
| custom-class | Custom style | _object_ | - |
|
||||||
| lock-scroll | Whether to lock background scroll | _boolean_ | `true` |
|
| lock-scroll | Whether to lock background scroll | _boolean_ | `true` |
|
||||||
| lazy-render | Whether to lazy render util appeared | _boolean_ | `true` |
|
| lazy-render | Whether to lazy render util appeared | _boolean_ | `true` |
|
||||||
|
| teleport | Specifies a target element where Overlay will be mounted | _string \| Element_ | - |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -84,6 +84,7 @@ Overlay 组件默认的 z-index 层级为 `1`,你可以通过 `z-index` 属性
|
|||||||
| custom-style | 自定义样式 | _object_ | - |
|
| custom-style | 自定义样式 | _object_ | - |
|
||||||
| lock-scroll | 是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动 | _boolean_ | `true` |
|
| lock-scroll | 是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动 | _boolean_ | `true` |
|
||||||
| lazy-render | 是否在显示时才渲染节点 | _boolean_ | `true` |
|
| lazy-render | 是否在显示时才渲染节点 | _boolean_ | `true` |
|
||||||
|
| teleport | 指定挂载的节点,等同于 Teleport 组件的 [to 属性](https://cn.vuejs.org/api/built-in-components.html#teleport) | _string \| Element_ | - |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -104,3 +104,15 @@ test('should allow to disable lazy-render', async () => {
|
|||||||
|
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('should allow to use the teleport prop', () => {
|
||||||
|
const root = document.createElement('div');
|
||||||
|
mount(Overlay, {
|
||||||
|
props: {
|
||||||
|
show: true,
|
||||||
|
teleport: root,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(root.querySelector('.van-overlay')).toBeTruthy();
|
||||||
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user