v0.3.10: 全面优化增强 — 17项Bug修复/稳定性/功能改进

P0 致命Bug修复:
- A1: openFolderDialog 类型/运行时崩溃(文件夹打开功能完全失效)
- A2: SourceEditor 受控textarea手动改DOM反模式
- A3: tabStore.updateTabContent 内容相同时误标isModified

死代码清理:
- B1: 删除menu:*/save/as/viewMode 三个永不触发的IPC通道

健壮性修复:
- E1: rehypeFixImages 路径规范化+防越界加固
- E2: getFileName 尾斜杠返回正确文件名
- E3: EditorToolbar 行内代码按钮改用toggleInlineCodeCommand
- E4: ErrorBoundary 内联样式抽为CSS类

功能增强:
- D1: 标签页拖拽排序(tabStore.moveTab + TabBar DnD + CSS)
- D2: Milkdown自动配对括号/引号(ProseMirror插件)
- D3: 状态栏自动保存开关可点击
- D4: 文档大纲活跃标题高亮(useActiveHeading hook)
- D5: 关闭窗口前flush防抖数据(flushSaveToDB)
- D6: 搜索替换支持正则表达式

类型/架构:
- C2: preload类型集中定义(ElectronAPI契约)
- __pycache__ typo修复

文档/版本:
- README/DESIGN同步为Milkdown + v0.3.10
- 项目结构树/技术栈/快捷键表更新

验证: typecheck(仅7预存), lint, test 96/96, vite build
This commit is contained in:
2026-06-23 10:47:45 +08:00
parent 7f070eb11d
commit b65e34e288
27 changed files with 639 additions and 252 deletions
+76
View File
@@ -525,6 +525,15 @@ body {
margin: 4px 0;
}
/* D1: 标签拖拽排序样式 */
.tab-item.dragging {
opacity: 0.4;
}
.tab-item.drag-over {
border-left: 2px solid var(--primary);
}
/* Modified Banner */
#modified-banner {
display: flex;
@@ -604,6 +613,15 @@ body {
font-size: 11px;
color: var(--text-tertiary);
transition: color 0.2s ease;
border: none;
background: transparent;
cursor: pointer;
font-family: var(--font-ui);
padding: 0;
}
.status-auto-save:hover {
color: var(--primary);
}
.status-auto-save.saving {
@@ -1521,6 +1539,56 @@ button:focus-visible,
border: 0;
}
/* ===== ErrorBoundary ===== */
.error-boundary-root {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
padding: 2rem;
text-align: center;
font-family: var(--font-ui);
background: var(--bg);
color: var(--text);
}
.error-boundary-title {
margin-bottom: 1rem;
color: #e74c3c;
font-size: 1.25rem;
font-weight: 600;
}
.error-boundary-detail {
padding: 1rem;
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 8px;
max-width: 600px;
overflow: auto;
font-size: 0.875rem;
color: var(--text-secondary);
font-family: var(--font-mono);
}
.error-boundary-reset {
margin-top: 1rem;
padding: 0.5rem 1.5rem;
border: none;
border-radius: 6px;
background: var(--primary);
color: white;
cursor: pointer;
font-size: 1rem;
font-family: var(--font-ui);
transition: background 0.15s ease;
}
.error-boundary-reset:hover {
background: var(--primary-dark);
}
/* ===== Search & Replace Panel ===== */
.search-replace-panel {
@@ -1590,6 +1658,14 @@ button:focus-visible,
white-space: nowrap;
}
/* D6: 正则语法错误提示 */
.search-input-group .search-count {
color: #c5221f;
}
.search-input-group .search-count:not(:empty) {
/* 仅当有正则错误时变红 */
}
.search-btn {
display: flex;
align-items: center;