From c1be4112e46dd4468300ba2584b7ab76b8823c56 Mon Sep 17 00:00:00 2001 From: zoy-l <409626581@qq.com> Date: Fri, 11 Feb 2022 14:52:49 +0800 Subject: [PATCH] feat(Dialog): support enter/esc keyboard event (#10261) * feat(dialog): the enter/esc keyboard event is supported * fix(dialog): the corresponding method is not executed when there is no button * chore(dialog): simplify implementation * fix: the wrong judgment --- packages/vant/src/dialog/Dialog.tsx | 18 +++++++++++++++++- .../test/__snapshots__/demo.spec.ts.snap | 1 + .../test/__snapshots__/index.spec.js.snap | 1 + packages/vant/src/popup/Popup.tsx | 10 ++++++++++ 4 files changed, 29 insertions(+), 1 deletion(-) diff --git a/packages/vant/src/dialog/Dialog.tsx b/packages/vant/src/dialog/Dialog.tsx index 92ca35343..a767ea648 100644 --- a/packages/vant/src/dialog/Dialog.tsx +++ b/packages/vant/src/dialog/Dialog.tsx @@ -3,6 +3,7 @@ import { defineComponent, type PropType, type ExtractPropTypes, + withKeys, } from 'vue'; // Utils @@ -71,7 +72,7 @@ export default defineComponent({ props: dialogProps, - emits: ['confirm', 'cancel', 'update:show'], + emits: ['confirm', 'cancel', 'update:show', 'keydown'], setup(props, { emit, slots }) { const loading = reactive({ @@ -113,6 +114,19 @@ export default defineComponent({ const onCancel = getActionHandler('cancel'); const onConfirm = getActionHandler('confirm'); + const onKeydown = withKeys( + (event: KeyboardEvent) => { + const onEventType: Record void> = { + Enter: props.showConfirmButton ? onConfirm : () => {}, + Escape: props.showCancelButton ? onCancel : () => {}, + }; + + onEventType[event.key](); + + emit('keydown', event); + }, + ['enter', 'esc'] + ); const renderTitle = () => { const title = slots.title ? slots.title() : props.title; @@ -229,6 +243,8 @@ export default defineComponent({ const { width, title, theme, message, className } = props; return (