Spaces:
Sleeping
Sleeping
File size: 5,684 Bytes
05c5ed5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | "use client";
import { ReactNode, useMemo, useState } from "react";
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "ui/dialog";
import { NodeRuntimeHistory } from "lib/ai/workflow/workflow.interface";
import { Badge } from "ui/badge";
import {
CheckIcon,
CopyIcon,
Loader2Icon,
TriangleAlertIcon,
} from "lucide-react";
import JsonView from "ui/json-view";
import { useCopy } from "@/hooks/use-copy";
import { Button } from "ui/button";
import { cn, errorToString } from "lib/utils";
import { Alert, AlertDescription, AlertTitle } from "ui/alert";
import { useTranslations } from "next-intl";
export function NodeResultPopup({
history,
children,
disabled,
}: {
history: Pick<
NodeRuntimeHistory,
"name" | "status" | "startedAt" | "endedAt" | "error" | "result"
>;
children: ReactNode;
disabled?: boolean;
}) {
const { copy, copied } = useCopy();
const t = useTranslations();
const [tab, setTab] = useState<"input" | "output">("output");
const duration = useMemo(() => {
if (history.endedAt) {
return `${((history.endedAt - history.startedAt) / 1000).toFixed(3)}s`;
}
return null;
}, [history.endedAt, history.startedAt]);
return (
<Dialog open={disabled ? false : undefined}>
<DialogTrigger asChild>{children}</DialogTrigger>
<DialogContent className="min-w-[40vw] h-[70vh] max-w-[40vw] overflow-y-auto flex flex-col">
<DialogHeader>
<DialogTitle className="flex items-center gap-2">
{history.name}
</DialogTitle>
<DialogDescription className="sr-only">
{t("Common.result")}
</DialogDescription>
</DialogHeader>
<div className="w-full flex flex-col flex-1">
<div className="flex items-center text-sm gap-12 my-8">
<div>
<p className="mb-2 text-muted-foreground">{t("Common.status")}</p>
<Badge
className="font-semibold"
variant={
history.status === "fail"
? "destructive"
: history.status === "running"
? "secondary"
: "default"
}
>
{history.status === "fail" ? (
<TriangleAlertIcon className="size-3" />
) : history.status === "running" ? (
<Loader2Icon className="size-3 animate-spin" />
) : (
<CheckIcon className="size-3" />
)}
{history.status}
</Badge>
</div>
<div>
<p className="text-muted-foreground mb-2">
{t("Common.startedAt")}
</p>
<p>{new Date(history.startedAt).toLocaleString()}</p>
</div>
<div>
<p className="text-muted-foreground mb-2">
{t("Common.duration")}
</p>
<p>{history.status === "running" ? "N/A" : duration}</p>
</div>
</div>
<div className="w-full h-full flex flex-col gap-2">
<div className="flex items-center relative">
<div className="absolute left-0 top-0 border-b w-full h-full pointer-events-none" />
<Button
key="input"
variant="ghost"
className={cn(
"rounded-none",
tab == "input" && "border-b border-primary",
)}
onClick={() => setTab("input")}
>
input
</Button>
<Button
key="output"
variant="ghost"
className={cn(
"rounded-none",
tab == "output" && "border-b border-primary",
)}
onClick={() => setTab("output")}
>
output
</Button>
</div>
<div className="flex flex-col gap-2 w-full p-4 pt-2 min-w-0">
{tab == "output" && history.status === "fail" ? null : (
<>
<Button
variant="ghost"
size="icon"
className="ml-auto"
onClick={() =>
copy(
JSON.stringify(
tab == "input"
? history.result?.input
: history.result?.output,
),
)
}
>
{copied ? (
<CheckIcon className="size-3" />
) : (
<CopyIcon className="size-3" />
)}
</Button>
</>
)}
{tab == "output" && history.status === "fail" ? (
<Alert variant="destructive" className="flex flex-col gap-2">
<AlertTitle>Error</AlertTitle>
<AlertDescription>
{errorToString(history.error)}
</AlertDescription>
</Alert>
) : (
<JsonView
initialExpandDepth={4}
data={
tab == "input"
? history.result?.input
: history.result?.output
}
/>
)}
</div>
</div>
</div>
</DialogContent>
</Dialog>
);
}
|