mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-04 21:02:39 +02:00
163 lines
6.4 KiB
TypeScript
163 lines
6.4 KiB
TypeScript
'use client';
|
|
import { useState, useCallback, useRef } from "react";
|
|
import { z } from "zod";
|
|
import { MCPServer, Message, PlaygroundChat } from "@/app/lib/types/types";
|
|
import { Workflow, WorkflowTool } from "@/app/lib/types/workflow_types";
|
|
import { Chat } from "./components/chat";
|
|
import { Panel } from "@/components/common/panel-common";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Tooltip } from "@heroui/react";
|
|
import { WithStringId } from "@/app/lib/types/types";
|
|
import { CheckIcon, CopyIcon, PlusIcon, UserIcon, InfoIcon, BugIcon, BugOffIcon, CodeIcon } from "lucide-react";
|
|
import { clsx } from "clsx";
|
|
|
|
const defaultSystemMessage = '';
|
|
|
|
export function App({
|
|
hidden = false,
|
|
projectId,
|
|
workflow,
|
|
messageSubscriber,
|
|
mcpServerUrls,
|
|
isInitialState = false,
|
|
onPanelClick,
|
|
triggerCopilotChat,
|
|
}: {
|
|
hidden?: boolean;
|
|
projectId: string;
|
|
workflow: z.infer<typeof Workflow>;
|
|
messageSubscriber?: (messages: z.infer<typeof Message>[]) => void;
|
|
mcpServerUrls: Array<z.infer<typeof MCPServer>>;
|
|
isInitialState?: boolean;
|
|
onPanelClick?: () => void;
|
|
triggerCopilotChat?: (message: string) => void;
|
|
}) {
|
|
const [counter, setCounter] = useState<number>(0);
|
|
const [systemMessage, setSystemMessage] = useState<string>(defaultSystemMessage);
|
|
const [showDebugMessages, setShowDebugMessages] = useState<boolean>(true);
|
|
const [chat, setChat] = useState<z.infer<typeof PlaygroundChat>>({
|
|
projectId,
|
|
createdAt: new Date().toISOString(),
|
|
messages: [],
|
|
simulated: false,
|
|
systemMessage: defaultSystemMessage,
|
|
});
|
|
const [isProfileSelectorOpen, setIsProfileSelectorOpen] = useState(false);
|
|
const [showCopySuccess, setShowCopySuccess] = useState(false);
|
|
const getCopyContentRef = useRef<(() => string) | null>(null);
|
|
|
|
function handleSystemMessageChange(message: string) {
|
|
setSystemMessage(message);
|
|
setCounter(counter + 1);
|
|
}
|
|
|
|
function handleNewChatButtonClick() {
|
|
setCounter(counter + 1);
|
|
setChat({
|
|
projectId,
|
|
createdAt: new Date().toISOString(),
|
|
messages: [],
|
|
simulated: false,
|
|
systemMessage: defaultSystemMessage,
|
|
});
|
|
setSystemMessage(defaultSystemMessage);
|
|
}
|
|
|
|
const handleCopyJson = useCallback(() => {
|
|
if (getCopyContentRef.current) {
|
|
try {
|
|
const data = getCopyContentRef.current();
|
|
navigator.clipboard.writeText(data);
|
|
setShowCopySuccess(true);
|
|
setTimeout(() => {
|
|
setShowCopySuccess(false);
|
|
}, 2000);
|
|
} catch (error) {
|
|
console.error('Error copying:', error);
|
|
}
|
|
}
|
|
}, []);
|
|
|
|
if (hidden) {
|
|
return <></>;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Panel
|
|
variant="playground"
|
|
tourTarget="playground"
|
|
title={
|
|
<div className="flex items-center gap-3">
|
|
<div className="flex items-center gap-2">
|
|
<div className="font-semibold text-zinc-700 dark:text-zinc-300">
|
|
Playground
|
|
</div>
|
|
<Tooltip content="Test your workflow and chat with your agents in real-time">
|
|
<InfoIcon className="w-4 h-4 text-gray-400 cursor-help" />
|
|
</Tooltip>
|
|
</div>
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
onClick={handleNewChatButtonClick}
|
|
className="bg-blue-50 text-blue-700 hover:bg-blue-100"
|
|
showHoverContent={true}
|
|
hoverContent="New chat"
|
|
>
|
|
<PlusIcon className="w-4 h-4" />
|
|
</Button>
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
onClick={() => setShowDebugMessages(!showDebugMessages)}
|
|
className={showDebugMessages ? "bg-blue-50 text-blue-700 hover:bg-blue-100" : "bg-gray-50 text-gray-500 hover:bg-gray-100"}
|
|
showHoverContent={true}
|
|
hoverContent={showDebugMessages ? "Hide debug messages" : "Show debug messages"}
|
|
>
|
|
{showDebugMessages ? (
|
|
<BugIcon className="w-4 h-4" />
|
|
) : (
|
|
<BugOffIcon className="w-4 h-4" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
}
|
|
rightActions={
|
|
<div className="flex items-center gap-3">
|
|
<Button
|
|
variant="secondary"
|
|
size="sm"
|
|
onClick={handleCopyJson}
|
|
showHoverContent={true}
|
|
hoverContent={showCopySuccess ? "Copied" : "Copy JSON"}
|
|
>
|
|
{showCopySuccess ? (
|
|
<CheckIcon className="w-4 h-4" />
|
|
) : (
|
|
<CopyIcon className="w-4 h-4" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
}
|
|
onClick={onPanelClick}
|
|
>
|
|
<div className="h-full overflow-auto px-4 py-4">
|
|
<Chat
|
|
key={`chat-${counter}`}
|
|
chat={chat}
|
|
projectId={projectId}
|
|
workflow={workflow}
|
|
messageSubscriber={messageSubscriber}
|
|
systemMessage={systemMessage}
|
|
onSystemMessageChange={handleSystemMessageChange}
|
|
mcpServerUrls={mcpServerUrls}
|
|
onCopyClick={(fn) => { getCopyContentRef.current = fn; }}
|
|
showDebugMessages={showDebugMessages}
|
|
triggerCopilotChat={triggerCopilotChat}
|
|
/>
|
|
</div>
|
|
</Panel>
|
|
</>
|
|
);
|
|
}
|