Skip to content

Commit c7d842a

Browse files
committed
components/KillButton: add KillButtonDialog component
This commit also removes "--user" from the t-api /kill route request. Signed-off-by: Vallari Agrawal <[email protected]>
1 parent 493dc92 commit c7d842a

File tree

3 files changed

+74
-12
lines changed

3 files changed

+74
-12
lines changed

src/components/KillButton/index.tsx

+73-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
import { useState } from "react";
12
import type { UseMutationResult } from "@tanstack/react-query";
23
import Button from "@mui/material/Button";
34
import Box from "@mui/material/Box";
4-
import { CircularProgress } from "@mui/material";
5+
import CircularProgress from "@mui/material/CircularProgress";
6+
import DialogTitle from '@mui/material/DialogTitle';
7+
import DialogContent from '@mui/material/DialogContent';
8+
import Dialog from '@mui/material/Dialog';
9+
import Paper from "@mui/material/Paper";
10+
import Typography from "@mui/material/Typography";
511

612
import { KillRunPayload } from "../../lib/teuthologyAPI.d";
713
import { useSession } from "../../lib/teuthologyAPI";
@@ -15,37 +21,95 @@ type KillButtonProps = {
1521
disabled?: boolean;
1622
};
1723

24+
type KillButtonDialogProps = {
25+
mutation: UseMutationResult;
26+
payload: KillRunPayload;
27+
open: boolean;
28+
handleClose: () => void;
29+
};
1830

1931
export default function KillButton(props: KillButtonProps) {
32+
const [open, setOpen] = useState(false);
2033
const mutation: UseMutationResult = props.mutation;
2134
const sessionQuery = useSession();
2235
const loggedUser = sessionQuery.data?.session.username;
2336

24-
if (loggedUser?.toLowerCase() != props.payload["--user"].toLowerCase()) {
37+
if (loggedUser?.toLowerCase() != props.payload["--owner"].toLowerCase()) {
2538
// logged user and owner of the job should be equal (case insensitive)
2639
return null
2740
}
2841

42+
const toggleDialog = () => {
43+
setOpen(!open);
44+
};
45+
46+
2947
return (
3048
<div>
3149
<div style={{ display: "flex" }}>
3250
<Button
3351
variant="contained"
3452
color="error"
3553
size="large"
36-
onClick={() => mutation.mutate(props.payload)}
54+
onClick={toggleDialog}
3755
disabled={(props.disabled || mutation.isLoading)}
3856
>
3957
{props.text}
4058
</Button>
41-
{(mutation.isLoading) ? (
42-
<Box sx={{ p: 1 }}>
43-
<CircularProgress size={20} color="inherit" />
44-
</Box>
45-
) : null}
59+
<KillButtonDialog
60+
mutation={mutation}
61+
payload={props.payload}
62+
open={open}
63+
handleClose={toggleDialog}
64+
/>
4665
</div>
4766
{ (mutation.isError) ? <Alert severity="error" message="Unable to kill run" /> : null }
48-
{ (mutation.isSuccess) ? <Alert severity="success" message="Run killed successfully" /> : null }
67+
{ (mutation.isSuccess) ? <Alert severity="success" message={`Run killed successfully! \n`} /> : null }
4968
</div>
5069
);
5170
};
71+
72+
function KillButtonDialog({mutation, open, handleClose, payload}: KillButtonDialogProps) {
73+
return (
74+
<div>
75+
<Dialog onClose={handleClose} open={open} scroll="paper" fullWidth={true} maxWidth="sm">
76+
<DialogTitle>Kill confirmation</DialogTitle>
77+
<DialogContent>
78+
{ (mutation.data && mutation.data.data ) ?
79+
<div>
80+
<Typography variant="h6" display="block" gutterBottom>
81+
{mutation.isSuccess ? "Successful!": "Failed!"}
82+
</Typography>
83+
<Paper>
84+
<Typography variant="caption" display="block" gutterBottom>
85+
{mutation.data.data.logs}
86+
</Typography>
87+
</Paper>
88+
</div> :
89+
(mutation.isLoading) ? (
90+
<Box sx={{ p: 1 }}>
91+
<Typography variant="subtitle1" display="block" gutterBottom>
92+
<CircularProgress size={20} color="inherit" />
93+
Killing run...
94+
</Typography>
95+
</Box>
96+
) :
97+
<div>
98+
<Typography variant="overline" display="block" gutterBottom>
99+
Are you sure you want to kill this run/job?
100+
</Typography>
101+
<Button
102+
variant="contained"
103+
color="error"
104+
size="large"
105+
onClick={() => mutation.mutate(payload)}
106+
>
107+
Yes, I'm sure
108+
</Button>
109+
</div>
110+
}
111+
</DialogContent>
112+
</Dialog>
113+
</div>
114+
)
115+
}

src/lib/teuthologyAPI.d.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ export type Session = {
99
export type KillRunPayload = {
1010
"--run": string,
1111
"--owner": string,
12-
"--machine-type": string,
13-
"--user": string,
12+
"--machine-type": string,
1413
}

src/pages/Run/index.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export default function Run() {
6161
"--run": data?.name || "",
6262
"--owner": run_owner,
6363
"--machine-type": data?.machine_type || "",
64-
"--user": data?.user || "",
6564
}
6665
return (
6766
<Root className={classes.root}>

0 commit comments

Comments
 (0)