mirror of
https://github.com/nexu-io/open-design.git
synced 2026-07-08 15:33:49 +08:00
* feat(daemon): add 'plan' session mode and update related functionality - Introduced a new session mode 'plan' alongside existing 'design' and 'chat' modes, allowing for editable document creation. - Updated various functions and interfaces to accommodate the new session mode, including normalization and usage in commands. - Enhanced markdown rendering capabilities by integrating micromark and its GFM extension for improved markdown processing. - Added new input types for question forms, expanding the range of user interactions. - Updated UI components to reflect changes in session modes and ensure proper handling of next steps based on the current mode. * feat(chat): integrate SessionModeToggle into ChatComposer and HomeHero - Added SessionModeToggle component to both ChatComposer and HomeHero for improved session management. - Updated HomeHero styles to accommodate the new mode switcher layout. - Adjusted countdown timer in QuestionsPanel to extend the skip countdown from 120 seconds to 10 minutes, enhancing user experience. - Added tests to ensure the countdown functionality works as expected. * feat(FileViewer): implement synchronized scrolling for Markdown editor and preview - Added functionality to synchronize scrolling between the Markdown editor and preview panes. - Introduced new types and utility functions for managing scroll behavior. - Enhanced the MarkdownViewer component to handle scroll events and maintain scroll position across different modes. - Updated the component's state management to accommodate the new scrolling features. * feat(excalidraw): integrate Excalidraw into the project - Added @excalidraw/excalidraw as a dependency in package.json. - Updated vitest configuration to include an alias for Excalidraw. - Imported Excalidraw CSS in the layout component for styling. - Modified AssistantMessage component to handle optional projectId. - Enhanced FileOpsSummary to display delete operations. - Implemented new Excalidraw scene management in SketchEditor and FileWorkspace components. - Updated MarkdownViewer to support file mentions and improved file handling. - Refactored various components to accommodate Excalidraw integration and ensure compatibility with existing features. * feat(files): improve sketch and file handoff flows * test: align post-merge expectations * chore(nix): refresh pnpm deps hash * fix(workspace): stabilize sketch persistence and ci checks * fix(workspace): address review blockers in editable files * fix(workspace): persist cleared sketch scenes * test(workspace): type sketch editor mock scene * fix(workspace): serialize sketch autosaves * fix(workspace): keep sketch save revisions current * test(e2e): stabilize project workspace smoke flows * fix(analytics): preserve plan mode for BYOK runs * test(e2e): stabilize new project rail interactions * fix(files): stop bash delete parsing at shell operators * test(e2e): stabilize ui cold-start suites * fix(viewer): preserve absolute markdown image sources * feat(workspace): preload sketches and enhance markdown save options - Added functionality to preload persisted sketches before opening the tab. - Introduced new MarkdownSaveOptions type to manage save behavior. - Updated saveMarkdownText to handle options for refreshing files and showing saving state. - Enhanced FileViewer to maintain focus and selection during metadata refresh. - Implemented a Toast component for user feedback on save and export actions. * fix(web): stabilize markdown and sketch editor polish * fix(web): finish sketch editor merge resolution * chore(nix): refresh pnpm deps hash * fix(plan): bypass discovery and stabilize markdown sync * fix(web): simplify scene retrieval in SketchEditor component * feat(web): enhance markdown viewer with auto-save functionality - Implemented passive auto-save status in the MarkdownViewer component, replacing the manual Save button with an auto-save indicator. - Introduced new hooks and state management for tracking auto-save events and displaying the last saved time. - Added support for synchronized scrolling between the markdown editor and preview. - Created a new markdown-scroll-sync module to handle scroll synchronization logic. - Updated localization files to include new strings for auto-save messages. - Added a SketchEnginePrewarm component to optimize Excalidraw loading times. * feat(web): enhance session mode toggle with cost indicators - Added cost tiers for each session mode in the SessionModeToggle component, providing users with a visual representation of usage costs. - Introduced a new ModeCostTag component to display cost information alongside session mode labels. - Updated localization files to include new keys for cost labels and notes. - Enhanced styling for cost indicators to improve user experience and clarity. - Refactored EntryShell to open the new project modal instead of creating a blank project directly from the rail. - Implemented a utility function in markdown-scroll-sync to check for vertical progression in block offsets. * feat(web): add max height adjustment for session mode description card - Introduced maxHeight prop to the ModeDescriptionCard component to control the height of the description card based on available space. - Implemented useLayoutEffect in SessionModeToggle to dynamically calculate and set the maximum height of the description card, ensuring it does not overlap with the project tab bar. - Updated tests to verify that session modes display their expected usage/cost correctly in the UI. - Enhanced localization files to include new cost-related strings for various languages. * feat(web): implement goBack function for improved navigation and update auto-open logic - Added a new `goBack` function to handle in-app navigation, allowing users to return to the previous route instead of a hardcoded destination. - Updated the `navigate` function to maintain history state for better back navigation. - Refactored auto-open logic to prioritize produced artifacts, allowing markdown files to be opened alongside HTML files. - Updated tests to cover new navigation behavior and artifact selection logic. - Enhanced localization files to include new descriptions for workspace actions. * refactor(web): remove create design system functionality and update design files panel actions - Removed the `onCreateDesignSystem` prop and associated button from the DesignFilesPanel component. - Updated the empty state actions to include a button for creating a new document via the `onPaste` function. - Adjusted tests to reflect the removal of the design system creation action and ensure the new document button is functional. - Enhanced the MarkdownViewer component by adding a placeholder for the text area and removing the header bar for a cleaner interface. - Updated localization files to include a new placeholder string for the markdown editor. * fix(web): restore markdown placeholder translations * refactor(web): streamline MarkdownViewer and enhance localization - Removed unnecessary state management and reload functionality from the MarkdownViewer component for improved performance. - Added a placeholder text for the markdown editor in multiple localization files to enhance user guidance. - Updated styles for the save state indicator in the viewer to improve visual clarity and alignment. - Adjusted tests to reflect changes in the MarkdownViewer and ensure proper functionality. * fix(web): adjust SketchEditor button size and remove shortcut hints - Reduced the icon size in the SketchEditor component from 13 to 12 for better alignment. - Updated the removeSketchMermaidShortcutHints function to also remove the submit shortcut hints from the dialog, enhancing the user interface by decluttering unnecessary elements. - Adjusted tests to verify the absence of shortcut hints in the modal after updates. * fix(web): address plan mode follow-up polish * fix(web): align ci expectations after merge * test(e2e): stabilize project workspace helpers * test(e2e): scale settings visual timeout * fix(prompts): lock ElevenLabs voice picker choices * test(e2e): pin project workspace P0 worker * test(e2e): use rail new project entry * test(e2e): relax app restoration startup waits * fix(web): limit markdown pipe escaping to tables --------- Co-authored-by: open-design-bot[bot] <282769551+open-design-bot[bot]@users.noreply.github.com> Co-authored-by: Amy <1184569493@qq.com>
294 lines
9.4 KiB
TypeScript
294 lines
9.4 KiB
TypeScript
// @vitest-environment jsdom
|
|
|
|
/**
|
|
* Gate coverage for the "next step" affordance under the last assistant
|
|
* message. Artifact-backed turns expose Share/Download/toolbox actions, while
|
|
* terminal no-artifact or interrupted turns still surface recovery prompts so
|
|
* users are never left at a dead end.
|
|
*/
|
|
|
|
import { cleanup, fireEvent, render, screen } from '@testing-library/react';
|
|
import { afterEach, beforeAll, describe, expect, it, vi } from 'vitest';
|
|
|
|
import { AssistantMessage } from '../../src/components/AssistantMessage';
|
|
import {
|
|
PROJECT_GENERATE_ARTIFACT_PROMPT,
|
|
} from '../../src/components/NextStepActions';
|
|
import { en } from '../../src/i18n/locales/en';
|
|
import type { ChatMessage, ProjectFile } from '../../src/types';
|
|
|
|
beforeAll(() => {
|
|
const store = new Map<string, string>();
|
|
Object.defineProperty(window, 'localStorage', {
|
|
configurable: true,
|
|
value: {
|
|
clear: () => store.clear(),
|
|
getItem: (key: string) => store.get(key) ?? null,
|
|
removeItem: (key: string) => store.delete(key),
|
|
setItem: (key: string, value: string) => store.set(key, value),
|
|
},
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
window.localStorage.clear();
|
|
});
|
|
|
|
function baseMessage(overrides: Partial<ChatMessage> = {}): ChatMessage {
|
|
return {
|
|
id: 'msg-1',
|
|
role: 'assistant',
|
|
content: 'Done.',
|
|
runStatus: 'succeeded',
|
|
startedAt: 1700000000,
|
|
endedAt: 1700000005,
|
|
events: [{ kind: 'text', text: 'Done.' } as NonNullable<ChatMessage['events']>[number]],
|
|
producedFiles: [],
|
|
...overrides,
|
|
} as ChatMessage;
|
|
}
|
|
|
|
function producedFile(name: string, kind: ProjectFile['kind'] = 'html'): ProjectFile {
|
|
return {
|
|
name,
|
|
path: name,
|
|
size: 100,
|
|
mtime: 1700000005,
|
|
kind,
|
|
mime: kind === 'html' ? 'text/html' : 'application/octet-stream',
|
|
} as ProjectFile;
|
|
}
|
|
|
|
const handlers = () => ({
|
|
onArtifactShare: vi.fn(),
|
|
onToolboxAction: vi.fn(),
|
|
onNextStepPromptAction: vi.fn(),
|
|
});
|
|
|
|
const AUTO_MATCH_TITLE = en['chat.designToolbox.action.auto-match.title'];
|
|
|
|
describe('AssistantMessage next-step affordance', () => {
|
|
it('routes Share through the More → Share cascade with the file name', () => {
|
|
const h = handlers();
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [producedFile('landing.html')] })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast
|
|
{...h}
|
|
/>,
|
|
);
|
|
expect(screen.getByTestId('next-step-actions')).toBeTruthy();
|
|
fireEvent.mouseEnter(screen.getByTestId('next-step-toolbox-more'));
|
|
fireEvent.mouseEnter(screen.getByTestId('next-step-more-share'));
|
|
fireEvent.click(screen.getByTestId('next-step-share-share'));
|
|
expect(h.onArtifactShare).toHaveBeenCalledWith('landing.html');
|
|
});
|
|
|
|
it('does not render when the message is not the last assistant message', () => {
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [producedFile('landing.html')] })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast={false}
|
|
{...handlers()}
|
|
/>,
|
|
);
|
|
expect(screen.queryByTestId('next-step-actions')).toBeNull();
|
|
});
|
|
|
|
it('reaches Contribute (share to Open Design) through the More → Share cascade', () => {
|
|
const onShareToOpenDesign = vi.fn();
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [producedFile('landing.html')] })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast
|
|
onFeedback={vi.fn()}
|
|
onShareToOpenDesign={onShareToOpenDesign}
|
|
{...handlers()}
|
|
/>,
|
|
);
|
|
fireEvent.mouseEnter(screen.getByTestId('next-step-toolbox-more'));
|
|
fireEvent.mouseEnter(screen.getByTestId('next-step-more-share'));
|
|
fireEvent.click(screen.getByTestId('next-step-share-contribute'));
|
|
expect(onShareToOpenDesign).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('renders the card after a simple answer with no previewable artifact', () => {
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [] })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast
|
|
{...handlers()}
|
|
/>,
|
|
);
|
|
expect(screen.getByTestId('next-step-actions')).toBeTruthy();
|
|
expect(screen.getByText(en['nextStep.projectGenerateArtifactTitle'])).toBeTruthy();
|
|
});
|
|
|
|
it('renders the card for a simple answer even without a project id', () => {
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [] })}
|
|
streaming={false}
|
|
isLast
|
|
{...handlers()}
|
|
/>,
|
|
);
|
|
expect(screen.getByTestId('next-step-actions')).toBeTruthy();
|
|
});
|
|
|
|
it('renders project recovery actions when the turn produced no previewable artifact', () => {
|
|
const h = handlers();
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [producedFile('notes.md', 'text')] })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast
|
|
{...h}
|
|
/>,
|
|
);
|
|
expect(screen.getByTestId('file-ops-summary')).toBeTruthy();
|
|
expect(screen.getByTestId('file-ops-row-notes.md')).toBeTruthy();
|
|
expect(screen.getByTestId('next-step-actions')).toBeTruthy();
|
|
expect(screen.getByText(en['nextStep.projectGenerateArtifactTitle'])).toBeTruthy();
|
|
fireEvent.click(screen.getByTestId('next-step-project-action-project-generate-artifact'));
|
|
expect(h.onNextStepPromptAction).toHaveBeenCalledWith(PROJECT_GENERATE_ARTIFACT_PROMPT);
|
|
});
|
|
|
|
it('renders once the project has a previewable HTML artifact from an earlier turn', () => {
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [] })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast
|
|
projectFiles={[producedFile('landing.html')]}
|
|
{...handlers()}
|
|
/>,
|
|
);
|
|
expect(screen.getByTestId('next-step-actions')).toBeTruthy();
|
|
expect(screen.getByText(AUTO_MATCH_TITLE)).toBeTruthy();
|
|
});
|
|
|
|
it('renders incomplete brand extraction next steps after cancellation without an artifact', () => {
|
|
const h = handlers();
|
|
const onContinueExtraction = vi.fn();
|
|
const onContinueAiExtraction = vi.fn();
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({
|
|
runStatus: 'canceled',
|
|
content: 'Stopped.',
|
|
producedFiles: [],
|
|
})}
|
|
streaming={false}
|
|
projectId="proj-brand"
|
|
isLast
|
|
nextStepVariant="brand-extraction"
|
|
onNextStepContinueExtraction={onContinueExtraction}
|
|
onNextStepContinueAiExtraction={onContinueAiExtraction}
|
|
{...h}
|
|
/>,
|
|
);
|
|
|
|
expect(screen.getByTestId('next-step-actions')).toBeTruthy();
|
|
expect(screen.getByText(en['nextStep.brandContinueExtractionTitle'])).toBeTruthy();
|
|
expect(screen.getByText(en['nextStep.brandContinueAiExtractionTitle'])).toBeTruthy();
|
|
fireEvent.click(screen.getByTestId('next-step-brand-action-brand-continue-extraction'));
|
|
expect(onContinueExtraction).toHaveBeenCalledTimes(1);
|
|
fireEvent.click(screen.getByTestId('next-step-brand-action-brand-continue-ai-extraction'));
|
|
expect(onContinueAiExtraction).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('refreshes the incomplete brand continuation busy state on memoized rows', () => {
|
|
const h = handlers();
|
|
const onContinueExtraction = vi.fn();
|
|
const message = baseMessage({
|
|
runStatus: 'canceled',
|
|
content: 'Stopped.',
|
|
producedFiles: [],
|
|
});
|
|
const view = render(
|
|
<AssistantMessage
|
|
message={message}
|
|
streaming={false}
|
|
projectId="proj-brand"
|
|
isLast
|
|
nextStepVariant="brand-extraction"
|
|
onNextStepContinueExtraction={onContinueExtraction}
|
|
nextStepContinueExtractionBusy={false}
|
|
{...h}
|
|
/>,
|
|
);
|
|
|
|
const firstButton = screen.getByTestId('next-step-brand-action-brand-continue-extraction');
|
|
fireEvent.click(firstButton);
|
|
expect(onContinueExtraction).toHaveBeenCalledTimes(1);
|
|
|
|
view.rerender(
|
|
<AssistantMessage
|
|
message={message}
|
|
streaming={false}
|
|
projectId="proj-brand"
|
|
isLast
|
|
nextStepVariant="brand-extraction"
|
|
onNextStepContinueExtraction={onContinueExtraction}
|
|
nextStepContinueExtractionBusy
|
|
{...h}
|
|
/>,
|
|
);
|
|
|
|
const busyButton = screen.getByTestId('next-step-brand-action-brand-continue-extraction');
|
|
expect((busyButton as HTMLButtonElement).disabled).toBe(true);
|
|
fireEvent.click(busyButton);
|
|
expect(onContinueExtraction).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('does not render when the handlers are not wired', () => {
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [producedFile('landing.html')] })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast
|
|
/>,
|
|
);
|
|
expect(screen.queryByTestId('next-step-actions')).toBeNull();
|
|
});
|
|
|
|
it('renders after a failed turn when a follow-up action is available', () => {
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [], runStatus: 'failed' })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast
|
|
{...handlers()}
|
|
/>,
|
|
);
|
|
expect(screen.getByTestId('next-step-actions')).toBeTruthy();
|
|
});
|
|
|
|
it('renders after a canceled turn when a follow-up action is available', () => {
|
|
render(
|
|
<AssistantMessage
|
|
message={baseMessage({ producedFiles: [], runStatus: 'canceled' })}
|
|
streaming={false}
|
|
projectId="proj-1"
|
|
isLast
|
|
{...handlers()}
|
|
/>,
|
|
);
|
|
expect(screen.getByTestId('next-step-actions')).toBeTruthy();
|
|
});
|
|
});
|