feat(Popover): add close-on-click-overlay prop (#8351)

This commit is contained in:
neverland 2021-03-15 19:56:53 +08:00 committed by GitHub
parent a835955859
commit a7fb5f732e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 1 deletions

View File

@ -81,6 +81,10 @@ export default defineComponent({
type: Boolean,
default: true,
},
closeOnClickOverlay: {
type: Boolean,
default: true,
},
},
emits: ['select', 'touchstart', 'update:show'],
@ -153,7 +157,11 @@ export default defineComponent({
}
};
const onClickAway = () => updateShow(false);
const onClickAway = () => {
if (!props.overlay || props.closeOnClickOverlay) {
updateShow(false);
}
};
const renderAction = (action: PopoverAction, index: number) => {
const { icon, text, color, disabled, className } = action;
@ -197,6 +205,7 @@ export default defineComponent({
transition="van-popover-zoom"
lockScroll={false}
onTouchstart={onTouchstart}
closeOnClickOverlay={props.closeOnClickOverlay}
{...{ ...attrs, 'onUpdate:show': updateShow }}
>
<div class={bem('arrow')} />

View File

@ -213,6 +213,7 @@ export default {
| overlay | Whether to show overlay | _boolean_ | `false` |
| close-on-click-action | Whether to close when clicking action | _boolean_ | `true` |
| close-on-click-outside | Whether to close when clicking outside | _boolean_ | `true` |
| close-on-click-overlay `v3.0.10` | Whether to close when clicking overlay | _boolean_ | `true` |
| teleport | Return the mount node for Popover | _string \| Element_ | `body` |
### Data Structure of Action

View File

@ -227,6 +227,7 @@ export default {
| overlay | 是否显示遮罩层 | _boolean_ | `false` |
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `true` |
| close-on-click-outside | 是否在点击外部元素后关闭菜单 | _boolean_ | `true` |
| close-on-click-overlay `v3.0.10` | 是否在点击遮罩层后关闭菜单 | _boolean_ | `true` |
| teleport | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | _string \| Element_ | `body` |
### Action 数据结构

View File

@ -161,3 +161,17 @@ test('should emit click-overlay event when overlay is clicked', () => {
wrapper.find('.van-overlay').trigger('click');
expect(onClickOverlay).toHaveBeenCalledTimes(1);
});
test('should not close Popover when overlay is clicked and close-on-click-overlay is false', () => {
const wrapper = mount(Popover, {
props: {
show: true,
overlay: true,
closeOnClickOverlay: false,
},
});
const overlay = document.querySelector('.van-overlay')!;
trigger(overlay, 'touchstart');
expect(wrapper.emitted('update:show')).toBeFalsy();
});