mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2025-07-06 04:51:44 -07:00
80 lines
1.9 KiB
JavaScript
80 lines
1.9 KiB
JavaScript
import { useState } from "react";
|
|
import { useParams, useHistory } from "react-router-dom";
|
|
|
|
import {
|
|
Accordion,
|
|
AccordionSummary,
|
|
AccordionDetails,
|
|
Button,
|
|
Dialog,
|
|
DialogContent,
|
|
DialogContentText,
|
|
DialogTitle,
|
|
DialogActions,
|
|
Typography,
|
|
} from "@material-ui/core";
|
|
import ExpandMoreIcon from "@material-ui/icons/ExpandMore.js";
|
|
import DeleteIcon from "@material-ui/icons/Delete.js";
|
|
|
|
import API from "utils/API.js";
|
|
|
|
function NetworkManagement() {
|
|
const { nwid } = useParams();
|
|
const history = useHistory();
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const handleClickOpen = () => {
|
|
setOpen(true);
|
|
};
|
|
|
|
const handleClose = () => {
|
|
setOpen(false);
|
|
};
|
|
|
|
const sendDelReq = async () => {
|
|
const req = await API.delete("/network/" + nwid);
|
|
console.log("Action:", req);
|
|
};
|
|
|
|
const deleteNetwork = async () => {
|
|
await sendDelReq();
|
|
history.push("/");
|
|
history.go(0);
|
|
};
|
|
|
|
return (
|
|
<Accordion>
|
|
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
|
|
<Typography>Management</Typography>
|
|
</AccordionSummary>
|
|
<AccordionDetails>
|
|
<Button
|
|
variant="contained"
|
|
color="secondary"
|
|
startIcon={<DeleteIcon />}
|
|
onClick={handleClickOpen}
|
|
>
|
|
Delete Network
|
|
</Button>
|
|
<Dialog open={open} onClose={handleClose}>
|
|
<DialogTitle>
|
|
{"Are you sure you want to delete this network?"}
|
|
</DialogTitle>
|
|
<DialogContent>
|
|
<DialogContentText>This action cannot be undone.</DialogContentText>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<Button onClick={handleClose} color="primary">
|
|
Cancel
|
|
</Button>
|
|
<Button onClick={deleteNetwork} color="secondary">
|
|
Delete
|
|
</Button>
|
|
</DialogActions>
|
|
</Dialog>
|
|
</AccordionDetails>
|
|
</Accordion>
|
|
);
|
|
}
|
|
|
|
export default NetworkManagement;
|