1
+ import { useState } from "react" ;
1
2
import type { UseMutationResult } from "@tanstack/react-query" ;
2
3
import Button from "@mui/material/Button" ;
3
4
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" ;
5
11
6
12
import { KillRunPayload } from "../../lib/teuthologyAPI.d" ;
7
13
import { useSession } from "../../lib/teuthologyAPI" ;
@@ -15,37 +21,95 @@ type KillButtonProps = {
15
21
disabled ?: boolean ;
16
22
} ;
17
23
24
+ type KillButtonDialogProps = {
25
+ mutation : UseMutationResult ;
26
+ payload : KillRunPayload ;
27
+ open : boolean ;
28
+ handleClose : ( ) => void ;
29
+ } ;
18
30
19
31
export default function KillButton ( props : KillButtonProps ) {
32
+ const [ open , setOpen ] = useState ( false ) ;
20
33
const mutation : UseMutationResult = props . mutation ;
21
34
const sessionQuery = useSession ( ) ;
22
35
const loggedUser = sessionQuery . data ?. session . username ;
23
36
24
- if ( loggedUser ?. toLowerCase ( ) != props . payload [ "--user " ] . toLowerCase ( ) ) {
37
+ if ( loggedUser ?. toLowerCase ( ) != props . payload [ "--owner " ] . toLowerCase ( ) ) {
25
38
// logged user and owner of the job should be equal (case insensitive)
26
39
return null
27
40
}
28
41
42
+ const toggleDialog = ( ) => {
43
+ setOpen ( ! open ) ;
44
+ } ;
45
+
46
+
29
47
return (
30
48
< div >
31
49
< div style = { { display : "flex" } } >
32
50
< Button
33
51
variant = "contained"
34
52
color = "error"
35
53
size = "large"
36
- onClick = { ( ) => mutation . mutate ( props . payload ) }
54
+ onClick = { toggleDialog }
37
55
disabled = { ( props . disabled || mutation . isLoading ) }
38
56
>
39
57
{ props . text }
40
58
</ 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
+ />
46
65
</ div >
47
66
{ ( 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 }
49
68
</ div >
50
69
) ;
51
70
} ;
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
+ }
0 commit comments