Show downloaded files in workflow run (#1321)
This commit is contained in:
@@ -206,6 +206,7 @@ export type WorkflowRunStatusApiResponse = {
|
||||
recording_url: string | null;
|
||||
outputs: Record<string, unknown> | null;
|
||||
failure_reason: string | null;
|
||||
downloaded_file_urls: Array<string> | null;
|
||||
};
|
||||
|
||||
export type TaskGenerationApiResponse = {
|
||||
|
||||
@@ -49,6 +49,7 @@ import {
|
||||
import { cn } from "@/util/utils";
|
||||
import {
|
||||
CopyIcon,
|
||||
FileIcon,
|
||||
Pencil2Icon,
|
||||
PlayIcon,
|
||||
ReaderIcon,
|
||||
@@ -376,6 +377,8 @@ function WorkflowRun() {
|
||||
</TableRow>
|
||||
);
|
||||
|
||||
const fileUrls = workflowRun?.downloaded_file_urls ?? [];
|
||||
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<header className="flex justify-between">
|
||||
@@ -625,6 +628,29 @@ function WorkflowRun() {
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
{workflowRunIsFinalized && (
|
||||
<div className="space-y-4">
|
||||
<header>
|
||||
<h2 className="text-lg font-semibold">Downloaded Files</h2>
|
||||
</header>
|
||||
<div className="space-y-2">
|
||||
{fileUrls.length > 0 ? (
|
||||
fileUrls.map((url) => {
|
||||
return (
|
||||
<div key={url} className="flex gap-2">
|
||||
<FileIcon className="size-6" />
|
||||
<a href={url} className="underline underline-offset-4">
|
||||
<span>{url}</span>
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
})
|
||||
) : (
|
||||
<div>No files downloaded</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
{Object.entries(parameters).length > 0 && (
|
||||
<div className="space-y-4">
|
||||
<header>
|
||||
|
||||
Reference in New Issue
Block a user