|
|
|
@ -1,5 +1,5 @@ |
|
|
|
|
import styles from './styles.module.css' |
|
|
|
|
import {useContext, useEffect, useState} from "react" |
|
|
|
|
import {useEffect, useState} from "react" |
|
|
|
|
import DeleteForeverOutlined from "@mui/icons-material/DeleteForeverOutlined" |
|
|
|
|
import StopCircleOutlined from "@mui/icons-material/StopCircleOutlined" |
|
|
|
|
import PauseCircleOutline from "@mui/icons-material/PauseCircleOutline" |
|
|
|
@ -10,7 +10,6 @@ import ErrorOutline from "@mui/icons-material/ErrorOutline" |
|
|
|
|
import ReplayOutlined from "@mui/icons-material/ReplayOutlined" |
|
|
|
|
import RunCircleOutlined from "@mui/icons-material/RunCircleOutlined" |
|
|
|
|
import FactCheckOutlined from "@mui/icons-material/FactCheckOutlined" |
|
|
|
|
import ThumbUpAltOutlined from '@mui/icons-material/ThumbUpAltOutlined' |
|
|
|
|
import { |
|
|
|
|
Box, |
|
|
|
|
TextField, |
|
|
|
@ -31,7 +30,6 @@ import Command from "../commands/elements/command"; |
|
|
|
|
import {CommandInterface} from "../../../api/sm/responses/comamnds"; |
|
|
|
|
import Grid from '@mui/material/Grid'; |
|
|
|
|
import {useApi} from "../../../hooks/use-api"; |
|
|
|
|
import Context from "../../../context/token"; |
|
|
|
|
|
|
|
|
|
enum Action { |
|
|
|
|
Run, |
|
|
|
@ -40,11 +38,9 @@ enum Action { |
|
|
|
|
Kill, |
|
|
|
|
Play, |
|
|
|
|
Pause, |
|
|
|
|
Approve, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
export default function Processes() { |
|
|
|
|
const {token} = useContext(Context) |
|
|
|
|
const [processes, setProcesses] = useState<ProcessInterface[]>([]); |
|
|
|
|
const [commands, setCommands] = useState<CommandInterface[]>([]); |
|
|
|
|
const [page, setPage] = useState<number>(0); |
|
|
|
@ -120,8 +116,6 @@ export default function Processes() { |
|
|
|
|
}, [action]); |
|
|
|
|
|
|
|
|
|
let isFinished = (process: ProcessInterface) => process.cancelledAt || process.completedAt |
|
|
|
|
let isCancelled = (process: ProcessInterface) => process.cancelledAt |
|
|
|
|
let isRunning = (process: ProcessInterface) => process.startedAt && !isFinished(process) |
|
|
|
|
|
|
|
|
|
const handleChangePage = (event: any, page: number) => { |
|
|
|
|
setPage(page); |
|
|
|
@ -151,12 +145,6 @@ export default function Processes() { |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (action === Action.Approve) { |
|
|
|
|
await api.approveProcess({ |
|
|
|
|
id: selectedProcess.id, |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (action === Action.Repeat) { |
|
|
|
|
await api.repeatProcess({ |
|
|
|
|
id: selectedProcess.id, |
|
|
|
@ -225,10 +213,8 @@ export default function Processes() { |
|
|
|
|
<TableRow key={process.id}> |
|
|
|
|
<TableCell>{process.name}</TableCell> |
|
|
|
|
<TableCell> |
|
|
|
|
{!process.progress && !isFinished(process) && isRunning(process) && <LinearProgress/>} |
|
|
|
|
{!process.progress && !isFinished(process) && !isRunning(process) && <LinearProgress variant="determinate" value={0}/>} |
|
|
|
|
{!process.progress && isFinished(process) && !isCancelled(process) && <LinearProgress variant="determinate" value={100}/>} |
|
|
|
|
{!process.progress && isFinished(process) && isCancelled(process) && <LinearProgress variant="determinate" value={0}/>} |
|
|
|
|
{!process.progress && !isFinished(process) && <LinearProgress/>} |
|
|
|
|
{!process.progress && isFinished(process) && <LinearProgress variant="determinate" value={100}/>} |
|
|
|
|
{process.progress && <LinearProgress variant="determinate" value={process.progress.percent}/>} |
|
|
|
|
{process.progress && <span> |
|
|
|
|
{`${process.progress.progress}`} / {`${process.progress.total}`} - {process.progress.percent}% [{process.progress.memory}] / {process.progress.remaining} |
|
|
|
@ -261,9 +247,6 @@ export default function Processes() { |
|
|
|
|
</IconButton>} |
|
|
|
|
</TableCell> |
|
|
|
|
<TableCell> |
|
|
|
|
{process.canApprove && token?.permissions.indexOf('approve_process') > -1 && <IconButton onClick={() => openDialog(process, Action.Approve)} title={`Approve`} aria-label="Approve"> |
|
|
|
|
<ThumbUpAltOutlined/> |
|
|
|
|
</IconButton>} |
|
|
|
|
{process.canRepeat && <IconButton onClick={() => openDialog(process, Action.Repeat)} title={`Repeat`} aria-label="Repeat"> |
|
|
|
|
<ReplayOutlined/> |
|
|
|
|
</IconButton>} |
|
|
|
@ -317,13 +300,6 @@ export default function Processes() { |
|
|
|
|
argumentsParams={selectedProcess.arguments} |
|
|
|
|
callback={callback}/>} |
|
|
|
|
</ConfirmDialog>} |
|
|
|
|
{selectedProcess && <ConfirmDialog |
|
|
|
|
title={selectedProcess.name} |
|
|
|
|
open={Action.Approve === action} |
|
|
|
|
agreeCallback={agreeCallback} |
|
|
|
|
closeCallback={() => {setAction(null)}}> |
|
|
|
|
Approve? |
|
|
|
|
</ConfirmDialog>} |
|
|
|
|
{selectedProcess && <ConfirmDialog |
|
|
|
|
title={`Are you sure?`} |
|
|
|
|
open={ !!action && ([Action.Play, Action.Pause, Action.Stop, Action.Kill].indexOf(action) > -1) } |
|
|
|
|