Phase 10 킬러 피처: - MemoService: 태그 CRUD + 마크다운 내보내기 (memo_tags DB) - VoiceCommandService: 키워드→명령어 매칭, 프리셋 4종 - ScreenContextService: PowerShell 활성 윈도우 + Ctrl+C 선택 텍스트 - ChainService: LLM 명령어 순차 실행 파이프라인 - CaptionService: 6초 청크 연속 전사 + 시스템 오디오 루프백 VoiceModeService 파이프라인 통합: - 녹음 시작 → 컨텍스트 캡처 → STT → 키워드 매칭 → LLM(체인/컨텍스트 주입) → 삽입 시스템 오디오 캡처: - setDisplayMediaRequestHandler + audio: 'loopback' (IPC 브릿지) - electron-audio-loopback 패키지 contextIsolation 호환 불가 → 직접 구현 Phase 11 수익화: - LicenseService: Free/Pro/Pro+ 3티어, LemonSqueezy API - Feature Gate: requireFeature/checkFeature/consumeFeature - 일일 쿼터: Free dictation 20/일, LLM 10/일 (SQLite daily_usage) - LicenseModal, ProBadge, UpgradePromptModal UI 디자인 보강: - d3roTypo(13종), d3roShadow(10종), d3roRadius(7종) 토큰 시스템 - ScreenPanel, ButtonGroup DS 컴포넌트 신규 - PhosphorText 4→13종 변형, MetalDial conic-gradient 광택 - 공유 컴포넌트: EmptyStateCard, SearchInput, PageHeader, HistoryEntryCard 기타: - 자막 핫키 SSOT 전체 연동 (Config→Hotkey→VoiceMode→Caption→Settings) - StatusBar 자막 LED + 효과음, 자막 로딩 UI - LLM 상태 이벤트 전파 수정 (폴링 제거 → onStatusChanged) - 커맨드 팝업 "선택 해제" 항목 추가
143 lines
6 KiB
TypeScript
143 lines
6 KiB
TypeScript
// src/renderer/pages/DictionaryPage.tsx
|
|
// 인스트루먼트 미학: MetalCard + PhosphorText + 타이포 토큰
|
|
|
|
import { useState, useEffect, useCallback } from 'react'
|
|
import { Box, TextField, Button, IconButton, Dialog, DialogTitle, DialogContent, DialogActions } from '@mui/material'
|
|
import AddIcon from '@mui/icons-material/Add'
|
|
import DeleteIcon from '@mui/icons-material/Delete'
|
|
import EditIcon from '@mui/icons-material/Edit'
|
|
import { MetalCard, PhosphorText } from '../components/ds'
|
|
import { PageHeader, SearchInput, EmptyStateCard } from '../components/shared'
|
|
import { d3roPalette, d3roFontMono, d3roTypo } from '../theme'
|
|
import { useI18n } from '../i18n'
|
|
import type { DictionaryEntry, DictionaryPage as DictPageData } from '@shared/types'
|
|
|
|
const PAGE_SIZE = 50
|
|
|
|
export function DictionaryPage(): React.ReactElement {
|
|
const { t } = useI18n()
|
|
const [data, setData] = useState<DictPageData | null>(null)
|
|
const [search, setSearch] = useState('')
|
|
const [loading, setLoading] = useState(true)
|
|
const [dialogOpen, setDialogOpen] = useState(false)
|
|
const [editId, setEditId] = useState<string | null>(null)
|
|
const [formWord, setFormWord] = useState('')
|
|
const [formPronunciation, setFormPronunciation] = useState('')
|
|
|
|
const loadData = useCallback(async () => {
|
|
setLoading(true)
|
|
const result = search.trim()
|
|
? await window.electronAPI.dictionary.search({ query: search, page: 0, pageSize: PAGE_SIZE })
|
|
: await window.electronAPI.dictionary.getAll({ page: 0, pageSize: PAGE_SIZE })
|
|
if (result.success) setData(result.data)
|
|
setLoading(false)
|
|
}, [search])
|
|
|
|
useEffect(() => { loadData() }, [loadData])
|
|
|
|
const openAdd = () => {
|
|
setEditId(null)
|
|
setFormWord('')
|
|
setFormPronunciation('')
|
|
setDialogOpen(true)
|
|
}
|
|
|
|
const openEdit = (entry: DictionaryEntry) => {
|
|
setEditId(entry.id)
|
|
setFormWord(entry.word)
|
|
setFormPronunciation(entry.pronunciation ?? '')
|
|
setDialogOpen(true)
|
|
}
|
|
|
|
const handleSave = async () => {
|
|
if (!formWord.trim()) return
|
|
if (editId) {
|
|
await window.electronAPI.dictionary.update({
|
|
id: editId,
|
|
word: formWord.trim(),
|
|
pronunciation: formPronunciation.trim() || undefined,
|
|
})
|
|
} else {
|
|
await window.electronAPI.dictionary.add({
|
|
word: formWord.trim(),
|
|
pronunciation: formPronunciation.trim() || undefined,
|
|
})
|
|
}
|
|
setDialogOpen(false)
|
|
loadData()
|
|
}
|
|
|
|
return (
|
|
<Box sx={{ maxWidth: 900, mx: 'auto', p: 4 }}>
|
|
<PageHeader
|
|
title={t('dictionary.title').toUpperCase()}
|
|
count={t('dictionary.words', { count: data?.total ?? 0 }).toUpperCase()}
|
|
action={
|
|
<Button variant="contained" startIcon={<AddIcon />} onClick={openAdd} size="small">
|
|
{t('dictionary.add').toUpperCase()}
|
|
</Button>
|
|
}
|
|
/>
|
|
|
|
<SearchInput
|
|
placeholder={t('dictionary.search').toUpperCase()}
|
|
value={search}
|
|
onChange={setSearch}
|
|
/>
|
|
|
|
{loading ? (
|
|
<PhosphorText variant="dim">{t('common.loading').toUpperCase()}</PhosphorText>
|
|
) : !data || data.entries.length === 0 ? (
|
|
<EmptyStateCard message={search ? t('dictionary.noResults').toUpperCase() : t('dictionary.noWords').toUpperCase()} />
|
|
) : (
|
|
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 1 }}>
|
|
{data.entries.map((entry: DictionaryEntry) => (
|
|
<MetalCard key={entry.id}>
|
|
<Box sx={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between' }}>
|
|
<Box>
|
|
<Box sx={{ display: 'flex', alignItems: 'baseline', gap: 1.5 }}>
|
|
<Box sx={{ fontSize: d3roTypo.body.size, fontWeight: d3roTypo.heading.weight, color: d3roPalette.text.primary }}>{entry.word}</Box>
|
|
{entry.pronunciation && (
|
|
<Box sx={{ fontFamily: d3roFontMono, fontSize: d3roTypo.meta.size, color: d3roPalette.text.dimLabel }}>[{entry.pronunciation}]</Box>
|
|
)}
|
|
</Box>
|
|
<Box sx={{
|
|
fontFamily: d3roFontMono,
|
|
fontSize: d3roTypo.label.size,
|
|
color: d3roPalette.text.inactive,
|
|
mt: 0.5,
|
|
letterSpacing: d3roTypo.label.spacing,
|
|
}}>
|
|
{entry.category.toUpperCase()} · {t('dictionary.used', { count: entry.usageCount })}
|
|
</Box>
|
|
</Box>
|
|
<Box sx={{ display: 'flex', gap: 0.5 }}>
|
|
<IconButton size="small" onClick={() => openEdit(entry)}
|
|
sx={{ color: d3roPalette.text.inactive, '&:hover': { color: d3roPalette.accent.amber } }}>
|
|
<EditIcon sx={{ fontSize: 16 }} />
|
|
</IconButton>
|
|
<IconButton size="small" onClick={() => { window.electronAPI.dictionary.delete({ id: entry.id }); loadData() }}
|
|
sx={{ color: d3roPalette.text.inactive, '&:hover': { color: d3roPalette.tag.red } }}>
|
|
<DeleteIcon sx={{ fontSize: 16 }} />
|
|
</IconButton>
|
|
</Box>
|
|
</Box>
|
|
</MetalCard>
|
|
))}
|
|
</Box>
|
|
)}
|
|
|
|
<Dialog open={dialogOpen} onClose={() => setDialogOpen(false)} maxWidth="xs" fullWidth>
|
|
<DialogTitle sx={{ fontWeight: 700 }}>{editId ? t('dictionary.editTitle') : t('dictionary.addTitle')}</DialogTitle>
|
|
<DialogContent>
|
|
<TextField label={t('dictionary.word')} value={formWord} onChange={(e) => setFormWord(e.target.value)} fullWidth autoFocus sx={{ mt: 1 }} />
|
|
<TextField label={t('dictionary.pronunciation')} value={formPronunciation} onChange={(e) => setFormPronunciation(e.target.value)} fullWidth sx={{ mt: 2 }} />
|
|
</DialogContent>
|
|
<DialogActions sx={{ px: 3, pb: 2 }}>
|
|
<Button onClick={() => setDialogOpen(false)} sx={{ color: d3roPalette.text.inactive }}>{t('common.cancel')}</Button>
|
|
<Button onClick={handleSave} variant="contained" disabled={!formWord.trim()}>{t('common.save')}</Button>
|
|
</DialogActions>
|
|
</Dialog>
|
|
</Box>
|
|
)
|
|
}
|