-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathConfirmationWindow.tsx
140 lines (129 loc) · 3.4 KB
/
ConfirmationWindow.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import React, { useState } from 'react';
import styled from 'styled-components';
import { Modal, Typography, TextField, Box } from '@mui/material';
import { useDispatch } from 'react-redux';
// local imports
import Button from '../../../../cse-ui-kit/buttons/Button';
import {
addItemAction,
AddPayloadType,
deleteFileEntityAction,
DeletePayloadType,
} from 'src/packages/dashboard/state/folders/actions';
import { getFolderState } from '../../api/helpers';
type Props = {
open: boolean;
modalState: { open: boolean; selectedFile: string; type: string };
setModalState: (flag: {
open: boolean;
selectedFile: string;
type: string;
}) => void;
};
const Container = styled.div`
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 500px;
height: 200px;
background: white;
border-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
grid-gap: 20px;
`;
export default function ConfirmationWindow({
open,
modalState,
setModalState,
}: Props) {
const dispatch = useDispatch();
const [inputValue, setInputValue] = useState<string>('');
const folderState = getFolderState();
const handleSubmit = () => {
switch (modalState.type) {
case 'folder': {
const folderPayload: AddPayloadType = {
name: inputValue,
type: 'Folder',
parentId: folderState.parentFolder,
};
dispatch(addItemAction(folderPayload));
break;
}
case 'file': {
const filePayload: AddPayloadType = {
name: inputValue,
type: 'File',
parentId: folderState.parentFolder,
};
dispatch(addItemAction(filePayload));
break;
}
case 'delete': {
const folderPayload: DeletePayloadType = {
id: modalState.selectedFile,
};
dispatch(deleteFileEntityAction(folderPayload));
break;
}
}
setModalState({
open: false,
selectedFile: '',
type: '',
});
};
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const value = e.target.value;
setInputValue(value);
};
const handleKeyDown = (e: React.KeyboardEvent) => {
if (e.key === 'Enter') {
handleSubmit();
}
};
return (
<Modal
open={open}
onClose={() => {
setModalState({
open: false,
selectedFile: '',
type: '',
});
}}
>
{modalState.type !== 'delete' ? (
<Container data-anchor="ConfirmationWindow">
<Typography variant="h5">
Choose your {modalState.type} name
</Typography>
<Box display="flex" alignItems="center">
<TextField
value={inputValue}
onChange={handleChange}
onKeyDown={handleKeyDown}
sx={{ marginRight: '10px' }}
/>
<Button background="#73EEDC" onClick={handleSubmit}>
submit
</Button>
</Box>
</Container>
) : (
<Container data-anchor="ConfirmationWindow">
<Typography variant="h5">Are you sure you want to delete?</Typography>
<Box display="flex" alignItems="center">
<Button background="#73EEDC" onClick={handleSubmit}>
continue
</Button>
</Box>
</Container>
)}
</Modal>
);
}