- Added a new task store in `src-react/stores/task.ts` to manage tasks and their statuses. - Implemented functions for creating, executing, and retrying tasks, along with handling task progress and completion. - Introduced persistence for tasks using IPC. - Created utility functions for normalizing room types and building subtasks. - Added a new CSS file for global styles in `src-react/styles.css`. - Created runtime types in `src-react/types/runtime.ts` and exported them. - Updated the main entry points for Vue and React applications to support dynamic framework loading. - Refactored chat model interfaces and utility functions into `src/shared/chat-model.ts`. - Updated TypeScript configuration to include paths for React components and types. - Enhanced Vite configuration to support both Vue and React frameworks.
17 lines
522 B
TypeScript
17 lines
522 B
TypeScript
import PagePlaceholder from '../PagePlaceholder';
|
|
|
|
export default function ScriptsPage() {
|
|
return (
|
|
<PagePlaceholder
|
|
tag="脚本"
|
|
title="脚本管理"
|
|
subtitle="保持当前产品的页面外观和信息密度,先做 React 壳层。"
|
|
description="脚本列表、编辑器和执行记录后续会在同一视觉结构下平移过来。"
|
|
stats={[
|
|
{ label: '页面状态', value: '占位壳' },
|
|
{ label: '迁移策略', value: '沿用现有 UI' },
|
|
]}
|
|
/>
|
|
);
|
|
}
|