Jon/sky 5838 launch the power restart feature for all users with a cooldown (#3133)

This commit is contained in:
Jonathan Dobson
2025-08-07 17:13:02 -04:00
committed by GitHub
parent 4c219b7f05
commit b0e29834eb
4 changed files with 119 additions and 35 deletions

View File

@@ -8,7 +8,7 @@ import type {
WorkflowRunStatusApiResponse,
} from "@/api/types";
import { Button } from "@/components/ui/button";
import { Skeleton } from "@/components/ui/skeleton";
import { AnimatedWave } from "@/components/AnimatedWave";
import { toast } from "@/components/ui/use-toast";
import { useCredentialGetter } from "@/hooks/useCredentialGetter";
import { statusIsNotFinalized } from "@/routes/tasks/types";
@@ -21,6 +21,7 @@ import {
} from "@/util/env";
import { cn } from "@/util/utils";
import { RotateThrough } from "./RotateThrough";
import "./browser-stream.css";
interface CommandTakeControl {
@@ -368,8 +369,18 @@ function BrowserStream({
</div>
)}
{!isVncConnected && (
<div className="absolute left-0 top-0 flex h-full w-full items-center justify-center bg-black">
<Skeleton className="aspect-[16/9] h-auto max-h-full w-full max-w-full rounded-lg object-cover" />
<div className="flex h-full w-full flex-col items-center justify-center gap-2 pb-2 pt-4 text-sm text-slate-400">
<RotateThrough interval={7 * 1000}>
<span>Hm, working on the connection...</span>
<span>Hang tight, we're almost there...</span>
<span>Just a moment...</span>
<span>Backpropagating...</span>
<span>Attention is all I need...</span>
<span>Consulting the manual...</span>
<span>Looking for the bat phone...</span>
<span>Where's Shu?...</span>
</RotateThrough>
<AnimatedWave text=".‧₊˚ ⋅ ? ✨ ?★ ‧₊˚ ⋅" />
</div>
)}
</div>

View File

@@ -18,7 +18,6 @@ import {
import { flushSync } from "react-dom";
import Draggable from "react-draggable";
import { OrgWalled } from "./Orgwalled";
import {
Tooltip,
TooltipContent,
@@ -628,11 +627,7 @@ function FloatingWindow({
onClick={toggleMaximized}
/>
)}
{showPowerButton && (
<OrgWalled className="flex items-center justify-center">
<PowerButton onClick={() => cycle()} />
</OrgWalled>
)}
{showPowerButton && <PowerButton onClick={() => cycle()} />}
</div>
<div className="ml-auto">{title}</div>
{showReloadButton && (

View File

@@ -0,0 +1,56 @@
import { ReactNode, useEffect, useState } from "react";
interface RotateThroughProps {
children: ReactNode[];
interval: number; // milliseconds
className?: string;
}
function RotateThrough({
children,
interval,
className = "",
}: RotateThroughProps) {
const [currentIndex, setCurrentIndex] = useState(0);
const [isAnimating, setIsAnimating] = useState(false);
const childrenArray = Array.isArray(children) ? children : [children];
useEffect(() => {
if (childrenArray.length <= 1) return;
const timer = setInterval(() => {
setIsAnimating(true);
// After a short animation delay, change the content
setTimeout(() => {
setCurrentIndex((prevIndex) =>
prevIndex === childrenArray.length - 1 ? 0 : prevIndex + 1,
);
setIsAnimating(false);
}, 150); // Animation duration
}, interval);
return () => clearInterval(timer);
}, [childrenArray.length, interval]);
if (childrenArray.length === 0) {
return null;
}
if (childrenArray.length === 1) {
return <div className={className}>{childrenArray[0]}</div>;
}
return (
<div
className={`transition-all duration-150 ease-in-out ${
isAnimating ? "scale-95 opacity-0" : "scale-100 opacity-100"
} ${className}`}
>
{childrenArray[currentIndex]}
</div>
);
}
export { RotateThrough };

View File

@@ -20,7 +20,6 @@ import {
DialogTitle,
DialogClose,
} from "@/components/ui/dialog";
import { Skeleton } from "@/components/ui/skeleton";
import { toast } from "@/components/ui/use-toast";
import { useCredentialGetter } from "@/hooks/useCredentialGetter";
import { useMountEffect } from "@/hooks/useMountEffect";
@@ -35,11 +34,16 @@ import { FlowRenderer } from "./FlowRenderer";
import { getElements } from "./workflowEditorUtils";
import { getInitialParameters } from "./utils";
const Constants = {
NewBrowserCooldown: 30000,
} as const;
function WorkflowDebugger() {
const { blockLabel, workflowPermanentId } = useParams();
const [openDialogue, setOpenDialogue] = useState(false);
const [activeDebugSession, setActiveDebugSession] =
useState<DebugSessionApiResponse | null>(null);
const [showPowerButton, setShowPowerButton] = useState(true);
const credentialGetter = useCredentialGetter();
const queryClient = useQueryClient();
const [shouldFetchDebugSession, setShouldFetchDebugSession] = useState(false);
@@ -78,6 +82,19 @@ function WorkflowDebugger() {
}
});
const afterCycleBrowser = () => {
setOpenDialogue(false);
setShowPowerButton(false);
if (powerButtonTimeoutRef.current) {
clearTimeout(powerButtonTimeoutRef.current);
}
powerButtonTimeoutRef.current = setTimeout(() => {
setShowPowerButton(true);
}, Constants.NewBrowserCooldown);
};
const cycleBrowser = useMutation({
mutationFn: async (id: string) => {
const client = await getClient(credentialGetter, "sans-api-v1");
@@ -97,7 +114,7 @@ function WorkflowDebugger() {
description: "Your browser has been cycled.",
});
setOpenDialogue(false);
afterCycleBrowser();
},
onError: (error: AxiosError) => {
toast({
@@ -105,11 +122,13 @@ function WorkflowDebugger() {
title: "Failed to cycle browser",
description: error.message,
});
setOpenDialogue(false);
afterCycleBrowser();
},
});
const intervalRef = useRef<NodeJS.Timeout | null>(null);
const powerButtonTimeoutRef = useRef<NodeJS.Timeout | null>(null);
useEffect(() => {
if (
@@ -225,29 +244,32 @@ function WorkflowDebugger() {
/>
</ReactFlowProvider>
{activeDebugSession && (
<FloatingWindow
title={browserTitle}
bounded={false}
initialWidth={512}
initialHeight={360}
showMaximizeButton={true}
showMinimizeButton={true}
showPowerButton={blockLabel === undefined}
showReloadButton={true}
// --
onCycle={handleOnCycle}
>
{activeDebugSession && activeDebugSession.browser_session_id ? (
<BrowserStream
interactive={interactor === "human"}
browserSessionId={activeDebugSession.browser_session_id}
/>
) : (
<Skeleton className="h-full w-full" />
)}
</FloatingWindow>
)}
<FloatingWindow
title={browserTitle}
bounded={false}
initialWidth={512}
initialHeight={360}
showMaximizeButton={true}
showMinimizeButton={true}
showPowerButton={blockLabel === undefined && showPowerButton}
showReloadButton={true}
// --
onCycle={handleOnCycle}
>
{activeDebugSession &&
activeDebugSession.browser_session_id &&
!cycleBrowser.isPending ? (
<BrowserStream
interactive={interactor === "human"}
browserSessionId={activeDebugSession.browser_session_id}
/>
) : (
<div className="flex h-full w-full flex-col items-center justify-center gap-2 pb-2 pt-4 text-sm text-slate-400">
Connecting to your browser...
<AnimatedWave text=".‧₊˚ ⋅ ✨★ ‧₊˚ ⋅" />
</div>
)}
</FloatingWindow>
</div>
);
}