fix: pass through events to onClose for modals

we can then use this to programmatically disable the onclose when necessary
pull/3083/head
William Grant 11 months ago
parent 57651289e5
commit f726fa5575

@ -13,7 +13,7 @@ export type SessionWrapperModalType = {
title?: string; title?: string;
showHeader?: boolean; showHeader?: boolean;
onConfirm?: () => void; onConfirm?: () => void;
onClose?: () => void; onClose?: (event?: KeyboardEvent) => void;
showClose?: boolean; showClose?: boolean;
confirmText?: string; confirmText?: string;
cancelText?: string; cancelText?: string;
@ -41,8 +41,8 @@ export const SessionWrapperModal = (props: SessionWrapperModalType) => {
useKey( useKey(
'Esc', 'Esc',
() => { event => {
props.onClose?.(); props.onClose?.(event);
}, },
undefined, undefined,
[props.onClose] [props.onClose]
@ -50,8 +50,8 @@ export const SessionWrapperModal = (props: SessionWrapperModalType) => {
useKey( useKey(
'Escape', 'Escape',
() => { event => {
props.onClose?.(); props.onClose?.(event);
}, },
undefined, undefined,
[props.onClose] [props.onClose]
@ -95,7 +95,9 @@ export const SessionWrapperModal = (props: SessionWrapperModalType) => {
<SessionIconButton <SessionIconButton
iconType="exit" iconType="exit"
iconSize="small" iconSize="small"
onClick={props.onClose} onClick={() => {
props.onClose?.();
}}
padding={'5px'} padding={'5px'}
margin={'0'} margin={'0'}
dataTestId="modal-close-button" dataTestId="modal-close-button"

Loading…
Cancel
Save