Layout Optimization: - Fixed navigation bar at the top with sticky positioning - Main content area now properly scrollable with flex layout - Improved overall page structure for better UX Scrolling Enhancements: - Added custom scrollbar styling for better visual appeal - Implemented smooth scrolling behavior across the application - Optimized scroll areas in ProjectDetails, TemplateManagement, AiClassificationSettings, and ModelList - Added proper overflow handling for long content lists Visual Improvements: - Beautiful custom scrollbars with hover effects - Proper height constraints for content areas (calc(100vh-16rem)) - Enhanced scrolling experience with backdrop blur effects - Added scroll indicators and shadow effects for better UX Responsive Design: - Mobile-optimized scrolling behavior - Proper touch scrolling on mobile devices - Adaptive content heights for different screen sizes - Maintained accessibility with reduced motion support Technical Improvements: - Fixed JSX syntax errors in TemplateManagement and ModelList - Improved component structure for better maintainability - Added comprehensive CSS classes for scroll management - Enhanced performance with optimized overflow handling All pages now provide a smooth, professional scrolling experience while keeping the navigation always accessible. |
||
|---|---|---|
| .. | ||
| public | ||
| scripts | ||
| src | ||
| src-tauri | ||
| .gitignore | ||
| CHANGELOG.md | ||
| DATABASE_OPTIMIZATION_GUIDE.md | ||
| README.md | ||
| index.html | ||
| package.json | ||
| postcss.config.js | ||
| tailwind.config.js | ||
| tsconfig.json | ||
| tsconfig.node.json | ||
| vite.config.ts | ||
| vitest.config.ts | ||
README.md
@mixvideo/desktop
MixVideo 桌面应用 - 基于 Tauri + React + TypeScript 构建的跨平台桌面应用。
🚀 快速开始
开发环境要求
- Node.js 18+
- Rust 1.70+
- PNPM 8+
安装依赖
pnpm install
开发模式
pnpm dev
# 或
pnpm tauri:dev
构建应用
pnpm tauri:build
📁 项目结构
apps/desktop/
├── src/ # React 前端源码
│ ├── components/ # React 组件
│ ├── pages/ # 页面组件
│ ├── hooks/ # 自定义 Hooks
│ ├── services/ # API 服务
│ ├── types/ # TypeScript 类型
│ └── utils/ # 工具函数
├── src-tauri/ # Rust 后端源码
│ ├── src/ # Rust 源码
│ ├── Cargo.toml # Rust 依赖配置
│ └── tauri.conf.json # Tauri 配置
├── public/ # 静态资源
└── package.json # 前端依赖配置
🛠️ 技术栈
- 前端: React 18 + TypeScript + Vite
- 后端: Rust + Tauri 2.0
- UI: 待定 (可选择 Ant Design、Material-UI 等)
- 状态管理: 待定 (可选择 Zustand、Redux Toolkit 等)