Skip to content

Commit

Permalink
Make stream zoomable (#961)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Oct 11, 2024
1 parent 631023d commit 851b84c
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 3 deletions.
2 changes: 1 addition & 1 deletion skyvern-frontend/src/components/ZoomableImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function ZoomableImage(props: HTMLImageElementProps) {
<img
{...props}
onClick={openModal}
className={clsx("cursor-pointer object-contain", props.className)}
className={clsx("cursor-zoom-in object-contain", props.className)}
/>
{modalOpen && (
<div
Expand Down
3 changes: 2 additions & 1 deletion skyvern-frontend/src/routes/tasks/detail/TaskActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { Skeleton } from "@/components/ui/skeleton";
import { toast } from "@/components/ui/use-toast";
import { envCredential } from "@/util/env";
import { statusIsNotFinalized, statusIsRunningOrQueued } from "../types";
import { ZoomableImage } from "@/components/ZoomableImage";

type StreamMessage = {
task_id: string;
Expand Down Expand Up @@ -227,7 +228,7 @@ function TaskActions() {
if (task?.status === Status.Running && streamImgSrc.length > 0) {
return (
<div className="h-full w-full">
<img src={`data:image/png;base64,${streamImgSrc}`} />
<ZoomableImage src={`data:image/png;base64,${streamImgSrc}`} />
</div>
);
}
Expand Down
3 changes: 2 additions & 1 deletion skyvern-frontend/src/routes/workflows/WorkflowRun.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import { useWorkflowQuery } from "./hooks/useWorkflowQuery";
import fetchToCurl from "fetch-to-curl";
import { useApiCredential } from "@/hooks/useApiCredential";
import { copyText } from "@/util/copyText";
import { ZoomableImage } from "@/components/ZoomableImage";

type StreamMessage = {
task_id: string;
Expand Down Expand Up @@ -214,7 +215,7 @@ function WorkflowRun() {
if (workflowRun?.status === Status.Running && streamImgSrc.length > 0) {
return (
<div className="h-full w-full">
<img src={`data:image/png;base64,${streamImgSrc}`} />
<ZoomableImage src={`data:image/png;base64,${streamImgSrc}`} />
</div>
);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
import { getClient } from "@/api/AxiosClient";
import { GarbageIcon } from "@/components/icons/GarbageIcon";
import { Button } from "@/components/ui/button";
import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog";
import {
Tooltip,
TooltipContent,
TooltipProvider,
TooltipTrigger,
} from "@/components/ui/tooltip";
import { toast } from "@/components/ui/use-toast";
import { useCredentialGetter } from "@/hooks/useCredentialGetter";
import { ReloadIcon } from "@radix-ui/react-icons";
import { useMutation, useQueryClient } from "@tanstack/react-query";
import { AxiosError } from "axios";

type Props = {
id: string;
};

function DeleteWorkflowButton({ id }: Props) {
const credentialGetter = useCredentialGetter();
const queryClient = useQueryClient();

const deleteWorkflowMutation = useMutation({
mutationFn: async (id: string) => {
const client = await getClient(credentialGetter);
return client.delete(`/workflows/${id}`);
},
onSuccess: () => {
queryClient.invalidateQueries({
queryKey: ["workflows"],
});
},
onError: (error: AxiosError) => {
toast({
variant: "destructive",
title: "Failed to delete workflow",
description: error.message,
});
},
});

return (
<Dialog>
<TooltipProvider>
<Tooltip>
<TooltipTrigger asChild>
<DialogTrigger asChild>
<Button size="icon" variant="outline">
<GarbageIcon className="h-4 w-4" />
</Button>
</DialogTrigger>
</TooltipTrigger>
<TooltipContent>Delete Workflow</TooltipContent>
</Tooltip>
</TooltipProvider>
<DialogContent onCloseAutoFocus={(e) => e.preventDefault()}>
<DialogHeader>
<DialogTitle>Are you sure?</DialogTitle>
<DialogDescription>This workflow will be deleted.</DialogDescription>
</DialogHeader>
<DialogFooter>
<DialogClose asChild>
<Button variant="secondary">Cancel</Button>
</DialogClose>
<Button
variant="destructive"
onClick={() => {
deleteWorkflowMutation.mutate(id);
}}
disabled={deleteWorkflowMutation.isPending}
>
{deleteWorkflowMutation.isPending && (
<ReloadIcon className="mr-2 h-4 w-4 animate-spin" />
)}
Delete
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
);
}

export { DeleteWorkflowButton };

0 comments on commit 851b84c

Please sign in to comment.