删除文件:
- SearchBar/SearchBar.tsx — 自定义搜索栏组件
- stores/searchStore.ts — 自定义搜索状态管理
- lib/searchEngine.ts — 自定义搜索匹配引擎
- types/search.ts — 搜索相关类型定义
清理代码:
- App.tsx:移除 SearchBar 导入和渲染
- useKeyboard.ts:移除 searchStore 引用和搜索快捷键
- Editor.tsx:移除 searchStore 引用和搜索逻辑
- types/index.ts:移除 search 类型导出
- global.css:删除旧搜索栏样式(~113 行)
CodeMirror 6 搜索面板移到顶部:
- .cm-panels { top: 0; bottom: auto; }
- .cm-panels-bottom { top: 0; bottom: auto; }
快捷键(CodeMirror 内置):
- Ctrl+F 搜索
- Ctrl+H 替换
- Enter/Shift+Enter 下一个/上一个
- Alt+C 大小写
- Alt+R 正则
281 lines
9.3 KiB
TypeScript
281 lines
9.3 KiB
TypeScript
import React, { useState, useCallback, useEffect, useRef } from 'react'
|
|
import { useTabStore } from './stores/tabStore'
|
|
import { useEditorStore } from './stores/editorStore'
|
|
import { useTheme } from './hooks/useTheme'
|
|
import { useSettings } from './hooks/useSettings'
|
|
import { useKeyboard } from './hooks/useKeyboard'
|
|
import { useUnsavedWarning } from './hooks/useUnsavedWarning'
|
|
import { useFileWatch } from './hooks/useFileWatch'
|
|
import { recentFilesRepository } from './db/recentFilesRepository'
|
|
import { useDragDrop } from './hooks/useDragDrop'
|
|
import { Toolbar } from './components/Toolbar/Toolbar'
|
|
import { TabBar } from './components/TabBar/TabBar'
|
|
import { Editor } from './components/Editor/Editor'
|
|
import { Preview } from './components/Preview/Preview'
|
|
import { Sidebar } from './components/Sidebar/Sidebar'
|
|
import { StatusBar } from './components/StatusBar/StatusBar'
|
|
import { WelcomeScreen } from './components/WelcomeScreen/WelcomeScreen'
|
|
import { Toast } from './components/Toast/Toast'
|
|
import { ModifiedBanner } from './components/ModifiedBanner/ModifiedBanner'
|
|
import { DropOverlay } from './components/DropOverlay/DropOverlay'
|
|
|
|
export default function App() {
|
|
const tabs = useTabStore(s => s.tabs)
|
|
const activeTabId = useTabStore(s => s.activeTabId)
|
|
const getActiveTab = useTabStore(s => s.getActiveTab)
|
|
const createTab = useTabStore(s => s.createTab)
|
|
const setModified = useTabStore(s => s.setModified)
|
|
const updateTabContent = useTabStore(s => s.updateTabContent)
|
|
const loadFromDB = useTabStore(s => s.loadFromDB)
|
|
|
|
const viewMode = useEditorStore(s => s.viewMode)
|
|
const splitRatio = useEditorStore(s => s.splitRatio)
|
|
|
|
const { darkMode, toggleDarkMode } = useTheme()
|
|
const { saveViewMode, saveSplitRatio } = useSettings()
|
|
|
|
const [showModifiedBanner, setShowModifiedBanner] = useState(false)
|
|
const [modifiedFilePath, setModifiedFilePath] = useState<string | null>(null)
|
|
const [toastMessage, setToastMessage] = useState<string | null>(null)
|
|
|
|
// 启动时从 IndexedDB 加载标签页
|
|
useEffect(() => {
|
|
loadFromDB()
|
|
}, [loadFromDB])
|
|
|
|
const showToast = useCallback((msg: string) => {
|
|
setToastMessage(msg)
|
|
setTimeout(() => setToastMessage(null), 3000)
|
|
}, [])
|
|
|
|
// 拖拽打开
|
|
useDragDrop(showToast)
|
|
|
|
// 文件修改检测
|
|
useFileWatch()
|
|
|
|
// 未保存提醒
|
|
useUnsavedWarning(() => tabs.some(t => t.isModified))
|
|
|
|
// 文件外部修改事件
|
|
useEffect(() => {
|
|
const handler = (e: Event) => {
|
|
const filePath = (e as CustomEvent).detail
|
|
const tab = getActiveTab()
|
|
if (tab && tab.filePath === filePath) {
|
|
setShowModifiedBanner(true)
|
|
setModifiedFilePath(filePath)
|
|
}
|
|
}
|
|
window.addEventListener('file-externally-modified', handler)
|
|
return () => window.removeEventListener('file-externally-modified', handler)
|
|
}, [getActiveTab])
|
|
|
|
// 打开文件
|
|
const handleOpenFile = useCallback(async () => {
|
|
if (window.electronAPI) {
|
|
const result = await window.electronAPI.openFile()
|
|
if (result && 'filePath' in result) {
|
|
createTab(result.filePath, result.content)
|
|
if (result.filePath) recentFilesRepository.add(result.filePath)
|
|
setTimeout(() => useTabStore.getState().saveToDB(), 100)
|
|
}
|
|
}
|
|
}, [createTab])
|
|
|
|
// 保存文件
|
|
const handleSave = useCallback(async () => {
|
|
const tab = getActiveTab()
|
|
if (!tab) return
|
|
if (window.electronAPI) {
|
|
const result = await window.electronAPI.saveFile({
|
|
filePath: tab.filePath,
|
|
content: tab.content
|
|
})
|
|
if (result.success) {
|
|
useTabStore.getState().setModified(tab.id, false)
|
|
showToast('已保存')
|
|
}
|
|
}
|
|
}, [getActiveTab, showToast])
|
|
|
|
// 另存为
|
|
const handleSaveAs = useCallback(async () => {
|
|
const tab = getActiveTab()
|
|
if (!tab) return
|
|
if (window.electronAPI) {
|
|
const result = await window.electronAPI.saveFileAs({ content: tab.content })
|
|
if (result.success) {
|
|
useTabStore.getState().setModified(tab.id, false)
|
|
showToast('已保存')
|
|
}
|
|
}
|
|
}, [getActiveTab, showToast])
|
|
|
|
// 快捷键
|
|
useKeyboard(handleOpenFile, handleSave, handleSaveAs)
|
|
|
|
// 打开最近文件
|
|
const handleOpenRecent = useCallback(async (filePath: string) => {
|
|
if (window.electronAPI) {
|
|
const result = await window.electronAPI.readFile(filePath)
|
|
if (result.success && result.content) {
|
|
createTab(filePath, result.content)
|
|
recentFilesRepository.add(filePath)
|
|
setTimeout(() => useTabStore.getState().saveToDB(), 100)
|
|
}
|
|
}
|
|
}, [createTab])
|
|
|
|
// 视图模式切换
|
|
const handleViewModeChange = useCallback((mode: 'split' | 'editor' | 'preview') => {
|
|
saveViewMode(mode)
|
|
}, [saveViewMode])
|
|
|
|
// M-11: 主进程事件注册
|
|
const handleSaveRef = useRef(handleSave)
|
|
const handleSaveAsRef = useRef(handleSaveAs)
|
|
handleSaveRef.current = handleSave
|
|
handleSaveAsRef.current = handleSaveAs
|
|
|
|
useEffect(() => {
|
|
if (!window.electronAPI) return
|
|
const api = window.electronAPI
|
|
|
|
const onOpen = (data: { filePath: string; content: string }) => {
|
|
createTab(data.filePath, data.content)
|
|
if (data.filePath) recentFilesRepository.add(data.filePath)
|
|
setTimeout(() => useTabStore.getState().saveToDB(), 100)
|
|
}
|
|
const onSave = () => handleSaveRef.current()
|
|
const onSaveAs = () => handleSaveAsRef.current()
|
|
|
|
api.onFileOpenInTab(onOpen)
|
|
api.onMenuSave(onSave)
|
|
api.onMenuSaveAs(onSaveAs)
|
|
|
|
return () => {
|
|
api.removeAllListeners('file:openInTab')
|
|
api.removeAllListeners('menu:save')
|
|
api.removeAllListeners('menu:saveAs')
|
|
}
|
|
}, [createTab])
|
|
|
|
const activeTab = getActiveTab()
|
|
const hasTabs = tabs.length > 0
|
|
|
|
// 分屏样式
|
|
const editorStyle: React.CSSProperties = viewMode === 'split'
|
|
? { flex: `0 0 ${splitRatio}%` }
|
|
: {}
|
|
const previewStyle: React.CSSProperties = viewMode === 'split'
|
|
? { flex: `0 0 ${100 - splitRatio}%` }
|
|
: {}
|
|
|
|
return (
|
|
<div id="app" className={`mode-${viewMode}`}>
|
|
<Toolbar
|
|
onOpen={handleOpenFile}
|
|
onSave={handleSave}
|
|
viewMode={viewMode}
|
|
onViewModeChange={handleViewModeChange}
|
|
darkMode={darkMode}
|
|
onToggleDark={toggleDarkMode}
|
|
/>
|
|
|
|
<div id="workspace">
|
|
<Sidebar />
|
|
|
|
<div id="main-content">
|
|
<TabBar />
|
|
|
|
{showModifiedBanner && (
|
|
<ModifiedBanner
|
|
onReload={() => {
|
|
if (window.electronAPI && modifiedFilePath) {
|
|
window.electronAPI.reloadFile().then(result => {
|
|
if (result.success && result.content) {
|
|
const tab = getActiveTab()
|
|
if (tab) {
|
|
updateTabContent(tab.id, result.content)
|
|
setModified(tab.id, false)
|
|
}
|
|
}
|
|
setShowModifiedBanner(false)
|
|
})
|
|
}
|
|
}}
|
|
onDismiss={() => setShowModifiedBanner(false)}
|
|
/>
|
|
)}
|
|
|
|
{hasTabs ? (
|
|
<div id="content-wrapper">
|
|
{viewMode !== 'preview' && (
|
|
<div id="editor-panel" style={editorStyle}>
|
|
<Editor darkMode={darkMode} />
|
|
</div>
|
|
)}
|
|
{viewMode !== 'editor' && <Resizer onResize={saveSplitRatio} />}
|
|
{viewMode !== 'editor' && (
|
|
<div id="preview-panel" style={previewStyle}>
|
|
<Preview />
|
|
</div>
|
|
)}
|
|
</div>
|
|
) : (
|
|
<WelcomeScreen
|
|
onOpen={handleOpenFile}
|
|
onNew={() => createTab(null, '')}
|
|
onOpenRecent={handleOpenRecent}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<StatusBar />
|
|
|
|
{toastMessage && <Toast message={toastMessage} />}
|
|
<DropOverlay />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
// B-08: 分屏调节器组件
|
|
function Resizer({ onResize }: { onResize: (ratio: number) => void }) {
|
|
const handleMouseDown = useCallback((e: React.MouseEvent) => {
|
|
e.preventDefault()
|
|
document.body.style.cursor = 'col-resize'
|
|
document.body.style.userSelect = 'none'
|
|
|
|
const handleMouseMove = (ev: MouseEvent) => {
|
|
const wrapper = document.getElementById('content-wrapper')
|
|
if (!wrapper) return
|
|
const rect = wrapper.getBoundingClientRect()
|
|
const pct = Math.max(20, Math.min(80, ((ev.clientX - rect.left) / rect.width) * 100))
|
|
const editorPanel = document.getElementById('editor-panel')
|
|
const previewPanel = document.getElementById('preview-panel')
|
|
if (editorPanel) editorPanel.style.flex = `0 0 ${pct}%`
|
|
if (previewPanel) previewPanel.style.flex = `0 0 ${100 - pct}%`
|
|
}
|
|
|
|
const handleMouseUp = (ev: MouseEvent) => {
|
|
document.removeEventListener('mousemove', handleMouseMove)
|
|
document.removeEventListener('mouseup', handleMouseUp)
|
|
document.body.style.cursor = ''
|
|
document.body.style.userSelect = ''
|
|
const wrapper = document.getElementById('content-wrapper')
|
|
if (wrapper) {
|
|
const rect = wrapper.getBoundingClientRect()
|
|
const pct = Math.max(20, Math.min(80, ((ev.clientX - rect.left) / rect.width) * 100))
|
|
onResize(pct)
|
|
}
|
|
}
|
|
|
|
document.addEventListener('mousemove', handleMouseMove)
|
|
document.addEventListener('mouseup', handleMouseUp)
|
|
}, [onResize])
|
|
|
|
return <div id="resizer" onMouseDown={handleMouseDown} />
|
|
}
|