-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathmessage-wait-dialog.tsx
50 lines (43 loc) · 1.07 KB
/
message-wait-dialog.tsx
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
import { useTranslation } from 'react-i18next';
import { Cancel, Checked } from '../../../../../components/icon/icon';
import { WaitDialog } from '../../../../../components/wait-dialog/wait-dialog';
type TProps = {
isShown: boolean;
messageType: 'sent' | 'abort';
}
type TIconProps = {
messageType: TProps['messageType']
}
export const MessageWaitDialog = ({ isShown, messageType }: TProps) => {
if (!isShown) {
return null;
}
return (
<WaitDialog>
<div className="flex flex-row flex-center flex-items-center">
<IconAndMessage messageType={messageType} />
</div>
</WaitDialog>
);
};
const IconAndMessage = ({ messageType }: TIconProps) => {
const { t } = useTranslation();
switch (messageType) {
case 'sent':
return (
<>
<Checked style={{ height: 18, marginRight: '16px' }} />
{t('send.success')}
</>
);
case 'abort':
return (
<>
<Cancel alt="Abort" style={{ height: 18, marginRight: '16px' }} />
{t('send.abort')}
</>
);
default:
return null;
}
};