mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
refactor: workbench store and move logic into action runner (#4)
This commit is contained in:
parent
cae55a7026
commit
f4987a4ecd
@ -3,11 +3,11 @@ import { AnimatePresence, motion } from 'framer-motion';
|
|||||||
import { computed } from 'nanostores';
|
import { computed } from 'nanostores';
|
||||||
import { memo, useEffect, useRef, useState } from 'react';
|
import { memo, useEffect, useRef, useState } from 'react';
|
||||||
import { createHighlighter, type BundledLanguage, type BundledTheme, type HighlighterGeneric } from 'shiki';
|
import { createHighlighter, type BundledLanguage, type BundledTheme, type HighlighterGeneric } from 'shiki';
|
||||||
|
import type { ActionState } from '../../lib/runtime/action-runner';
|
||||||
import { chatStore } from '../../lib/stores/chat';
|
import { chatStore } from '../../lib/stores/chat';
|
||||||
import { getArtifactKey, workbenchStore, type ActionState } from '../../lib/stores/workbench';
|
import { workbenchStore } from '../../lib/stores/workbench';
|
||||||
import { classNames } from '../../utils/classNames';
|
import { classNames } from '../../utils/classNames';
|
||||||
import { cubicEasingFn } from '../../utils/easings';
|
import { cubicEasingFn } from '../../utils/easings';
|
||||||
import { IconButton } from '../ui/IconButton';
|
|
||||||
|
|
||||||
const highlighterOptions = {
|
const highlighterOptions = {
|
||||||
langs: ['shell'],
|
langs: ['shell'],
|
||||||
@ -22,20 +22,19 @@ if (import.meta.hot) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface ArtifactProps {
|
interface ArtifactProps {
|
||||||
artifactId: string;
|
|
||||||
messageId: string;
|
messageId: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Artifact = memo(({ artifactId, messageId }: ArtifactProps) => {
|
export const Artifact = memo(({ messageId }: ArtifactProps) => {
|
||||||
const userToggledActions = useRef(false);
|
const userToggledActions = useRef(false);
|
||||||
const [showActions, setShowActions] = useState(false);
|
const [showActions, setShowActions] = useState(false);
|
||||||
|
|
||||||
const chat = useStore(chatStore);
|
const chat = useStore(chatStore);
|
||||||
const artifacts = useStore(workbenchStore.artifacts);
|
const artifacts = useStore(workbenchStore.artifacts);
|
||||||
const artifact = artifacts[getArtifactKey(artifactId, messageId)];
|
const artifact = artifacts[messageId];
|
||||||
|
|
||||||
const actions = useStore(
|
const actions = useStore(
|
||||||
computed(artifact.actions, (actions) => {
|
computed(artifact.runner.actions, (actions) => {
|
||||||
return Object.values(actions);
|
return Object.values(actions);
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
@ -100,50 +99,7 @@ export const Artifact = memo(({ artifactId, messageId }: ArtifactProps) => {
|
|||||||
transition={{ duration: 0.15 }}
|
transition={{ duration: 0.15 }}
|
||||||
>
|
>
|
||||||
<div className="p-4 text-left border-t">
|
<div className="p-4 text-left border-t">
|
||||||
<motion.div
|
<ActionList actions={actions} />
|
||||||
initial={{ opacity: 0 }}
|
|
||||||
animate={{ opacity: 1 }}
|
|
||||||
exit={{ opacity: 0 }}
|
|
||||||
transition={{ duration: 0.15 }}
|
|
||||||
>
|
|
||||||
<h4 className="font-semibold mb-2">Actions</h4>
|
|
||||||
<ul className="list-none space-y-2.5">
|
|
||||||
{actions.map((action, index) => {
|
|
||||||
const { status, type, content, abort } = action;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<li key={index}>
|
|
||||||
<div className="flex items-center gap-1.5">
|
|
||||||
<div className={classNames('text-lg', getTextColor(action.status))}>
|
|
||||||
{status === 'running' ? (
|
|
||||||
<div className="i-svg-spinners:90-ring-with-bg"></div>
|
|
||||||
) : status === 'pending' ? (
|
|
||||||
<div className="i-ph:circle-duotone"></div>
|
|
||||||
) : status === 'complete' ? (
|
|
||||||
<div className="i-ph:check-circle-duotone"></div>
|
|
||||||
) : status === 'failed' || status === 'aborted' ? (
|
|
||||||
<div className="i-ph:x-circle-duotone"></div>
|
|
||||||
) : null}
|
|
||||||
</div>
|
|
||||||
{type === 'file' ? (
|
|
||||||
<div>
|
|
||||||
Create <code className="bg-gray-100 text-gray-700">{action.filePath}</code>
|
|
||||||
</div>
|
|
||||||
) : type === 'shell' ? (
|
|
||||||
<div className="flex items-center w-full min-h-[28px]">
|
|
||||||
<span className="flex-1">Run command</span>
|
|
||||||
{abort !== undefined && status === 'running' && (
|
|
||||||
<IconButton icon="i-ph:x-circle" size="xl" onClick={() => abort()} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
) : null}
|
|
||||||
</div>
|
|
||||||
{type === 'shell' && <ShellCodeBlock classsName="mt-1" code={content} />}
|
|
||||||
</li>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</ul>
|
|
||||||
</motion.div>
|
|
||||||
</div>
|
</div>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
)}
|
)}
|
||||||
@ -188,3 +144,61 @@ function ShellCodeBlock({ classsName, code }: ShellCodeBlockProps) {
|
|||||||
></div>
|
></div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ActionListProps {
|
||||||
|
actions: ActionState[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const actionVariants = {
|
||||||
|
hidden: { opacity: 0, y: 20 },
|
||||||
|
visible: { opacity: 1, y: 0 },
|
||||||
|
};
|
||||||
|
|
||||||
|
const ActionList = memo(({ actions }: ActionListProps) => {
|
||||||
|
return (
|
||||||
|
<motion.div initial={{ opacity: 0 }} animate={{ opacity: 1 }} exit={{ opacity: 0 }} transition={{ duration: 0.15 }}>
|
||||||
|
<ul className="list-none space-y-2.5">
|
||||||
|
{actions.map((action, index) => {
|
||||||
|
const { status, type, content } = action;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<motion.li
|
||||||
|
key={index}
|
||||||
|
variants={actionVariants}
|
||||||
|
initial="hidden"
|
||||||
|
animate="visible"
|
||||||
|
transition={{
|
||||||
|
duration: 0.2,
|
||||||
|
ease: cubicEasingFn,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className="flex items-center gap-1.5">
|
||||||
|
<div className={classNames('text-lg', getTextColor(action.status))}>
|
||||||
|
{status === 'running' ? (
|
||||||
|
<div className="i-svg-spinners:90-ring-with-bg"></div>
|
||||||
|
) : status === 'pending' ? (
|
||||||
|
<div className="i-ph:circle-duotone"></div>
|
||||||
|
) : status === 'complete' ? (
|
||||||
|
<div className="i-ph:check-circle-duotone"></div>
|
||||||
|
) : status === 'failed' || status === 'aborted' ? (
|
||||||
|
<div className="i-ph:x-circle-duotone"></div>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
{type === 'file' ? (
|
||||||
|
<div>
|
||||||
|
Create <code className="bg-gray-100 text-gray-700">{action.filePath}</code>
|
||||||
|
</div>
|
||||||
|
) : type === 'shell' ? (
|
||||||
|
<div className="flex items-center w-full min-h-[28px]">
|
||||||
|
<span className="flex-1">Run command</span>
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
{type === 'shell' && <ShellCodeBlock classsName="mt-1" code={content} />}
|
||||||
|
</motion.li>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</ul>
|
||||||
|
</motion.div>
|
||||||
|
);
|
||||||
|
});
|
||||||
|
@ -21,18 +21,13 @@ export const Markdown = memo(({ children }: MarkdownProps) => {
|
|||||||
return {
|
return {
|
||||||
div: ({ className, children, node, ...props }) => {
|
div: ({ className, children, node, ...props }) => {
|
||||||
if (className?.includes('__boltArtifact__')) {
|
if (className?.includes('__boltArtifact__')) {
|
||||||
const artifactId = node?.properties.dataArtifactId as string;
|
|
||||||
const messageId = node?.properties.dataMessageId as string;
|
const messageId = node?.properties.dataMessageId as string;
|
||||||
|
|
||||||
if (!artifactId) {
|
|
||||||
logger.debug(`Invalid artifact id ${messageId}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!messageId) {
|
if (!messageId) {
|
||||||
logger.debug(`Invalid message id ${messageId}`);
|
logger.error(`Invalid message id ${messageId}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return <Artifact artifactId={artifactId} messageId={messageId} />;
|
return <Artifact messageId={messageId} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -13,7 +13,14 @@ export const Preview = memo(() => {
|
|||||||
const [iframeUrl, setIframeUrl] = useState<string | undefined>();
|
const [iframeUrl, setIframeUrl] = useState<string | undefined>();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (activePreview && !iframeUrl) {
|
if (!activePreview) {
|
||||||
|
setUrl('');
|
||||||
|
setIframeUrl(undefined);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!iframeUrl) {
|
||||||
const { baseUrl } = activePreview;
|
const { baseUrl } = activePreview;
|
||||||
|
|
||||||
setUrl(baseUrl);
|
setUrl(baseUrl);
|
||||||
@ -31,16 +38,16 @@ export const Preview = memo(() => {
|
|||||||
<div className="w-full h-full flex flex-col">
|
<div className="w-full h-full flex flex-col">
|
||||||
<div className="bg-gray-100 rounded-t-lg p-2 flex items-center space-x-1.5">
|
<div className="bg-gray-100 rounded-t-lg p-2 flex items-center space-x-1.5">
|
||||||
<div className="flex items-center gap-2 text-gray-800">
|
<div className="flex items-center gap-2 text-gray-800">
|
||||||
<div className="i-ph:app-window-duotone scale-130 ml-1.5"></div>
|
<div className="i-ph:app-window-duotone scale-130 ml-1.5" />
|
||||||
<span className="text-sm">Preview</span>
|
<span className="text-sm">Preview</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex-grow"></div>
|
<div className="flex-grow" />
|
||||||
</div>
|
</div>
|
||||||
<div className="bg-white p-2 flex items-center gap-1.5">
|
<div className="bg-white p-2 flex items-center gap-1.5">
|
||||||
<IconButton icon="i-ph:arrow-clockwise" onClick={reloadPreview} />
|
<IconButton icon="i-ph:arrow-clockwise" onClick={reloadPreview} />
|
||||||
<div className="flex items-center gap-1 flex-grow bg-gray-100 rounded-full px-3 py-1 text-sm text-gray-600 hover:bg-gray-200 hover:focus-within:bg-white focus-within:bg-white focus-within:ring-2 focus-within:ring-accent">
|
<div className="flex items-center gap-1 flex-grow bg-gray-100 rounded-full px-3 py-1 text-sm text-gray-600 hover:bg-gray-200 hover:focus-within:bg-white focus-within:bg-white focus-within:ring-2 focus-within:ring-accent">
|
||||||
<div className="bg-white rounded-full p-[2px] -ml-1">
|
<div className="bg-white rounded-full p-[2px] -ml-1">
|
||||||
<div className="i-ph:info-bold text-lg"></div>
|
<div className="i-ph:info-bold text-lg" />
|
||||||
</div>
|
</div>
|
||||||
<input
|
<input
|
||||||
className="w-full bg-transparent outline-none"
|
className="w-full bg-transparent outline-none"
|
||||||
@ -54,7 +61,7 @@ export const Preview = memo(() => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="flex-1 bg-white border-t">
|
<div className="flex-1 bg-white border-t">
|
||||||
{activePreview ? (
|
{activePreview ? (
|
||||||
<iframe ref={iframeRef} className="border-none w-full h-full" src={iframeUrl}></iframe>
|
<iframe ref={iframeRef} className="border-none w-full h-full" src={iframeUrl} />
|
||||||
) : (
|
) : (
|
||||||
<div className="flex w-full h-full justify-center items-center">No preview available</div>
|
<div className="flex w-full h-full justify-center items-center">No preview available</div>
|
||||||
)}
|
)}
|
||||||
|
@ -24,6 +24,8 @@ export default class SwitchableStream extends TransformStream {
|
|||||||
await this._currentReader.cancel();
|
await this._currentReader.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log('Switching stream');
|
||||||
|
|
||||||
this._currentReader = newStream.getReader();
|
this._currentReader = newStream.getReader();
|
||||||
|
|
||||||
this._pumpStream();
|
this._pumpStream();
|
||||||
|
@ -1,53 +1,139 @@
|
|||||||
import { WebContainer } from '@webcontainer/api';
|
import { WebContainer } from '@webcontainer/api';
|
||||||
|
import { map, type MapStore } from 'nanostores';
|
||||||
import * as nodePath from 'node:path';
|
import * as nodePath from 'node:path';
|
||||||
|
import type { BoltAction } from '../../types/actions';
|
||||||
import { createScopedLogger } from '../../utils/logger';
|
import { createScopedLogger } from '../../utils/logger';
|
||||||
|
import { unreachable } from '../../utils/unreachable';
|
||||||
import type { ActionCallbackData } from './message-parser';
|
import type { ActionCallbackData } from './message-parser';
|
||||||
|
|
||||||
const logger = createScopedLogger('ActionRunner');
|
const logger = createScopedLogger('ActionRunner');
|
||||||
|
|
||||||
|
export type ActionStatus = 'pending' | 'running' | 'complete' | 'aborted' | 'failed';
|
||||||
|
|
||||||
|
export type BaseActionState = BoltAction & {
|
||||||
|
status: Exclude<ActionStatus, 'failed'>;
|
||||||
|
abort: () => void;
|
||||||
|
executed: boolean;
|
||||||
|
abortSignal: AbortSignal;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type FailedActionState = BoltAction &
|
||||||
|
Omit<BaseActionState, 'status'> & {
|
||||||
|
status: Extract<ActionStatus, 'failed'>;
|
||||||
|
error: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ActionState = BaseActionState | FailedActionState;
|
||||||
|
|
||||||
|
type BaseActionUpdate = Partial<Pick<BaseActionState, 'status' | 'abort' | 'executed'>>;
|
||||||
|
|
||||||
|
export type ActionStateUpdate =
|
||||||
|
| BaseActionUpdate
|
||||||
|
| (Omit<BaseActionUpdate, 'status'> & { status: 'failed'; error: string });
|
||||||
|
|
||||||
|
type ActionsMap = MapStore<Record<string, ActionState>>;
|
||||||
|
|
||||||
export class ActionRunner {
|
export class ActionRunner {
|
||||||
#webcontainer: Promise<WebContainer>;
|
#webcontainer: Promise<WebContainer>;
|
||||||
|
#currentExecutionPromise: Promise<void> = Promise.resolve();
|
||||||
|
|
||||||
|
actions: ActionsMap = import.meta.hot?.data.actions ?? map({});
|
||||||
|
|
||||||
constructor(webcontainerPromise: Promise<WebContainer>) {
|
constructor(webcontainerPromise: Promise<WebContainer>) {
|
||||||
this.#webcontainer = webcontainerPromise;
|
this.#webcontainer = webcontainerPromise;
|
||||||
|
|
||||||
|
if (import.meta.hot) {
|
||||||
|
import.meta.hot.data.actions = this.actions;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async runAction({ action }: ActionCallbackData, abortSignal?: AbortSignal) {
|
addAction(data: ActionCallbackData) {
|
||||||
logger.trace('Running action', action);
|
const { actionId } = data;
|
||||||
|
|
||||||
const { content } = action;
|
const action = this.actions.get()[actionId];
|
||||||
|
|
||||||
|
if (action) {
|
||||||
|
// action already added
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const abortController = new AbortController();
|
||||||
|
|
||||||
|
this.actions.setKey(actionId, {
|
||||||
|
...data.action,
|
||||||
|
status: 'pending',
|
||||||
|
executed: false,
|
||||||
|
abort: () => {
|
||||||
|
abortController.abort();
|
||||||
|
this.#updateAction(actionId, { status: 'aborted' });
|
||||||
|
},
|
||||||
|
abortSignal: abortController.signal,
|
||||||
|
});
|
||||||
|
|
||||||
|
this.#currentExecutionPromise.then(() => {
|
||||||
|
this.#updateAction(actionId, { status: 'running' });
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async runAction(data: ActionCallbackData) {
|
||||||
|
const { actionId } = data;
|
||||||
|
const action = this.actions.get()[actionId];
|
||||||
|
|
||||||
|
if (!action) {
|
||||||
|
unreachable(`Action ${actionId} not found`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (action.executed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.#updateAction(actionId, { ...action, ...data.action, executed: true });
|
||||||
|
|
||||||
|
this.#currentExecutionPromise = this.#currentExecutionPromise
|
||||||
|
.then(() => {
|
||||||
|
return this.#executeAction(actionId);
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error('Action execution failed:', error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async #executeAction(actionId: string) {
|
||||||
|
const action = this.actions.get()[actionId];
|
||||||
|
|
||||||
|
this.#updateAction(actionId, { status: 'running' });
|
||||||
|
|
||||||
|
try {
|
||||||
|
switch (action.type) {
|
||||||
|
case 'shell': {
|
||||||
|
await this.#runShellAction(action);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'file': {
|
||||||
|
await this.#runFileAction(action);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.#updateAction(actionId, { status: action.abortSignal.aborted ? 'aborted' : 'complete' });
|
||||||
|
} catch (error) {
|
||||||
|
this.#updateAction(actionId, { status: 'failed', error: 'Action failed' });
|
||||||
|
|
||||||
|
// re-throw the error to be caught in the promise chain
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async #runShellAction(action: ActionState) {
|
||||||
|
if (action.type !== 'shell') {
|
||||||
|
unreachable('Expected shell action');
|
||||||
|
}
|
||||||
|
|
||||||
const webcontainer = await this.#webcontainer;
|
const webcontainer = await this.#webcontainer;
|
||||||
|
|
||||||
switch (action.type) {
|
const process = await webcontainer.spawn('jsh', ['-c', action.content]);
|
||||||
case 'file': {
|
|
||||||
let folder = nodePath.dirname(action.filePath);
|
|
||||||
|
|
||||||
// remove trailing slashes
|
action.abortSignal.addEventListener('abort', () => {
|
||||||
folder = folder.replace(/\/$/g, '');
|
|
||||||
|
|
||||||
if (folder !== '.') {
|
|
||||||
try {
|
|
||||||
await webcontainer.fs.mkdir(folder, { recursive: true });
|
|
||||||
logger.debug('Created folder', folder);
|
|
||||||
} catch (error) {
|
|
||||||
logger.error('Failed to create folder\n', error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
await webcontainer.fs.writeFile(action.filePath, content);
|
|
||||||
logger.debug(`File written ${action.filePath}`);
|
|
||||||
} catch (error) {
|
|
||||||
logger.error('Failed to write file\n', error);
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'shell': {
|
|
||||||
const process = await webcontainer.spawn('jsh', ['-c', content]);
|
|
||||||
|
|
||||||
abortSignal?.addEventListener('abort', () => {
|
|
||||||
process.kill();
|
process.kill();
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -63,6 +149,39 @@ export class ActionRunner {
|
|||||||
|
|
||||||
logger.debug(`Process terminated with code ${exitCode}`);
|
logger.debug(`Process terminated with code ${exitCode}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async #runFileAction(action: ActionState) {
|
||||||
|
if (action.type !== 'file') {
|
||||||
|
unreachable('Expected file action');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const webcontainer = await this.#webcontainer;
|
||||||
|
|
||||||
|
let folder = nodePath.dirname(action.filePath);
|
||||||
|
|
||||||
|
// remove trailing slashes
|
||||||
|
folder = folder.replace(/\/+$/g, '');
|
||||||
|
|
||||||
|
if (folder !== '.') {
|
||||||
|
try {
|
||||||
|
await webcontainer.fs.mkdir(folder, { recursive: true });
|
||||||
|
logger.debug('Created folder', folder);
|
||||||
|
} catch (error) {
|
||||||
|
logger.error('Failed to create folder\n', error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
await webcontainer.fs.writeFile(action.filePath, action.content);
|
||||||
|
logger.debug(`File written ${action.filePath}`);
|
||||||
|
} catch (error) {
|
||||||
|
logger.error('Failed to write file\n', error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#updateAction(id: string, newState: ActionStateUpdate) {
|
||||||
|
const actions = this.actions.get();
|
||||||
|
|
||||||
|
this.actions.setKey(id, { ...actions[id], ...newState });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -179,7 +179,7 @@ function runTest(input: string | string[], outputOrExpectedResult: string | Expe
|
|||||||
};
|
};
|
||||||
|
|
||||||
const parser = new StreamingMessageParser({
|
const parser = new StreamingMessageParser({
|
||||||
artifactElement: '',
|
artifactElement: () => '',
|
||||||
callbacks,
|
callbacks,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -31,11 +31,15 @@ export interface ParserCallbacks {
|
|||||||
onActionClose?: ActionCallback;
|
onActionClose?: ActionCallback;
|
||||||
}
|
}
|
||||||
|
|
||||||
type ElementFactory = () => string;
|
interface ElementFactoryProps {
|
||||||
|
messageId: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
type ElementFactory = (props: ElementFactoryProps) => string;
|
||||||
|
|
||||||
export interface StreamingMessageParserOptions {
|
export interface StreamingMessageParserOptions {
|
||||||
callbacks?: ParserCallbacks;
|
callbacks?: ParserCallbacks;
|
||||||
artifactElement?: string | ElementFactory;
|
artifactElement?: ElementFactory;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface MessageState {
|
interface MessageState {
|
||||||
@ -193,9 +197,9 @@ export class StreamingMessageParser {
|
|||||||
|
|
||||||
this._options.callbacks?.onArtifactOpen?.({ messageId, ...currentArtifact });
|
this._options.callbacks?.onArtifactOpen?.({ messageId, ...currentArtifact });
|
||||||
|
|
||||||
output +=
|
const artifactFactory = this._options.artifactElement ?? createArtifactElement;
|
||||||
this._options.artifactElement ??
|
|
||||||
`<div class="__boltArtifact__" data-artifact-id="${artifactId}" data-message-id="${messageId}"></div>`;
|
output += artifactFactory({ messageId });
|
||||||
|
|
||||||
i = openTagEnd + 1;
|
i = openTagEnd + 1;
|
||||||
} else {
|
} else {
|
||||||
@ -264,3 +268,18 @@ export class StreamingMessageParser {
|
|||||||
return match ? match[1] : undefined;
|
return match ? match[1] : undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const createArtifactElement: ElementFactory = (props) => {
|
||||||
|
const elementProps = [
|
||||||
|
'class="__boltArtifact__"',
|
||||||
|
Object.entries(props).map(([key, value]) => {
|
||||||
|
return `data-${camelToDashCase(key)}=${JSON.stringify(value)}`;
|
||||||
|
}),
|
||||||
|
];
|
||||||
|
|
||||||
|
return `<div ${elementProps.join(' ')}></div>`;
|
||||||
|
};
|
||||||
|
|
||||||
|
function camelToDashCase(input: string) {
|
||||||
|
return input.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
|
||||||
|
}
|
||||||
|
@ -25,6 +25,13 @@ export class PreviewsStore {
|
|||||||
webcontainer.on('port', (port, type, url) => {
|
webcontainer.on('port', (port, type, url) => {
|
||||||
let previewInfo = this.#availablePreviews.get(port);
|
let previewInfo = this.#availablePreviews.get(port);
|
||||||
|
|
||||||
|
if (type === 'close' && previewInfo) {
|
||||||
|
this.#availablePreviews.delete(port);
|
||||||
|
this.previews.set(this.previews.get().filter((preview) => preview.port !== port));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const previews = this.previews.get();
|
const previews = this.previews.get();
|
||||||
|
|
||||||
if (!previewInfo) {
|
if (!previewInfo) {
|
||||||
|
@ -1,48 +1,24 @@
|
|||||||
import { atom, map, type MapStore, type ReadableAtom, type WritableAtom } from 'nanostores';
|
import { atom, map, type MapStore, type ReadableAtom, type WritableAtom } from 'nanostores';
|
||||||
import type { EditorDocument, ScrollPosition } from '../../components/editor/codemirror/CodeMirrorEditor';
|
import type { EditorDocument, ScrollPosition } from '../../components/editor/codemirror/CodeMirrorEditor';
|
||||||
import type { BoltAction } from '../../types/actions';
|
|
||||||
import { unreachable } from '../../utils/unreachable';
|
import { unreachable } from '../../utils/unreachable';
|
||||||
import { ActionRunner } from '../runtime/action-runner';
|
import { ActionRunner } from '../runtime/action-runner';
|
||||||
import type { ActionCallbackData, ArtifactCallbackData } from '../runtime/message-parser';
|
import type { ActionCallbackData, ArtifactCallbackData } from '../runtime/message-parser';
|
||||||
import { webcontainer } from '../webcontainer';
|
import { webcontainer } from '../webcontainer';
|
||||||
import { chatStore } from './chat';
|
|
||||||
import { EditorStore } from './editor';
|
import { EditorStore } from './editor';
|
||||||
import { FilesStore, type FileMap } from './files';
|
import { FilesStore, type FileMap } from './files';
|
||||||
import { PreviewsStore } from './previews';
|
import { PreviewsStore } from './previews';
|
||||||
|
|
||||||
const MIN_SPINNER_TIME = 200;
|
|
||||||
|
|
||||||
export type BaseActionState = BoltAction & {
|
|
||||||
status: 'running' | 'complete' | 'pending' | 'aborted';
|
|
||||||
executing: boolean;
|
|
||||||
abort?: () => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type FailedActionState = BoltAction &
|
|
||||||
Omit<BaseActionState, 'status'> & {
|
|
||||||
status: 'failed';
|
|
||||||
error: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type ActionState = BaseActionState | FailedActionState;
|
|
||||||
|
|
||||||
type BaseActionUpdate = Partial<Pick<BaseActionState, 'status' | 'executing' | 'abort'>>;
|
|
||||||
|
|
||||||
export type ActionStateUpdate =
|
|
||||||
| BaseActionUpdate
|
|
||||||
| (Omit<BaseActionUpdate, 'status'> & { status: 'failed'; error: string });
|
|
||||||
|
|
||||||
export interface ArtifactState {
|
export interface ArtifactState {
|
||||||
title: string;
|
title: string;
|
||||||
closed: boolean;
|
closed: boolean;
|
||||||
currentActionPromise: Promise<void>;
|
runner: ActionRunner;
|
||||||
actions: MapStore<Record<string, ActionState>>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type ArtifactUpdateState = Pick<ArtifactState, 'title' | 'closed'>;
|
||||||
|
|
||||||
type Artifacts = MapStore<Record<string, ArtifactState>>;
|
type Artifacts = MapStore<Record<string, ArtifactState>>;
|
||||||
|
|
||||||
export class WorkbenchStore {
|
export class WorkbenchStore {
|
||||||
#actionRunner = new ActionRunner(webcontainer);
|
|
||||||
#previewsStore = new PreviewsStore(webcontainer);
|
#previewsStore = new PreviewsStore(webcontainer);
|
||||||
#filesStore = new FilesStore(webcontainer);
|
#filesStore = new FilesStore(webcontainer);
|
||||||
#editorStore = new EditorStore(webcontainer);
|
#editorStore = new EditorStore(webcontainer);
|
||||||
@ -102,146 +78,61 @@ export class WorkbenchStore {
|
|||||||
}
|
}
|
||||||
|
|
||||||
abortAllActions() {
|
abortAllActions() {
|
||||||
for (const [, artifact] of Object.entries(this.artifacts.get())) {
|
// TODO: what do we wanna do and how do we wanna recover from this?
|
||||||
for (const [, action] of Object.entries(artifact.actions.get())) {
|
|
||||||
if (action.status === 'running') {
|
|
||||||
action.abort?.();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
addArtifact({ id, messageId, title }: ArtifactCallbackData) {
|
addArtifact({ messageId, title }: ArtifactCallbackData) {
|
||||||
const artifacts = this.artifacts.get();
|
const artifact = this.#getArtifact(messageId);
|
||||||
const artifactKey = getArtifactKey(id, messageId);
|
|
||||||
const artifact = artifacts[artifactKey];
|
|
||||||
|
|
||||||
if (artifact) {
|
if (artifact) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.artifacts.setKey(artifactKey, {
|
this.artifacts.setKey(messageId, {
|
||||||
title,
|
title,
|
||||||
closed: false,
|
closed: false,
|
||||||
actions: map({}),
|
runner: new ActionRunner(webcontainer),
|
||||||
currentActionPromise: Promise.resolve(),
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
updateArtifact({ id, messageId }: ArtifactCallbackData, state: Partial<ArtifactState>) {
|
updateArtifact({ messageId }: ArtifactCallbackData, state: Partial<ArtifactUpdateState>) {
|
||||||
const artifacts = this.artifacts.get();
|
const artifact = this.#getArtifact(messageId);
|
||||||
const key = getArtifactKey(id, messageId);
|
|
||||||
const artifact = artifacts[key];
|
|
||||||
|
|
||||||
if (!artifact) {
|
if (!artifact) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.artifacts.setKey(key, { ...artifact, ...state });
|
this.artifacts.setKey(messageId, { ...artifact, ...state });
|
||||||
}
|
}
|
||||||
|
|
||||||
async addAction(data: ActionCallbackData) {
|
async addAction(data: ActionCallbackData) {
|
||||||
const { artifactId, messageId, actionId } = data;
|
const { messageId } = data;
|
||||||
|
|
||||||
const artifacts = this.artifacts.get();
|
const artifact = this.#getArtifact(messageId);
|
||||||
const key = getArtifactKey(artifactId, messageId);
|
|
||||||
const artifact = artifacts[key];
|
|
||||||
|
|
||||||
if (!artifact) {
|
if (!artifact) {
|
||||||
unreachable('Artifact not found');
|
unreachable('Artifact not found');
|
||||||
}
|
}
|
||||||
|
|
||||||
const actions = artifact.actions.get();
|
artifact.runner.addAction(data);
|
||||||
const action = actions[actionId];
|
|
||||||
|
|
||||||
if (action) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
artifact.actions.setKey(actionId, { ...data.action, status: 'pending', executing: false });
|
|
||||||
|
|
||||||
artifact.currentActionPromise.then(() => {
|
|
||||||
if (chatStore.get().aborted) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.#updateAction(key, actionId, { status: 'running' });
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async runAction(data: ActionCallbackData) {
|
async runAction(data: ActionCallbackData) {
|
||||||
const { artifactId, messageId, actionId } = data;
|
const { messageId } = data;
|
||||||
|
|
||||||
const artifacts = this.artifacts.get();
|
const artifact = this.#getArtifact(messageId);
|
||||||
const key = getArtifactKey(artifactId, messageId);
|
|
||||||
const artifact = artifacts[key];
|
|
||||||
|
|
||||||
if (!artifact) {
|
if (!artifact) {
|
||||||
unreachable('Artifact not found');
|
unreachable('Artifact not found');
|
||||||
}
|
}
|
||||||
|
|
||||||
const actions = artifact.actions.get();
|
artifact.runner.runAction(data);
|
||||||
const action = actions[actionId];
|
|
||||||
|
|
||||||
if (!action) {
|
|
||||||
unreachable('Expected action to exist');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (action.executing || action.status === 'complete' || action.status === 'failed' || action.status === 'aborted') {
|
#getArtifact(id: string) {
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
artifact.currentActionPromise = artifact.currentActionPromise.then(async () => {
|
|
||||||
if (chatStore.get().aborted) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const abortController = new AbortController();
|
|
||||||
|
|
||||||
this.#updateAction(key, actionId, {
|
|
||||||
status: 'running',
|
|
||||||
executing: true,
|
|
||||||
abort: () => {
|
|
||||||
abortController.abort();
|
|
||||||
this.#updateAction(key, actionId, { status: 'aborted' });
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
try {
|
|
||||||
await Promise.all([
|
|
||||||
this.#actionRunner.runAction(data, abortController.signal),
|
|
||||||
new Promise((resolve) => setTimeout(resolve, MIN_SPINNER_TIME)),
|
|
||||||
]);
|
|
||||||
|
|
||||||
if (!abortController.signal.aborted) {
|
|
||||||
this.#updateAction(key, actionId, { status: 'complete' });
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
this.#updateAction(key, actionId, { status: 'failed', error: 'Action failed' });
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
} finally {
|
|
||||||
this.#updateAction(key, actionId, { executing: false });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
#updateAction(artifactId: string, actionId: string, newState: ActionStateUpdate) {
|
|
||||||
const artifacts = this.artifacts.get();
|
const artifacts = this.artifacts.get();
|
||||||
const artifact = artifacts[artifactId];
|
return artifacts[id];
|
||||||
|
|
||||||
if (!artifact) {
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const actions = artifact.actions.get();
|
|
||||||
|
|
||||||
artifact.actions.setKey(actionId, { ...actions[actionId], ...newState });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getArtifactKey(artifactId: string, messageId: string) {
|
|
||||||
return `${artifactId}_${messageId}`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const workbenchStore = new WorkbenchStore();
|
export const workbenchStore = new WorkbenchStore();
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import { type ActionFunctionArgs } from '@remix-run/cloudflare';
|
import { type ActionFunctionArgs } from '@remix-run/cloudflare';
|
||||||
import { MAX_RESPONSE_SEGMENTS } from '../lib/.server/llm/constants';
|
import { StreamingTextResponse } from 'ai';
|
||||||
|
import { MAX_RESPONSE_SEGMENTS, MAX_TOKENS } from '../lib/.server/llm/constants';
|
||||||
import { CONTINUE_PROMPT } from '../lib/.server/llm/prompts';
|
import { CONTINUE_PROMPT } from '../lib/.server/llm/prompts';
|
||||||
import { streamText, type Messages, type StreamingOptions } from '../lib/.server/llm/stream-text';
|
import { streamText, type Messages, type StreamingOptions } from '../lib/.server/llm/stream-text';
|
||||||
import SwitchableStream from '../lib/.server/llm/switchable-stream';
|
import SwitchableStream from '../lib/.server/llm/switchable-stream';
|
||||||
import { StreamingTextResponse } from 'ai';
|
|
||||||
|
|
||||||
export async function action({ context, request }: ActionFunctionArgs) {
|
export async function action({ context, request }: ActionFunctionArgs) {
|
||||||
const { messages } = await request.json<{ messages: Messages }>();
|
const { messages } = await request.json<{ messages: Messages }>();
|
||||||
@ -18,9 +18,13 @@ export async function action({ context, request }: ActionFunctionArgs) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (stream.switches >= MAX_RESPONSE_SEGMENTS) {
|
if (stream.switches >= MAX_RESPONSE_SEGMENTS) {
|
||||||
throw Error('Cannot continue message: maximum segments reached');
|
throw Error('Cannot continue message: Maximum segments reached');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const switchesLeft = MAX_RESPONSE_SEGMENTS - stream.switches;
|
||||||
|
|
||||||
|
console.log(`Reached max token limit (${MAX_TOKENS}): Continuing message (${switchesLeft} switches left)`);
|
||||||
|
|
||||||
messages.push({ role: 'assistant', content });
|
messages.push({ role: 'assistant', content });
|
||||||
messages.push({ role: 'user', content: CONTINUE_PROMPT });
|
messages.push({ role: 'user', content: CONTINUE_PROMPT });
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user