215 lines
6.3 KiB
TypeScript
215 lines
6.3 KiB
TypeScript
import { getClient } from "@/api/AxiosClient";
|
|
import { Status } from "@/api/types";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import { toast } from "@/components/ui/use-toast";
|
|
import { useCredentialGetter } from "@/hooks/useCredentialGetter";
|
|
import { cn } from "@/util/utils";
|
|
import { ReloadIcon } from "@radix-ui/react-icons";
|
|
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
|
import { NavLink, Outlet, useParams } from "react-router-dom";
|
|
import { TaskInfo } from "./TaskInfo";
|
|
import { useTaskQuery } from "./hooks/useTaskQuery";
|
|
|
|
function TaskDetails() {
|
|
const { taskId } = useParams();
|
|
const credentialGetter = useCredentialGetter();
|
|
const queryClient = useQueryClient();
|
|
|
|
const {
|
|
data: task,
|
|
isLoading: taskIsLoading,
|
|
isError: taskIsError,
|
|
error: taskError,
|
|
} = useTaskQuery({ id: taskId });
|
|
|
|
const cancelTaskMutation = useMutation({
|
|
mutationFn: async () => {
|
|
const client = await getClient(credentialGetter);
|
|
return client
|
|
.post(`/tasks/${taskId}/cancel`)
|
|
.then((response) => response.data);
|
|
},
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({
|
|
queryKey: ["task", taskId],
|
|
});
|
|
queryClient.invalidateQueries({
|
|
queryKey: ["tasks"],
|
|
});
|
|
toast({
|
|
variant: "success",
|
|
title: "Task Canceled",
|
|
description: "The task has been successfully canceled.",
|
|
});
|
|
},
|
|
onError: (error) => {
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Error",
|
|
description: error.message,
|
|
});
|
|
},
|
|
});
|
|
|
|
if (taskIsError) {
|
|
return <div>Error: {taskError?.message}</div>;
|
|
}
|
|
|
|
const showExtractedInformation =
|
|
task?.status === Status.Completed && task.extracted_information !== null;
|
|
const extractedInformation = showExtractedInformation ? (
|
|
<div className="flex items-center">
|
|
<Label className="w-32 shrink-0 text-lg">Extracted Information</Label>
|
|
<Textarea
|
|
rows={5}
|
|
value={JSON.stringify(task.extracted_information, null, 2)}
|
|
readOnly
|
|
/>
|
|
</div>
|
|
) : null;
|
|
|
|
const taskIsRunningOrQueued =
|
|
task?.status === Status.Running || task?.status === Status.Queued;
|
|
|
|
const showFailureReason =
|
|
task?.status === Status.Failed ||
|
|
task?.status === Status.Terminated ||
|
|
task?.status === Status.TimedOut;
|
|
const failureReason = showFailureReason ? (
|
|
<div className="flex items-center">
|
|
<Label className="w-32 shrink-0 text-lg">Failure Reason</Label>
|
|
<Textarea
|
|
rows={5}
|
|
value={JSON.stringify(task.failure_reason, null, 2)}
|
|
readOnly
|
|
/>
|
|
</div>
|
|
) : null;
|
|
|
|
return (
|
|
<div className="flex flex-col gap-8">
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-4">
|
|
<span className="text-lg">{taskId}</span>
|
|
{taskId && <TaskInfo id={taskId} />}
|
|
</div>
|
|
{taskIsRunningOrQueued && (
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<Button variant="destructive">Cancel</Button>
|
|
</DialogTrigger>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>Are you sure?</DialogTitle>
|
|
<DialogDescription>
|
|
Are you sure you want to cancel this task?
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<DialogFooter>
|
|
<DialogClose asChild>
|
|
<Button variant="secondary">Back</Button>
|
|
</DialogClose>
|
|
<Button
|
|
variant="destructive"
|
|
onClick={() => {
|
|
cancelTaskMutation.mutate();
|
|
}}
|
|
disabled={cancelTaskMutation.isPending}
|
|
>
|
|
{cancelTaskMutation.isPending && (
|
|
<ReloadIcon className="mr-2 h-4 w-4 animate-spin" />
|
|
)}
|
|
Cancel Task
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)}
|
|
</div>
|
|
{taskIsLoading ? (
|
|
<div className="flex items-center gap-2">
|
|
<Skeleton className="h-32 w-32" />
|
|
<Skeleton className="h-32 w-full" />
|
|
</div>
|
|
) : (
|
|
<>
|
|
{extractedInformation}
|
|
{failureReason}
|
|
</>
|
|
)}
|
|
<div className="flex items-center justify-center">
|
|
<div className="inline-flex rounded border bg-muted p-1">
|
|
<NavLink
|
|
to="actions"
|
|
className={({ isActive }) => {
|
|
return cn(
|
|
"cursor-pointer rounded-md px-2 py-1 text-muted-foreground",
|
|
{
|
|
"bg-primary-foreground text-foreground": isActive,
|
|
},
|
|
);
|
|
}}
|
|
>
|
|
Actions
|
|
</NavLink>
|
|
<NavLink
|
|
to="recording"
|
|
className={({ isActive }) => {
|
|
return cn(
|
|
"cursor-pointer rounded-md px-2 py-1 text-muted-foreground",
|
|
{
|
|
"bg-primary-foreground text-foreground": isActive,
|
|
},
|
|
);
|
|
}}
|
|
>
|
|
Recording
|
|
</NavLink>
|
|
<NavLink
|
|
to="parameters"
|
|
className={({ isActive }) => {
|
|
return cn(
|
|
"cursor-pointer rounded-md px-2 py-1 text-muted-foreground",
|
|
{
|
|
"bg-primary-foreground text-foreground": isActive,
|
|
},
|
|
);
|
|
}}
|
|
>
|
|
Parameters
|
|
</NavLink>
|
|
<NavLink
|
|
to="diagnostics"
|
|
className={({ isActive }) => {
|
|
return cn(
|
|
"cursor-pointer rounded-md px-2 py-1 text-muted-foreground",
|
|
{
|
|
"bg-primary-foreground text-foreground": isActive,
|
|
},
|
|
);
|
|
}}
|
|
>
|
|
Diagnostics
|
|
</NavLink>
|
|
</div>
|
|
</div>
|
|
<Outlet />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export { TaskDetails };
|