Update setup/settings flow for runtime

This commit is contained in:
Will Chen
2025-04-12 23:53:38 -07:00
parent 3074634c88
commit 6a4f538879
7 changed files with 498 additions and 154 deletions

View File

@@ -20,7 +20,7 @@ export default function HomePage() {
const search = useSearch({ from: "/" });
const setSelectedAppId = useSetAtom(selectedAppIdAtom);
const { refreshApps } = useLoadApps();
const { settings, isAnyProviderSetup, updateSettings } = useSettings();
const { settings, isAnyProviderSetup } = useSettings();
const setIsPreviewOpen = useSetAtom(isPreviewOpenAtom);
const [isLoading, setIsLoading] = useState(false);
const { streamMessage } = useStreamChat();
@@ -35,10 +35,6 @@ export default function HomePage() {
}
}, [appId, navigate]);
const handleSetRuntimeMode = async (mode: RuntimeMode) => {
await updateSettings({ runtimeMode: mode });
};
const handleSubmit = async () => {
if (!inputValue.trim()) return;
@@ -90,7 +86,7 @@ export default function HomePage() {
// Runtime Setup Flow
// Render this only if runtimeMode is not set in settings
if (settings?.runtimeMode === "unset") {
return <SetupRuntimeFlow onRuntimeSelected={handleSetRuntimeMode} />;
return <SetupRuntimeFlow />;
}
// Main Home Page Content (Rendered only if runtimeMode is set)

View File

@@ -1,4 +1,4 @@
import { useState } from "react";
import { useState, useEffect } from "react";
import { useTheme } from "../contexts/ThemeContext";
import { ProviderSettingsGrid } from "@/components/ProviderSettings";
import ConfirmationDialog from "@/components/ConfirmationDialog";
@@ -6,96 +6,8 @@ import { IpcClient } from "@/ipc/ipc_client";
import { showSuccess, showError } from "@/lib/toast";
import { useSettings } from "@/hooks/useSettings";
import { RuntimeMode } from "@/lib/schemas";
// Helper component for runtime option buttons
function RuntimeOptionButton({
title,
description,
badge,
warning,
isSelected,
isLoading,
onClick,
disabled,
}: {
title: string;
description: string;
badge?: string;
warning?: string;
isSelected: boolean;
isLoading: boolean;
onClick: () => void;
disabled: boolean;
}) {
return (
<button
onClick={onClick}
disabled={disabled || isSelected}
className={`w-full justify-start p-6 h-auto text-left relative rounded-lg border transition-colors duration-150 group
${
isSelected
? "border-blue-500 dark:border-blue-400 bg-blue-50 dark:bg-gray-700 ring-2 ring-blue-300 dark:ring-blue-600"
: "bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-700/50"
}
${
disabled && !isSelected
? "opacity-50 cursor-not-allowed"
: "cursor-pointer"
}
`}
>
{isLoading && (
<div className="absolute right-4 top-1/2 -translate-y-1/2">
{/* Inline SVG Spinner */}
<svg
className="animate-spin h-5 w-5 text-gray-500 dark:text-gray-400"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
>
<circle
className="opacity-25"
cx="12"
cy="12"
r="10"
stroke="currentColor"
strokeWidth="4"
></circle>
<path
className="opacity-75"
fill="currentColor"
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
></path>
</svg>
</div>
)}
{badge && (
<span className="absolute top-2 right-2 bg-blue-100 text-blue-800 text-xs font-medium px-2 py-0.5 rounded-full group-hover:bg-blue-200 dark:group-hover:bg-blue-900">
{badge}
</span>
)}
<div>
<p
className={`font-medium text-base ${
isSelected
? "text-blue-800 dark:text-blue-100"
: "text-gray-900 dark:text-white"
}`}
>
{title}
</p>
<p className="text-sm text-gray-500 dark:text-gray-400 mt-1">
{description}
</p>
{warning && (
<p className="mt-2 text-wrap break-word text-red-600 dark:text-red-400 bg-red-100 dark:bg-red-900 px-2 py-1 rounded-md text-xs">
{warning}
</p>
)}
</div>
</button>
);
}
import { Button } from "@/components/ui/button";
import { ExternalLink } from "lucide-react";
export default function SettingsPage() {
const { theme, setTheme } = useTheme();
@@ -107,7 +19,28 @@ export default function SettingsPage() {
} = useSettings();
const [isResetDialogOpen, setIsResetDialogOpen] = useState(false);
const [isResetting, setIsResetting] = useState(false);
const [isUpdatingRuntime, setIsUpdatingRuntime] = useState(false);
const [isUpdatingRuntime, setIsUpdatingRuntime] = useState<
RuntimeMode | "check" | null
>(null);
const [showNodeInstallPrompt, setShowNodeInstallPrompt] = useState(false);
const [nodeVersion, setNodeVersion] = useState<string | null>(null);
const [npmVersion, setNpmVersion] = useState<string | null>(null);
const [downloadClicked, setDownloadClicked] = useState(false);
useEffect(() => {
const checkNode = async () => {
try {
const status = await IpcClient.getInstance().getNodejsStatus();
setNodeVersion(status.nodeVersion);
setNpmVersion(status.npmVersion);
} catch (error) {
console.error("Failed to check Node.js status:", error);
setNodeVersion(null);
setNpmVersion(null);
}
};
checkNode();
}, []);
const handleResetEverything = async () => {
setIsResetting(true);
@@ -132,7 +65,10 @@ export default function SettingsPage() {
const handleRuntimeChange = async (newMode: RuntimeMode) => {
if (newMode === settings?.runtimeMode || isUpdatingRuntime) return;
setIsUpdatingRuntime(true);
setIsUpdatingRuntime(newMode);
setShowNodeInstallPrompt(false);
setDownloadClicked(false);
try {
await updateSettings({ runtimeMode: newMode });
showSuccess("Runtime mode updated successfully.");
@@ -144,7 +80,34 @@ export default function SettingsPage() {
: "Failed to update runtime mode."
);
} finally {
setIsUpdatingRuntime(false);
setIsUpdatingRuntime(null);
}
};
const handleLocalNodeClick = async () => {
if (isUpdatingRuntime) return;
if (nodeVersion && npmVersion) {
handleRuntimeChange("local-node");
return;
}
setIsUpdatingRuntime("check");
try {
const status = await IpcClient.getInstance().getNodejsStatus();
setNodeVersion(status.nodeVersion);
setNpmVersion(status.npmVersion);
if (status.nodeVersion && status.npmVersion) {
handleRuntimeChange("local-node");
} else {
setShowNodeInstallPrompt(true);
setIsUpdatingRuntime(null);
}
} catch (error) {
console.error("Failed to check Node.js status on click:", error);
setShowNodeInstallPrompt(true);
setIsUpdatingRuntime(null);
showError("Could not verify Node.js installation.");
}
};
@@ -201,8 +164,8 @@ export default function SettingsPage() {
Runtime Environment
</h2>
<p className="text-sm text-gray-500 dark:text-gray-400 mb-4">
Choose how app code is executed. This affects performance and
security.
Choose how app code is executed. This affects performance,
security, and capabilities.
</p>
{settingsLoading ? (
@@ -235,28 +198,207 @@ export default function SettingsPage() {
</p>
) : (
<div className="space-y-4">
<RuntimeOptionButton
title="Sandboxed Runtime"
description="Code runs inside a browser sandbox. Safer, limited system access."
badge="Recommended for beginners"
isSelected={currentRuntimeMode === "web-sandbox"}
isLoading={
<Button
variant={
currentRuntimeMode === "web-sandbox" ? "default" : "outline"
}
className={`disabled:opacity-90 w-full justify-start p-4 h-auto text-left relative group ${
currentRuntimeMode === "web-sandbox"
? "border-blue-500 dark:border-blue-400 bg-blue-50 dark:bg-gray-700 ring-2 ring-blue-300 dark:ring-blue-600"
: "bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-700/50"
} ${
isUpdatingRuntime && currentRuntimeMode !== "web-sandbox"
}
? "opacity-50 cursor-not-allowed"
: "cursor-pointer"
}`}
onClick={() => handleRuntimeChange("web-sandbox")}
disabled={isUpdatingRuntime}
/>
<RuntimeOptionButton
title="Local Node.js Runtime"
description="Code runs using Node.js on your computer. Full system access."
warning="Warning: Running AI-generated code directly on your computer can be risky. Only use code from trusted sources."
isSelected={currentRuntimeMode === "local-node"}
isLoading={
isUpdatingRuntime && currentRuntimeMode !== "local-node"
disabled={
isUpdatingRuntime !== null ||
currentRuntimeMode === "web-sandbox"
}
onClick={() => handleRuntimeChange("local-node")}
disabled={isUpdatingRuntime}
/>
>
{isUpdatingRuntime === "web-sandbox" && (
<svg
className="animate-spin h-5 w-5 absolute right-4 top-1/2 -translate-y-1/2 text-gray-500 dark:text-gray-400"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
>
<circle
className="opacity-25"
cx="12"
cy="12"
r="10"
stroke="currentColor"
strokeWidth="4"
></circle>
<path
className="opacity-75"
fill="currentColor"
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
></path>
</svg>
)}
<span className="absolute top-2 right-2 bg-blue-100 text-blue-800 text-xs font-medium px-2 py-0.5 rounded-full group-hover:bg-blue-200 dark:group-hover:bg-blue-900">
Recommended for beginners
</span>
<div>
<p
className={`font-medium text-base ${
currentRuntimeMode === "web-sandbox"
? "text-blue-800 dark:text-blue-100"
: "text-gray-900 dark:text-white"
}`}
>
Sandboxed Mode
</p>
<div className="text-sm text-gray-500 dark:text-gray-400 mt-1">
<p>
Apps run in a protected environment within your browser.
</p>
<p>Does not support advanced apps.</p>
</div>
</div>
</Button>
<Button
variant={
currentRuntimeMode === "local-node" ? "default" : "outline"
}
className={`disabled:opacity-90 w-full justify-start p-4 h-auto text-left relative group flex flex-col items-start ${
currentRuntimeMode === "local-node"
? "border-blue-500 dark:border-blue-400 bg-blue-50 dark:bg-gray-700 ring-2 ring-blue-300 dark:ring-blue-600"
: "bg-white dark:bg-gray-800 border-gray-200 dark:border-gray-700 hover:bg-gray-50 dark:hover:bg-gray-700/50"
} ${
isUpdatingRuntime && currentRuntimeMode !== "local-node"
? "opacity-50 cursor-not-allowed"
: "cursor-pointer"
}`}
onClick={handleLocalNodeClick}
disabled={
isUpdatingRuntime !== null ||
currentRuntimeMode === "local-node"
}
>
{(isUpdatingRuntime === "check" ||
isUpdatingRuntime === "local-node") && (
<svg
className="animate-spin h-5 w-5 absolute right-4 top-6 text-gray-500 dark:text-gray-400"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
>
<circle
className="opacity-25"
cx="12"
cy="12"
r="10"
stroke="currentColor"
strokeWidth="4"
></circle>
<path
className="opacity-75"
fill="currentColor"
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
></path>
</svg>
)}
<span className="absolute top-2 right-2 bg-blue-100 text-blue-800 text-xs font-medium px-2 py-0.5 rounded-full group-hover:bg-blue-200 dark:group-hover:bg-blue-900">
Best for power users
</span>
<div className="w-full">
<p
className={`font-medium text-base ${
currentRuntimeMode === "local-node"
? "text-blue-800 dark:text-blue-100"
: "text-gray-900 dark:text-white"
}`}
>
Full Access Mode
</p>
<div className="text-sm text-gray-500 dark:text-gray-400 mt-1 w-full">
<p>
Apps run directly on your computer with full access to
your system.
</p>
<p>
Supports advanced apps that require server-side
capabilities.
</p>
{showNodeInstallPrompt && (
<div className="mt-4 p-4 border border-yellow-300 bg-yellow-50 dark:bg-yellow-900/30 rounded-md text-yellow-800 dark:text-yellow-200 w-full">
<p className="font-semibold">Install Node.js</p>
<p className="mt-1 text-xs">
This mode requires Node.js and npm to be installed
and accessible in your system's PATH.
</p>
{!downloadClicked ? (
<Button
variant="link"
size="sm"
className="p-0 h-auto mt-2 text-blue-600 dark:text-blue-400 hover:underline flex items-center"
onClick={(e) => {
e.stopPropagation();
IpcClient.getInstance().openExternalUrl(
"https://nodejs.org/en/download"
);
setDownloadClicked(true);
}}
>
Download Node.js{" "}
<ExternalLink className="w-3 h-3 ml-1" />
</Button>
) : (
<p className="mt-2 text-xs text-gray-600 dark:text-gray-400">
Node.js download page opened.
</p>
)}
<Button
variant="default"
size="sm"
className="mt-3 w-full"
onClick={(e) => {
e.stopPropagation();
handleRuntimeChange("local-node");
}}
disabled={isUpdatingRuntime === "local-node"}
>
{isUpdatingRuntime === "local-node" ? (
<svg
className="animate-spin h-4 w-4 mr-2"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
>
<circle
className="opacity-25"
cx="12"
cy="12"
r="10"
stroke="currentColor"
strokeWidth="4"
></circle>
<path
className="opacity-75"
fill="currentColor"
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
></path>
</svg>
) : null}
Continue - I have installed Node.js
</Button>
</div>
)}
<p className="mt-4 text-wrap break-words text-red-600 dark:text-red-400 bg-red-100 dark:bg-red-900/50 px-2 py-1 rounded-md text-xs">
Warning: This mode runs AI-generated code directly on
your computer, which can be risky. Only use code from
trusted sources or review it carefully.
</p>
</div>
</div>
</Button>
</div>
)}
</div>