feat: 重写为 Tauri + React + TypeScript (v4.0)

完全移除旧 C+IUP 代码,改用 Tauri 2.x + React 19 + TypeScript + Rust 技术栈重写。
功能与 v3.1 完全等价:

- React 前端:Tailwind CSS 4、Zustand 状态管理、i18next 国际化
- Rust 后端:winreg 注册表读写、Win32 API FFI 调用
- 核心逻辑:StringList、UndoRedoManager、PathManager、Import/Export
- 深色模式、中英文切换、键盘快捷键、合并预览
- 66 个 Vitest 单元测试

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-25 18:32:54 +08:00
parent cdcfd8e0a7
commit 48129a8908
2545 changed files with 12608 additions and 142894 deletions
+35
View File
@@ -0,0 +1,35 @@
import { useState, useCallback } from 'react';
import { invoke } from '@tauri-apps/api/core';
// Rust 端未就绪时的 fallback
const isTauri = typeof window !== 'undefined' && '__TAURI_INTERNALS__' in window;
/** 同步验证(基于本地规则,不含文件系统检查) */
export function validatePath(path: string): boolean {
if (path.includes('%')) return true;
return true; // 文件系统检查需要调用 Rust backend
}
/** 异步验证(调用 Rust validate_path */
export function useAsyncValidation() {
const [cache, setCache] = useState<Map<string, boolean>>(new Map());
const validate = useCallback(async (path: string): Promise<boolean> => {
if (path.includes('%')) return true;
if (cache.has(path)) return cache.get(path)!;
if (isTauri) {
try {
const valid: boolean = await invoke('validate_path', { path });
setCache((prev) => new Map(prev).set(path, valid));
return valid;
} catch {
return true;
}
}
return true;
}, [cache]);
return { validate, cache };
}