Files
Dorod-Sky/skyvern-frontend/src/routes/workflows/WorkflowsPageBanner.tsx
Shuchang Zheng d34a403c8f UI for workflow templates (#1715)
Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
2025-02-04 16:40:55 +03:00

75 lines
2.5 KiB
TypeScript

import { Button } from "@/components/ui/button";
import { PlusIcon, ReloadIcon } from "@radix-ui/react-icons";
import { useCreateWorkflowMutation } from "./hooks/useCreateWorkflowMutation";
import { ImportWorkflowButton } from "./ImportWorkflowButton";
import { WorkflowCreateYAMLRequest } from "./types/workflowYamlTypes";
const emptyWorkflowRequest: WorkflowCreateYAMLRequest = {
title: "New Workflow",
description: "",
workflow_definition: {
blocks: [],
parameters: [],
},
};
function WorkflowsPageBanner() {
const createNewWorkflowMutation = useCreateWorkflowMutation();
return (
<div className="space-y-8 bg-slate-elevation1 p-12">
<div className="flex justify-center text-3xl font-bold">
<h1>Workflows</h1>
</div>
<div className="flex justify-center gap-4">
<ImportWorkflowButton />
<Button
disabled={createNewWorkflowMutation.isPending}
onClick={() => {
createNewWorkflowMutation.mutate(emptyWorkflowRequest);
}}
>
{createNewWorkflowMutation.isPending ? (
<ReloadIcon className="mr-2 h-4 w-4 animate-spin" />
) : (
<PlusIcon className="mr-2 h-4 w-4" />
)}
Create Workflow
</Button>
</div>
<div className="flex">
<div className="mx-auto flex flex-col gap-3">
<div className="font-bold">
Workflows let you create complex web-agents that can:
</div>
<div className="flex gap-2">
<div className="flex size-6 items-center justify-center rounded-full bg-primary text-primary-foreground">
1
</div>
<div>Save browser sessions and re-use them in subsequent runs</div>
</div>
<div className="flex gap-2">
<div className="flex size-6 items-center justify-center rounded-full bg-primary text-primary-foreground">
2
</div>
<div>
Connect multiple agents together to carry out complex objectives
</div>
</div>
<div className="flex gap-2">
<div className="flex size-6 items-center justify-center rounded-full bg-primary text-primary-foreground">
3
</div>
<div>
Allow Skyvern agents to execute non-browser tasks such as sending
emails, or parsing PDFs
</div>
</div>
</div>
</div>
</div>
);
}
export { WorkflowsPageBanner };