-
Notifications
You must be signed in to change notification settings - Fork 3
/
EditLabelDialog.jsx
280 lines (259 loc) · 7.04 KB
/
EditLabelDialog.jsx
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
import "./colorSelector.css";
import {
Box,
Button,
Dialog,
DialogActions,
DialogContent,
Grid2 as Grid,
TextField,
Typography
} from "@mui/material";
import React, { useEffect, useState } from "react";
import Color from "../Color";
import DialogTitle from "../DialogTitle";
import LabelChip from "../LabelSelector/LabelChip/LabelChip";
import PropTypes from "prop-types";
// edit label dialog allows for the editing and creating new specific label objects
export default function EditLabelDialog({
isOpen = false,
options = [],
onNew = () => {},
onEdit = () => {},
onClose = () => {},
title,
label = { _id: "", color: "#005FA8", description: "", name: "" },
nameMaxLength = 50
}) {
// define label states for user input
const [name, setName] = useState("");
const [description, setDescription] = useState("");
const [color, setColor] = useState("#005FA8");
// check if label is new and not being edited
const isNew = label._id === "" && label.name === "";
// reset label states when cancel or close button is clicked
const handleCancel = () => {
// close the dialog
onClose();
// reset all the states
setName("");
setDescription("");
setColor("#005FA8");
};
// if the label changes, update the dependent states
useEffect(() => {
setName(label.name);
setDescription(label.description);
setColor(label.color);
}, [label]);
// if the label is being edited, set the states to the label's values
useEffect(() => {
if (!isNew) {
setName(label.name);
setDescription(label.description);
setColor(label.color);
}
}, [label, isNew]);
// check that if a label is being edited,
// changes have been made to the label
let hasChanged = true;
if (!isNew) {
hasChanged =
name !== label.name ||
description !== label.description ||
color !== label.color;
}
// get all option names except the current label
const optionNames = options
.filter(option => option.name !== label.name)
.map(option => option.name);
// check if name already exists (except for the current label)
const isLabelNameValid = !optionNames?.includes(name.trim());
// variable for label name length
const isLabelLengthValid = name.trim().length <= nameMaxLength;
// name error message helper function
const nameErrorMessage = () => {
if (!isLabelNameValid) {
return "Label name already exists";
}
if (!isLabelLengthValid) {
return `Label name must be ${nameMaxLength} characters or less`;
}
return "";
};
// handle save button click and save the label
const handleSave = event => {
// remove any white spaces from start and end of the name and description
const trimmedName = name.trim();
const trimmedDescription = description.trim();
// if label is new, call onNew otherwise call onEdit
if (isNew) {
onNew({ color, description: trimmedDescription, name: trimmedName });
} else {
onEdit({
...label,
color,
description: trimmedDescription,
name: trimmedName
});
}
// reset all the states
setName("");
setDescription("");
setColor("#005FA8");
onClose(event, "save");
};
// handle close button click and close the dialog box
const handleClose = (event, reason) => {
// don't close if the user clicks outside the dialog
if (reason === "backdropClick") {
return;
}
// close the dialog
onClose(event, reason);
// reset all the states
setName("");
setDescription("");
setColor("#005FA8");
onClose();
};
// return the label dialog
return (
<Dialog maxWidth="sm" fullWidth onClose={handleClose} open={isOpen}>
<DialogTitle onClose={handleClose}>{title}</DialogTitle>
<DialogContent dividers>
<Grid container spacing={2}>
<Grid size={12}>
<TextField
label="Label Name"
variant="outlined"
required
fullWidth
slotProps={{ inputLabel: { shrink: true } }}
value={name}
onChange={event => setName(event.target.value)}
error={!isLabelNameValid || !isLabelLengthValid}
helperText={nameErrorMessage()}
/>
</Grid>
<Grid size={12}>
<TextField
label="Label Description"
variant="outlined"
fullWidth
slotProps={{ inputLabel: { shrink: true } }}
value={description}
onChange={event => setDescription(event.target.value)}
/>
</Grid>
<Grid size={12}>
<Typography
sx={theme => ({
color: theme.palette.text.secondary,
fontSize: "12px",
fontWeight: 400,
marginLeft: "14px"
})}
>
Label Color *
</Typography>
</Grid>
<Grid size={12}>
<Color
value={color}
onChange={color => setColor(color)}
showNoColor={false}
/>
</Grid>
<Grid size={12}>
<Box
sx={{
display: "flex",
justifyContent: "center",
width: "100%"
}}
>
{name ? (
<LabelChip label={name} color={color} size="small" />
) : null}
</Box>
</Grid>
</Grid>
</DialogContent>
<DialogActions>
<Button onClick={handleCancel} color="primary">
Cancel
</Button>
<Button
variant="contained"
onClick={handleSave}
color="primary"
disabled={
name.trim().length === 0 ||
color.length === 0 ||
!isLabelNameValid ||
!hasChanged ||
!isLabelLengthValid
}
>
{isNew ? "Add" : "Save"}
</Button>
</DialogActions>
</Dialog>
);
}
// EditLabelDialog PropTypes
EditLabelDialog.propTypes = {
/**
* If true, the component is shown.
*/
isOpen: PropTypes.bool,
/**
* The label to be edited.
*/
label: PropTypes.object,
/**
* Callback fired when the component requests to be closed.
*
* **Signature**
*
* ```
* function(event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void
* ```
*
* event: The event source of the callback.
*/
onClose: PropTypes.func,
/**
* Callback when user edits a label
*
* **Signature**
*
* ```
* function(label: object) => void
* ```
*
* label: The label object to edit
*/
onEdit: PropTypes.func,
/**
* Callback fired when a label is edited.
*
* **Signature**
*
* ```
* function(label: object) => void
* ```
*
* label: The label object to add
*/
onNew: PropTypes.func,
/**
* The array of label objects that are options to render in the listbox.
*/
options: PropTypes.array,
/**
* The title of the dialog.
*/
title: PropTypes.string.isRequired
};