-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathConfirmationDialog.tsx
More file actions
110 lines (96 loc) · 3.03 KB
/
Copy pathConfirmationDialog.tsx
File metadata and controls
110 lines (96 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import React from 'react';
import * as NiceModal from '@ebay/nice-modal-react';
import type {ButtonView, DialogFooterProps} from '@gravity-ui/uikit';
import {Dialog} from '@gravity-ui/uikit';
import {cn} from '../../utils/cn';
import {confirmationDialogKeyset} from './i18n';
import './ConfirmationDialog.scss';
const block = cn('confirmation-dialog');
interface CommonDialogProps {
caption?: string;
message?: React.ReactNode;
body?: React.ReactNode;
progress?: boolean;
textButtonCancel?: string;
textButtonApply?: string;
buttonApplyView?: ButtonView;
className?: string;
disableOutsideClick?: boolean;
onConfirm?: () => void;
}
interface ConfirmationDialogNiceModalProps extends CommonDialogProps, DialogFooterProps {
onClose?: () => void;
}
interface ConfirmationDialogProps extends CommonDialogProps, DialogFooterProps {
onClose: () => void;
open: boolean;
children?: React.ReactNode;
confirmOnEnter?: boolean;
}
export const CONFIRMATION_DIALOG = 'confirmation-dialog';
function ConfirmationDialog({
caption = '',
children,
message,
body,
onConfirm,
onClose,
progress,
textButtonApply,
textButtonCancel,
buttonApplyView = 'normal',
className,
disableOutsideClick = true,
renderButtons,
open,
confirmOnEnter,
}: ConfirmationDialogProps) {
return (
<Dialog
className={block(null, className)}
size="s"
onClose={onClose}
disableOutsideClick={disableOutsideClick}
open={open}
onEnterKeyDown={confirmOnEnter ? onConfirm : undefined}
>
<Dialog.Header caption={<span className={block('caption')}>{caption}</span>} />
<Dialog.Body>{children ?? body ?? message}</Dialog.Body>
<Dialog.Footer
onClickButtonApply={onConfirm}
propsButtonApply={{view: buttonApplyView}}
textButtonApply={textButtonApply}
textButtonCancel={textButtonCancel ?? confirmationDialogKeyset('action_cancel')}
onClickButtonCancel={onClose}
loading={progress}
renderButtons={renderButtons}
/>
</Dialog>
);
}
export const ConfirmationDialogNiceModal = NiceModal.create(
(props: ConfirmationDialogNiceModalProps) => {
const modal = NiceModal.useModal();
const handleClose = () => {
modal.hide();
modal.remove();
};
return (
<ConfirmationDialog
{...props}
onConfirm={async () => {
await props.onConfirm?.();
modal.resolve(true);
handleClose();
}}
onClose={() => {
props.onClose?.();
modal.resolve(false);
handleClose();
}}
open={modal.visible}
/>
);
},
);
NiceModal.register(CONFIRMATION_DIALOG, ConfirmationDialogNiceModal);