mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Popover): add close-on-click-overlay prop (#8351)
This commit is contained in:
parent
a835955859
commit
a7fb5f732e
@ -81,6 +81,10 @@ export default defineComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
|
closeOnClickOverlay: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
emits: ['select', 'touchstart', 'update:show'],
|
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 renderAction = (action: PopoverAction, index: number) => {
|
||||||
const { icon, text, color, disabled, className } = action;
|
const { icon, text, color, disabled, className } = action;
|
||||||
@ -197,6 +205,7 @@ export default defineComponent({
|
|||||||
transition="van-popover-zoom"
|
transition="van-popover-zoom"
|
||||||
lockScroll={false}
|
lockScroll={false}
|
||||||
onTouchstart={onTouchstart}
|
onTouchstart={onTouchstart}
|
||||||
|
closeOnClickOverlay={props.closeOnClickOverlay}
|
||||||
{...{ ...attrs, 'onUpdate:show': updateShow }}
|
{...{ ...attrs, 'onUpdate:show': updateShow }}
|
||||||
>
|
>
|
||||||
<div class={bem('arrow')} />
|
<div class={bem('arrow')} />
|
||||||
|
@ -213,6 +213,7 @@ export default {
|
|||||||
| overlay | Whether to show overlay | _boolean_ | `false` |
|
| overlay | Whether to show overlay | _boolean_ | `false` |
|
||||||
| close-on-click-action | Whether to close when clicking action | _boolean_ | `true` |
|
| 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-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` |
|
| teleport | Return the mount node for Popover | _string \| Element_ | `body` |
|
||||||
|
|
||||||
### Data Structure of Action
|
### Data Structure of Action
|
||||||
|
@ -227,6 +227,7 @@ export default {
|
|||||||
| overlay | 是否显示遮罩层 | _boolean_ | `false` |
|
| overlay | 是否显示遮罩层 | _boolean_ | `false` |
|
||||||
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `true` |
|
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `true` |
|
||||||
| close-on-click-outside | 是否在点击外部元素后关闭菜单 | _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` |
|
| teleport | 指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi) | _string \| Element_ | `body` |
|
||||||
|
|
||||||
### Action 数据结构
|
### Action 数据结构
|
||||||
|
@ -161,3 +161,17 @@ test('should emit click-overlay event when overlay is clicked', () => {
|
|||||||
wrapper.find('.van-overlay').trigger('click');
|
wrapper.find('.van-overlay').trigger('click');
|
||||||
expect(onClickOverlay).toHaveBeenCalledTimes(1);
|
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();
|
||||||
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user