- [x] add e2e test - happy case (make sure it clears selection and next prompt is empty, and preview is cleared); de-selection case - [x] shim - old & new file - [x] upgrade path - [x] add docs - [x] add try-catch to parser script - [x] make it work for next.js - [x] extract npm package - [x] make sure plugin doesn't apply in prod
619 lines
20 KiB
TypeScript
619 lines
20 KiB
TypeScript
import {
|
|
selectedAppIdAtom,
|
|
appUrlAtom,
|
|
appOutputAtom,
|
|
previewErrorMessageAtom,
|
|
} from "@/atoms/appAtoms";
|
|
import { useAtomValue, useSetAtom, useAtom } from "jotai";
|
|
import { useEffect, useRef, useState } from "react";
|
|
import {
|
|
ArrowLeft,
|
|
ArrowRight,
|
|
RefreshCw,
|
|
ExternalLink,
|
|
Loader2,
|
|
X,
|
|
Sparkles,
|
|
ChevronDown,
|
|
Lightbulb,
|
|
ChevronRight,
|
|
MousePointerClick,
|
|
} from "lucide-react";
|
|
import { selectedChatIdAtom } from "@/atoms/chatAtoms";
|
|
import { IpcClient } from "@/ipc/ipc_client";
|
|
|
|
import { useLoadAppFile } from "@/hooks/useLoadAppFile";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { useStreamChat } from "@/hooks/useStreamChat";
|
|
import { selectedComponentPreviewAtom } from "@/atoms/previewAtoms";
|
|
import { ComponentSelection } from "@/ipc/ipc_types";
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger,
|
|
} from "@/components/ui/tooltip";
|
|
|
|
interface ErrorBannerProps {
|
|
error: string | undefined;
|
|
onDismiss: () => void;
|
|
onAIFix: () => void;
|
|
}
|
|
|
|
const ErrorBanner = ({ error, onDismiss, onAIFix }: ErrorBannerProps) => {
|
|
const [isCollapsed, setIsCollapsed] = useState(true);
|
|
const { isStreaming } = useStreamChat();
|
|
if (!error) return null;
|
|
|
|
const getTruncatedError = () => {
|
|
const firstLine = error.split("\n")[0];
|
|
const snippetLength = 200;
|
|
const snippet = error.substring(0, snippetLength);
|
|
return firstLine.length < snippet.length
|
|
? firstLine
|
|
: snippet + (snippet.length === snippetLength ? "..." : "");
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className="absolute top-2 left-2 right-2 z-10 bg-red-50 dark:bg-red-950 border border-red-200 dark:border-red-800 rounded-md shadow-sm p-2"
|
|
data-testid="preview-error-banner"
|
|
>
|
|
{/* Close button in top left */}
|
|
<button
|
|
onClick={onDismiss}
|
|
className="absolute top-1 left-1 p-1 hover:bg-red-100 dark:hover:bg-red-900 rounded"
|
|
>
|
|
<X size={14} className="text-red-500 dark:text-red-400" />
|
|
</button>
|
|
|
|
{/* Error message in the middle */}
|
|
<div className="px-6 py-1 text-sm">
|
|
<div
|
|
className="text-red-700 dark:text-red-300 text-wrap font-mono whitespace-pre-wrap break-words text-xs cursor-pointer flex gap-1 items-start"
|
|
onClick={() => setIsCollapsed(!isCollapsed)}
|
|
>
|
|
<ChevronRight
|
|
size={14}
|
|
className={`mt-0.5 transform transition-transform ${
|
|
isCollapsed ? "" : "rotate-90"
|
|
}`}
|
|
/>
|
|
{isCollapsed ? getTruncatedError() : error}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Tip message */}
|
|
<div className="mt-2 px-6">
|
|
<div className="relative p-2 bg-red-100 dark:bg-red-900 rounded-sm flex gap-1 items-center">
|
|
<div>
|
|
<Lightbulb size={16} className=" text-red-800 dark:text-red-300" />
|
|
</div>
|
|
<span className="text-sm text-red-700 dark:text-red-200">
|
|
<span className="font-medium">Tip: </span>Check if restarting the
|
|
app fixes the error.
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* AI Fix button at the bottom */}
|
|
<div className="mt-2 flex justify-end">
|
|
<button
|
|
disabled={isStreaming}
|
|
onClick={onAIFix}
|
|
className="cursor-pointer flex items-center space-x-1 px-2 py-0.5 bg-red-500 dark:bg-red-600 text-white rounded text-sm hover:bg-red-600 dark:hover:bg-red-700 disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
<Sparkles size={14} />
|
|
<span>Fix error with AI</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
// Preview iframe component
|
|
export const PreviewIframe = ({ loading }: { loading: boolean }) => {
|
|
const selectedAppId = useAtomValue(selectedAppIdAtom);
|
|
const { appUrl, originalUrl } = useAtomValue(appUrlAtom);
|
|
const setAppOutput = useSetAtom(appOutputAtom);
|
|
// State to trigger iframe reload
|
|
const [reloadKey, setReloadKey] = useState(0);
|
|
const [errorMessage, setErrorMessage] = useAtom(previewErrorMessageAtom);
|
|
const selectedChatId = useAtomValue(selectedChatIdAtom);
|
|
const { streamMessage } = useStreamChat();
|
|
const [availableRoutes, setAvailableRoutes] = useState<
|
|
Array<{ path: string; label: string }>
|
|
>([]);
|
|
|
|
// Load router related files to extract routes
|
|
const { content: routerContent } = useLoadAppFile(
|
|
selectedAppId,
|
|
"src/App.tsx",
|
|
);
|
|
|
|
// Effect to parse routes from the router file
|
|
useEffect(() => {
|
|
if (routerContent) {
|
|
try {
|
|
const routes: Array<{ path: string; label: string }> = [];
|
|
|
|
// Extract route imports and paths using regex for React Router syntax
|
|
// Match <Route path="/path">
|
|
const routePathsRegex = /<Route\s+(?:[^>]*\s+)?path=["']([^"']+)["']/g;
|
|
let match;
|
|
|
|
// Find all route paths in the router content
|
|
while ((match = routePathsRegex.exec(routerContent)) !== null) {
|
|
const path = match[1];
|
|
// Create a readable label from the path
|
|
const label =
|
|
path === "/"
|
|
? "Home"
|
|
: path
|
|
.split("/")
|
|
.filter((segment) => segment && !segment.startsWith(":"))
|
|
.pop()
|
|
?.replace(/[-_]/g, " ")
|
|
.replace(/^\w/, (c) => c.toUpperCase()) || path;
|
|
|
|
if (!routes.some((r) => r.path === path)) {
|
|
routes.push({ path, label });
|
|
}
|
|
}
|
|
|
|
setAvailableRoutes(routes);
|
|
} catch (e) {
|
|
console.error("Error parsing router file:", e);
|
|
}
|
|
}
|
|
}, [routerContent]);
|
|
|
|
// Navigation state
|
|
const [isComponentSelectorInitialized, setIsComponentSelectorInitialized] =
|
|
useState(false);
|
|
const [canGoBack, setCanGoBack] = useState(false);
|
|
const [canGoForward, setCanGoForward] = useState(false);
|
|
const [navigationHistory, setNavigationHistory] = useState<string[]>([]);
|
|
const [currentHistoryPosition, setCurrentHistoryPosition] = useState(0);
|
|
const [selectedComponentPreview, setSelectedComponentPreview] = useAtom(
|
|
selectedComponentPreviewAtom,
|
|
);
|
|
const iframeRef = useRef<HTMLIFrameElement>(null);
|
|
const [isPicking, setIsPicking] = useState(false);
|
|
|
|
// Deactivate component selector when selection is cleared
|
|
useEffect(() => {
|
|
if (!selectedComponentPreview) {
|
|
if (iframeRef.current?.contentWindow) {
|
|
iframeRef.current.contentWindow.postMessage(
|
|
{ type: "deactivate-dyad-component-selector" },
|
|
"*",
|
|
);
|
|
}
|
|
setIsPicking(false);
|
|
}
|
|
}, [selectedComponentPreview]);
|
|
|
|
// Add message listener for iframe errors and navigation events
|
|
useEffect(() => {
|
|
const handleMessage = (event: MessageEvent) => {
|
|
// Only handle messages from our iframe
|
|
if (event.source !== iframeRef.current?.contentWindow) {
|
|
return;
|
|
}
|
|
|
|
if (event.data?.type === "dyad-component-selector-initialized") {
|
|
setIsComponentSelectorInitialized(true);
|
|
return;
|
|
}
|
|
|
|
if (event.data?.type === "dyad-component-selected") {
|
|
console.log("Component picked:", event.data);
|
|
setSelectedComponentPreview(parseComponentSelection(event.data));
|
|
setIsPicking(false);
|
|
return;
|
|
}
|
|
|
|
const { type, payload } = event.data as {
|
|
type:
|
|
| "window-error"
|
|
| "unhandled-rejection"
|
|
| "iframe-sourcemapped-error"
|
|
| "build-error-report"
|
|
| "pushState"
|
|
| "replaceState";
|
|
payload?: {
|
|
message?: string;
|
|
stack?: string;
|
|
reason?: string;
|
|
newUrl?: string;
|
|
file?: string;
|
|
frame?: string;
|
|
};
|
|
};
|
|
|
|
if (
|
|
type === "window-error" ||
|
|
type === "unhandled-rejection" ||
|
|
type === "iframe-sourcemapped-error"
|
|
) {
|
|
const stack =
|
|
type === "iframe-sourcemapped-error"
|
|
? payload?.stack?.split("\n").slice(0, 1).join("\n")
|
|
: payload?.stack;
|
|
const errorMessage = `Error ${
|
|
payload?.message || payload?.reason
|
|
}\nStack trace: ${stack}`;
|
|
console.error("Iframe error:", errorMessage);
|
|
setErrorMessage(errorMessage);
|
|
setAppOutput((prev) => [
|
|
...prev,
|
|
{
|
|
message: `Iframe error: ${errorMessage}`,
|
|
type: "client-error",
|
|
appId: selectedAppId!,
|
|
timestamp: Date.now(),
|
|
},
|
|
]);
|
|
} else if (type === "build-error-report") {
|
|
console.debug(`Build error report: ${payload}`);
|
|
const errorMessage = `${payload?.message} from file ${payload?.file}.\n\nSource code:\n${payload?.frame}`;
|
|
setErrorMessage(errorMessage);
|
|
setAppOutput((prev) => [
|
|
...prev,
|
|
{
|
|
message: `Build error report: ${JSON.stringify(payload)}`,
|
|
type: "client-error",
|
|
appId: selectedAppId!,
|
|
timestamp: Date.now(),
|
|
},
|
|
]);
|
|
} else if (type === "pushState" || type === "replaceState") {
|
|
console.debug(`Navigation event: ${type}`, payload);
|
|
|
|
// Update navigation history based on the type of state change
|
|
if (type === "pushState" && payload?.newUrl) {
|
|
// For pushState, we trim any forward history and add the new URL
|
|
const newHistory = [
|
|
...navigationHistory.slice(0, currentHistoryPosition + 1),
|
|
payload.newUrl,
|
|
];
|
|
setNavigationHistory(newHistory);
|
|
setCurrentHistoryPosition(newHistory.length - 1);
|
|
} else if (type === "replaceState" && payload?.newUrl) {
|
|
// For replaceState, we replace the current URL
|
|
const newHistory = [...navigationHistory];
|
|
newHistory[currentHistoryPosition] = payload.newUrl;
|
|
setNavigationHistory(newHistory);
|
|
}
|
|
}
|
|
};
|
|
|
|
window.addEventListener("message", handleMessage);
|
|
return () => window.removeEventListener("message", handleMessage);
|
|
}, [
|
|
navigationHistory,
|
|
currentHistoryPosition,
|
|
selectedAppId,
|
|
errorMessage,
|
|
setErrorMessage,
|
|
setIsComponentSelectorInitialized,
|
|
setSelectedComponentPreview,
|
|
]);
|
|
|
|
useEffect(() => {
|
|
// Update navigation buttons state
|
|
setCanGoBack(currentHistoryPosition > 0);
|
|
setCanGoForward(currentHistoryPosition < navigationHistory.length - 1);
|
|
}, [navigationHistory, currentHistoryPosition]);
|
|
|
|
// Initialize navigation history when iframe loads
|
|
useEffect(() => {
|
|
if (appUrl) {
|
|
setNavigationHistory([appUrl]);
|
|
setCurrentHistoryPosition(0);
|
|
setCanGoBack(false);
|
|
setCanGoForward(false);
|
|
}
|
|
}, [appUrl]);
|
|
|
|
// Function to activate component selector in the iframe
|
|
const handleActivateComponentSelector = () => {
|
|
if (iframeRef.current?.contentWindow) {
|
|
const newIsPicking = !isPicking;
|
|
setIsPicking(newIsPicking);
|
|
iframeRef.current.contentWindow.postMessage(
|
|
{
|
|
type: newIsPicking
|
|
? "activate-dyad-component-selector"
|
|
: "deactivate-dyad-component-selector",
|
|
},
|
|
"*",
|
|
);
|
|
}
|
|
};
|
|
|
|
// Function to navigate back
|
|
const handleNavigateBack = () => {
|
|
if (canGoBack && iframeRef.current?.contentWindow) {
|
|
iframeRef.current.contentWindow.postMessage(
|
|
{
|
|
type: "navigate",
|
|
payload: { direction: "backward" },
|
|
},
|
|
"*",
|
|
);
|
|
|
|
// Update our local state
|
|
setCurrentHistoryPosition((prev) => prev - 1);
|
|
setCanGoBack(currentHistoryPosition - 1 > 0);
|
|
setCanGoForward(true);
|
|
}
|
|
};
|
|
|
|
// Function to navigate forward
|
|
const handleNavigateForward = () => {
|
|
if (canGoForward && iframeRef.current?.contentWindow) {
|
|
iframeRef.current.contentWindow.postMessage(
|
|
{
|
|
type: "navigate",
|
|
payload: { direction: "forward" },
|
|
},
|
|
"*",
|
|
);
|
|
|
|
// Update our local state
|
|
setCurrentHistoryPosition((prev) => prev + 1);
|
|
setCanGoBack(true);
|
|
setCanGoForward(
|
|
currentHistoryPosition + 1 < navigationHistory.length - 1,
|
|
);
|
|
}
|
|
};
|
|
|
|
// Function to handle reload
|
|
const handleReload = () => {
|
|
setReloadKey((prevKey) => prevKey + 1);
|
|
setErrorMessage(undefined);
|
|
// Optionally, add logic here if you need to explicitly stop/start the app again
|
|
// For now, just changing the key should remount the iframe
|
|
console.debug("Reloading iframe preview for app", selectedAppId);
|
|
};
|
|
|
|
// Function to navigate to a specific route
|
|
const navigateToRoute = (path: string) => {
|
|
if (iframeRef.current?.contentWindow && appUrl) {
|
|
// Create the full URL by combining the base URL with the path
|
|
const baseUrl = new URL(appUrl).origin;
|
|
const newUrl = `${baseUrl}${path}`;
|
|
|
|
// Navigate to the URL
|
|
iframeRef.current.contentWindow.location.href = newUrl;
|
|
|
|
// iframeRef.current.src = newUrl;
|
|
|
|
// Update navigation history
|
|
const newHistory = [
|
|
...navigationHistory.slice(0, currentHistoryPosition + 1),
|
|
newUrl,
|
|
];
|
|
setNavigationHistory(newHistory);
|
|
setCurrentHistoryPosition(newHistory.length - 1);
|
|
setCanGoBack(true);
|
|
setCanGoForward(false);
|
|
}
|
|
};
|
|
|
|
// Display loading state
|
|
if (loading) {
|
|
return <div className="p-4 dark:text-gray-300">Loading app preview...</div>;
|
|
}
|
|
|
|
// Display message if no app is selected
|
|
if (selectedAppId === null) {
|
|
return (
|
|
<div className="p-4 text-gray-500 dark:text-gray-400">
|
|
Select an app to see the preview.
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex flex-col h-full">
|
|
{/* Browser-style header */}
|
|
<div className="flex items-center p-2 border-b space-x-2 ">
|
|
{/* Navigation Buttons */}
|
|
<div className="flex space-x-1">
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<button
|
|
onClick={handleActivateComponentSelector}
|
|
className={`p-1 rounded transition-colors duration-200 disabled:opacity-50 disabled:cursor-not-allowed ${
|
|
isPicking
|
|
? "bg-purple-500 text-white hover:bg-purple-600 dark:bg-purple-600 dark:hover:bg-purple-700"
|
|
: " text-purple-700 hover:bg-purple-200 dark:text-purple-300 dark:hover:bg-purple-900"
|
|
}`}
|
|
disabled={
|
|
loading || !selectedAppId || !isComponentSelectorInitialized
|
|
}
|
|
data-testid="preview-pick-element-button"
|
|
>
|
|
<MousePointerClick size={16} />
|
|
</button>
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
<p>
|
|
{isPicking
|
|
? "Deactivate component selector"
|
|
: "Select component"}
|
|
</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
<button
|
|
className="p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700 disabled:opacity-50 disabled:cursor-not-allowed dark:text-gray-300"
|
|
disabled={!canGoBack || loading || !selectedAppId}
|
|
onClick={handleNavigateBack}
|
|
data-testid="preview-navigate-back-button"
|
|
>
|
|
<ArrowLeft size={16} />
|
|
</button>
|
|
<button
|
|
className="p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700 disabled:opacity-50 disabled:cursor-not-allowed dark:text-gray-300"
|
|
disabled={!canGoForward || loading || !selectedAppId}
|
|
onClick={handleNavigateForward}
|
|
data-testid="preview-navigate-forward-button"
|
|
>
|
|
<ArrowRight size={16} />
|
|
</button>
|
|
<button
|
|
onClick={handleReload}
|
|
className="p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700 disabled:opacity-50 disabled:cursor-not-allowed dark:text-gray-300"
|
|
disabled={loading || !selectedAppId}
|
|
data-testid="preview-refresh-button"
|
|
>
|
|
<RefreshCw size={16} />
|
|
</button>
|
|
</div>
|
|
|
|
{/* Address Bar with Routes Dropdown - using shadcn/ui dropdown-menu */}
|
|
<div className="relative flex-grow">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<div className="flex items-center justify-between px-3 py-1 bg-gray-100 dark:bg-gray-700 rounded text-sm text-gray-700 dark:text-gray-200 cursor-pointer w-full">
|
|
<span>
|
|
{navigationHistory[currentHistoryPosition]
|
|
? new URL(navigationHistory[currentHistoryPosition])
|
|
.pathname
|
|
: "/"}
|
|
</span>
|
|
<ChevronDown size={14} />
|
|
</div>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="w-full">
|
|
{availableRoutes.length > 0 ? (
|
|
availableRoutes.map((route) => (
|
|
<DropdownMenuItem
|
|
key={route.path}
|
|
onClick={() => navigateToRoute(route.path)}
|
|
className="flex justify-between"
|
|
>
|
|
<span>{route.label}</span>
|
|
<span className="text-gray-500 dark:text-gray-400 text-xs">
|
|
{route.path}
|
|
</span>
|
|
</DropdownMenuItem>
|
|
))
|
|
) : (
|
|
<DropdownMenuItem disabled>Loading routes...</DropdownMenuItem>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
|
|
{/* Action Buttons */}
|
|
<div className="flex space-x-1">
|
|
<button
|
|
data-testid="preview-open-browser-button"
|
|
onClick={() => {
|
|
if (originalUrl) {
|
|
IpcClient.getInstance().openExternalUrl(originalUrl);
|
|
}
|
|
}}
|
|
className="p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700 disabled:opacity-50 disabled:cursor-not-allowed dark:text-gray-300"
|
|
>
|
|
<ExternalLink size={16} />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="relative flex-grow ">
|
|
<ErrorBanner
|
|
error={errorMessage}
|
|
onDismiss={() => setErrorMessage(undefined)}
|
|
onAIFix={() => {
|
|
if (selectedChatId) {
|
|
streamMessage({
|
|
prompt: `Fix error: ${errorMessage}`,
|
|
chatId: selectedChatId,
|
|
});
|
|
}
|
|
}}
|
|
/>
|
|
|
|
{!appUrl ? (
|
|
<div className="absolute inset-0 flex flex-col items-center justify-center space-y-4 bg-gray-50 dark:bg-gray-950">
|
|
<Loader2 className="w-8 h-8 animate-spin text-gray-400 dark:text-gray-500" />
|
|
<p className="text-gray-600 dark:text-gray-300">
|
|
Starting up your app...
|
|
</p>
|
|
</div>
|
|
) : (
|
|
<iframe
|
|
data-testid="preview-iframe-element"
|
|
onLoad={() => {
|
|
setErrorMessage(undefined);
|
|
}}
|
|
ref={iframeRef}
|
|
key={reloadKey}
|
|
title={`Preview for App ${selectedAppId}`}
|
|
className="w-full h-full border-none bg-white dark:bg-gray-950"
|
|
src={appUrl}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
function parseComponentSelection(data: any): ComponentSelection | null {
|
|
if (
|
|
!data ||
|
|
data.type !== "dyad-component-selected" ||
|
|
typeof data.id !== "string" ||
|
|
typeof data.name !== "string"
|
|
) {
|
|
return null;
|
|
}
|
|
|
|
const { id, name } = data;
|
|
|
|
// The id is expected to be in the format "filepath:line:column"
|
|
const parts = id.split(":");
|
|
if (parts.length < 3) {
|
|
console.error(`Invalid component selection id format: "${id}"`);
|
|
return null;
|
|
}
|
|
|
|
const columnStr = parts.pop();
|
|
const lineStr = parts.pop();
|
|
const relativePath = parts.join(":");
|
|
|
|
if (!columnStr || !lineStr || !relativePath) {
|
|
console.error(`Could not parse component selection from id: "${id}"`);
|
|
return null;
|
|
}
|
|
|
|
const lineNumber = parseInt(lineStr, 10);
|
|
const columnNumber = parseInt(columnStr, 10);
|
|
|
|
if (isNaN(lineNumber) || isNaN(columnNumber)) {
|
|
console.error(`Could not parse line/column from id: "${id}"`);
|
|
return null;
|
|
}
|
|
|
|
return {
|
|
id,
|
|
name,
|
|
relativePath,
|
|
lineNumber,
|
|
columnNumber,
|
|
};
|
|
}
|