- 修复批量处理进度条不更新问题 - 实现任务状态管理器(task_manager.rs) - 添加实时进度更新和任务状态跟踪 - 完善前端进度轮询逻辑 - 丰富水印检测结果展示 - 添加详细检测结果信息(位置、置信度、类型等) - 显示处理统计和性能信息 - 优化结果展示UI和用户体验 - 修复水印模板上传和删除功能 - 实现内存存储系统管理模板 - 修复参数匹配问题 - 添加模板缩略图展示功能 - 优化文件上传体验 - 使用Tauri Dialog API替代HTML5文件输入 - 实现原生文件选择器 - 添加WatermarkTemplateThumbnail组件 - 完善水印工具集成 - 创建WatermarkTool页面 - 添加到便捷工具列表 - 完善路由配置和UI展示
142 lines
5.3 KiB
TypeScript
142 lines
5.3 KiB
TypeScript
|
|
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
|
|
import { ProjectList } from './components/ProjectList';
|
|
import { ProjectForm } from './components/ProjectForm';
|
|
import { ProjectDetails } from './pages/ProjectDetails';
|
|
import Models from './pages/Models';
|
|
import ModelDetail from './pages/ModelDetail';
|
|
import ModelDynamics from './pages/ModelDynamics';
|
|
import AiClassificationSettings from './pages/AiClassificationSettings';
|
|
import TemplateManagement from './pages/TemplateManagement';
|
|
import { MaterialModelBinding } from './pages/MaterialModelBinding';
|
|
import Tools from './pages/Tools';
|
|
import DataCleaningTool from './pages/tools/DataCleaningTool';
|
|
import JsonParserTool from './pages/tools/JsonParserTool';
|
|
import DebugPanelTool from './pages/tools/DebugPanelTool';
|
|
import ChatTool from './pages/tools/ChatTool';
|
|
import ChatTestPage from './pages/tools/ChatTestPage';
|
|
import WatermarkTool from './pages/tools/WatermarkTool';
|
|
|
|
import Navigation from './components/Navigation';
|
|
import { NotificationSystem, useNotifications } from './components/NotificationSystem';
|
|
import { useProjectStore } from './store/projectStore';
|
|
import { useUIStore } from './store/uiStore';
|
|
import { CreateProjectRequest, UpdateProjectRequest } from './types/project';
|
|
import "./App.css";
|
|
import './styles/design-system.css';
|
|
import './styles/animations.css';
|
|
// 导入测试工具(仅在开发环境)
|
|
if (import.meta.env.DEV) {
|
|
import('./utils/testChatFunction');
|
|
}
|
|
/**
|
|
* 主应用组件
|
|
* 遵循 Tauri 开发规范的应用架构设计
|
|
*/
|
|
function App() {
|
|
const { createProject, updateProject } = useProjectStore();
|
|
const {
|
|
showCreateProjectModal,
|
|
showEditProjectModal,
|
|
editingProject,
|
|
closeCreateProjectModal,
|
|
closeEditProjectModal
|
|
} = useUIStore();
|
|
|
|
// 通知系统
|
|
const { notifications, removeNotification, success, error } = useNotifications();
|
|
|
|
// 处理创建项目
|
|
const handleCreateProject = async (data: CreateProjectRequest) => {
|
|
try {
|
|
await createProject(data);
|
|
success('项目创建成功', `项目"${data.name}"已创建`);
|
|
closeCreateProjectModal();
|
|
} catch (err) {
|
|
const errorMessage = err instanceof Error ? err.message : '未知错误';
|
|
error('项目创建失败', errorMessage);
|
|
throw err;
|
|
}
|
|
};
|
|
|
|
// 处理更新项目
|
|
const handleUpdateProject = async (data: UpdateProjectRequest) => {
|
|
if (!editingProject) return;
|
|
|
|
try {
|
|
await updateProject(editingProject.id, data);
|
|
success('项目更新成功', `项目"${data.name}"已更新`);
|
|
closeEditProjectModal();
|
|
} catch (err) {
|
|
const errorMessage = err instanceof Error ? err.message : '未知错误';
|
|
error('项目更新失败', errorMessage);
|
|
throw err;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Router>
|
|
<div className="h-screen flex flex-col bg-gradient-to-br from-gray-50 via-white to-gray-50">
|
|
{/* 固定的导航栏 */}
|
|
<Navigation />
|
|
|
|
{/* 可滚动的主要内容区域 */}
|
|
<main className="flex-1 overflow-y-auto smooth-scroll">
|
|
<div className="container mx-auto px-4 sm:px-6 lg:px-8 py-4 sm:py-6 lg:py-8 max-w-7xl min-h-full">
|
|
<Routes>
|
|
<Route path="/" element={<ProjectList />} />
|
|
<Route path="/project/:id" element={<ProjectDetails />} />
|
|
<Route path="/models" element={<Models />} />
|
|
<Route path="/models/:id" element={<ModelDetail />} />
|
|
<Route path="/models/:modelId/dynamics" element={<ModelDynamics />} />
|
|
<Route path="/ai-classification-settings" element={<AiClassificationSettings />} />
|
|
<Route path="/templates" element={<TemplateManagement />} />
|
|
<Route path="/material-model-binding" element={<MaterialModelBinding />} />
|
|
<Route path="/fashion-chat" element={<ChatTool />} />
|
|
|
|
<Route path="/tools" element={<Tools />} />
|
|
<Route path="/tools/data-cleaning" element={<DataCleaningTool />} />
|
|
<Route path="/tools/json-parser" element={<JsonParserTool />} />
|
|
<Route path="/tools/debug-panel" element={<DebugPanelTool />} />
|
|
<Route path="/tools/ai-chat" element={<ChatTool />} />
|
|
<Route path="/tools/chat-test" element={<ChatTestPage />} />
|
|
<Route path="/tools/watermark" element={<WatermarkTool />} />
|
|
</Routes>
|
|
</div>
|
|
</main>
|
|
|
|
{/* 创建项目模态框 */}
|
|
{showCreateProjectModal && (
|
|
<ProjectForm
|
|
onSubmit={handleCreateProject}
|
|
onCancel={closeCreateProjectModal}
|
|
/>
|
|
)}
|
|
|
|
{/* 编辑项目模态框 */}
|
|
{showEditProjectModal && editingProject && (
|
|
<ProjectForm
|
|
initialData={editingProject}
|
|
onSubmit={handleUpdateProject}
|
|
onCancel={closeEditProjectModal}
|
|
isEdit={true}
|
|
/>
|
|
)}
|
|
|
|
{/* 通知系统 */}
|
|
<NotificationSystem
|
|
notifications={notifications}
|
|
onRemove={removeNotification}
|
|
position="top-right"
|
|
maxNotifications={5}
|
|
/>
|
|
|
|
{/* Modal 渲染容器 - 独立于主布局,避免复杂容器结构影响 */}
|
|
<div id="modal-root" className="modal-root-container"></div>
|
|
</div>
|
|
</Router>
|
|
);
|
|
}
|
|
|
|
export default App;
|