-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOtherMenu.tsx
More file actions
238 lines (222 loc) · 6.74 KB
/
OtherMenu.tsx
File metadata and controls
238 lines (222 loc) · 6.74 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
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
import React, { useEffect, useState } from "react";
import {
Box,
Button,
ListItemIcon,
ListItemText,
Menu,
MenuItem,
} from "@mui/material";
import ArrowDropDownIcon from "@mui/icons-material/ArrowDropDown";
import { ActionModal } from "../dialog/ActionModal";
import { ActionModalWithCheckbox } from "../dialog/ActionModalWithCheckbox";
import {
datasetDeleted,
freezeDataset as freezeDatasetAction,
} from "../../actions/dataset";
import { fetchGroups } from "../../actions/group";
import { useNavigate } from "react-router-dom";
import { useDispatch, useSelector } from "react-redux";
import { MoreHoriz } from "@material-ui/icons";
import DeleteIcon from "@mui/icons-material/Delete";
import EditNameModal from "./EditNameModal";
import EditDescriptionModal from "./EditDescriptionModal";
import EditStatusModal from "./EditStatusModal";
import { DriveFileRenameOutline } from "@mui/icons-material";
import { AuthWrapper } from "../auth/AuthWrapper";
import { RootState } from "../../types/data";
import ShareIcon from "@mui/icons-material/Share";
import LocalOfferIcon from "@mui/icons-material/LocalOffer";
import config from "../../app.config";
type ActionsMenuProps = {
datasetId?: string;
datasetName?: string;
};
export const OtherMenu = (props: ActionsMenuProps): JSX.Element => {
let doiActionText;
const { datasetId, datasetName } = props;
// use history hook to redirect/navigate between routes
const history = useNavigate();
// redux
const dispatch = useDispatch();
const deleteDataset = (datasetId: string | undefined) =>
dispatch(datasetDeleted(datasetId));
const datasetRole = useSelector(
(state: RootState) => state.dataset.datasetRole
);
const freezeDataset = (
datasetId: string | undefined,
publishDOI: boolean | undefined
) => dispatch(freezeDatasetAction(datasetId, publishDOI));
const listGroups = () => dispatch(fetchGroups(0, 21));
// component did mount
useEffect(() => {
listGroups();
}, []);
// state
const [rename, setRename] = React.useState<boolean>(false);
const [description, setDescription] = React.useState<boolean>(false);
const [deleteDatasetConfirmOpen, setDeleteDatasetConfirmOpen] =
useState(false);
const [editStatusPaneOpen, setEditStatusPaneOpen] = useState(false);
const [freezeDatasetConfirmOpen, setFreezeDatasetConfirmOpen] =
useState(false);
const handleSetRename = () => {
setRename(false);
};
const handleSetDescription = () => {
setDescription(false);
};
const handleEditStatusClose = () => {
setEditStatusPaneOpen(false);
};
// delete dataset
const deleteSelectedDataset = () => {
if (datasetId) {
deleteDataset(datasetId);
}
setDeleteDatasetConfirmOpen(false);
// Go to Explore page
history("/");
};
const [anchorEl, setAnchorEl] = React.useState<Element | null>(null);
const [publishDOI, setPublishDOI] = React.useState<boolean>(false);
doiActionText =
"By proceeding with the release, you will lock in the current content of the dataset, including all associated files, folders, metadata, and visualizations. Once released, these elements will be set as final and cannot be altered. However, you can continue to make edits and improvements on the ongoing version of the dataset.";
if (config.enableDOI) {
doiActionText +=
" Optionally, you can also generate a Digital Object Identifier (DOI) by selecting the checkbox below. It will be displayed in the dataset page in the Details section.";
}
const handleOptionClick = (event: React.MouseEvent<any>) => {
setAnchorEl(event.currentTarget);
};
const handleOptionClose = () => {
setAnchorEl(null);
};
return (
<Box>
<EditNameModal
datasetId={datasetId}
handleClose={handleSetRename}
open={rename}
/>
<EditDescriptionModal
datasetId={datasetId}
handleClose={handleSetDescription}
open={description}
/>
<EditStatusModal
open={editStatusPaneOpen}
handleClose={handleEditStatusClose}
datasetName={datasetName}
/>
<ActionModal
actionOpen={deleteDatasetConfirmOpen}
actionTitle="Delete Dataset"
actionText="Are you sure you want to delete this dataset? This action is irreversible. All released versions, including their associated files, folders, metadata, visualizations, and thumbnails, will be permanently deleted."
actionBtnName="Delete"
handleActionBtnClick={deleteSelectedDataset}
handleActionCancel={() => {
setDeleteDatasetConfirmOpen(false);
}}
actionLevel={"error"}
/>
<ActionModalWithCheckbox
actionOpen={freezeDatasetConfirmOpen}
actionTitle="Are you ready to release this version of the dataset?"
actionText={doiActionText}
displayCheckbox={config.enableDOI}
checkboxLabel="Generate a DOI for this version of the dataset."
checkboxSelected={publishDOI}
setCheckboxSelected={setPublishDOI}
actionBtnName="Release"
handleActionBtnClick={() => {
freezeDataset(datasetId, publishDOI);
setFreezeDatasetConfirmOpen(false);
}}
handleActionCancel={() => {
setFreezeDatasetConfirmOpen(false);
}}
/>
<Button
variant="outlined"
onClick={handleOptionClick}
endIcon={<ArrowDropDownIcon />}
>
<MoreHoriz />
</Button>
<Menu
id="simple-menu"
anchorEl={anchorEl}
keepMounted
open={Boolean(anchorEl)}
onClose={handleOptionClose}
>
<MenuItem
onClick={() => {
handleOptionClose();
setRename(true);
}}
>
{" "}
<ListItemIcon>
<DriveFileRenameOutline fontSize="small" />
</ListItemIcon>
<ListItemText>Rename</ListItemText>
</MenuItem>
<MenuItem
onClick={() => {
handleOptionClose();
setDescription(true);
}}
>
{" "}
<ListItemIcon>
<DriveFileRenameOutline fontSize="small" />
</ListItemIcon>
<ListItemText>Update Description</ListItemText>
</MenuItem>
<MenuItem
onClick={() => {
handleOptionClose();
setEditStatusPaneOpen(true);
}}
>
<ListItemIcon>
<ShareIcon fontSize="small" />
</ListItemIcon>
<ListItemText>Change Status</ListItemText>
</MenuItem>
<AuthWrapper currRole={datasetRole.role} allowedRoles={["owner"]}>
<MenuItem
onClick={() => {
handleOptionClose();
setFreezeDatasetConfirmOpen(true);
}}
>
<ListItemIcon>
<LocalOfferIcon fontSize="small" />
</ListItemIcon>
Release Version
</MenuItem>
</AuthWrapper>
<AuthWrapper
currRole={datasetRole.role}
allowedRoles={["owner", "editor"]}
>
<MenuItem
onClick={() => {
handleOptionClose();
setDeleteDatasetConfirmOpen(true);
}}
>
<ListItemIcon>
<DeleteIcon fontSize="small" />
</ListItemIcon>
<ListItemText>Delete Dataset</ListItemText>
</MenuItem>
</AuthWrapper>
</Menu>
</Box>
);
};