packages/core (@d3ro/core) 신규 생성:
- types.ts, errors.ts, ipc-channels.ts, constants.ts (shared에서 이동)
- utils/meeting-markdown.ts, utils/markdown-to-docx.ts (main/utils에서 이동)
- subpath exports 정의 (./types, ./errors, ./ipc-channels, ./constants,
./utils/meeting-markdown, ./utils/markdown-to-docx)
- src/index.ts barrel export 추가
- docx를 core 자체 dependency로 선언
apps/desktop 연결:
- package.json에 @d3ro/core: '*' dep 추가
- tsconfig.node/web.json paths에 @d3ro/core/* 추가
- electron.vite.config.ts 3개 섹션 alias 추가 (main/preload/renderer)
- externalizeDepsPlugin exclude에 @d3ro/core (workspace 소스 번들 대상)
- vitest.config.ts alias 추가
일괄 치환 (79 파일, 167건):
- @shared/{types,errors,ipc-channels,constants} → @d3ro/core/*
- static/dynamic import + type expression import 모두 포함
- MeetingModeService.ts의 ../utils/* 상대 경로 → @d3ro/core/utils/*
- @shared/theme-vars는 V2-1c 범위로 남김 (WindowManager만 사용)
M1 수정 포함:
- electron.vite.config.ts의 resolve('src/shared') → resolve(__dirname, ...)
CWD 독립적으로 동작하도록 견고화
검증:
- typecheck 통과
- build 통과 (main+preload+renderer)
- dev 런타임 → DB/핫키/Ollama 모두 정상, 기존 데이터 연속성 유지
45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
// src/main/ipc/system-handlers.ts
|
|
|
|
import { ipcMain, app, systemPreferences } from 'electron'
|
|
import { IPC_CHANNELS } from '@d3ro/core/ipc-channels'
|
|
import { ipcSuccess } from '@d3ro/core/errors'
|
|
import type { PermissionStatus, PlaySoundParams, SetSoundEnabledParams } from '@d3ro/core/types'
|
|
import { getSoundEffectService } from '../services/SoundEffectService'
|
|
|
|
export function registerSystemHandlers(): void {
|
|
ipcMain.handle(IPC_CHANNELS.SYSTEM.GET_PLATFORM, async () => {
|
|
return ipcSuccess(process.platform)
|
|
})
|
|
|
|
ipcMain.handle(IPC_CHANNELS.SYSTEM.GET_VERSION, async () => {
|
|
return ipcSuccess(app.getVersion())
|
|
})
|
|
|
|
ipcMain.handle(IPC_CHANNELS.SYSTEM.CHECK_MIC_PERMISSION, async () => {
|
|
let status: PermissionStatus = 'unknown'
|
|
if (process.platform === 'darwin') {
|
|
const macStatus = systemPreferences.getMediaAccessStatus('microphone')
|
|
status = macStatus === 'granted' ? 'granted' : macStatus === 'denied' ? 'denied' : 'unknown'
|
|
} else {
|
|
// Windows: 마이크 권한은 별도 체크 불필요 (시스템 설정에서 관리)
|
|
status = 'granted'
|
|
}
|
|
return ipcSuccess(status)
|
|
})
|
|
|
|
// ── Sound Effect ──
|
|
|
|
ipcMain.handle(IPC_CHANNELS.SYSTEM.PLAY_SOUND, async (_event, params: PlaySoundParams) => {
|
|
getSoundEffectService().play(params.sound as 'recording-start' | 'recording-stop' | 'error' | 'cancel')
|
|
return ipcSuccess(undefined)
|
|
})
|
|
|
|
ipcMain.handle(IPC_CHANNELS.SYSTEM.SET_SOUND_ENABLED, async (_event, params: SetSoundEnabledParams) => {
|
|
getSoundEffectService().setEnabled(params.enabled)
|
|
return ipcSuccess(undefined)
|
|
})
|
|
|
|
ipcMain.handle(IPC_CHANNELS.SYSTEM.IS_SOUND_ENABLED, async () => {
|
|
return ipcSuccess(getSoundEffectService().isEnabled())
|
|
})
|
|
}
|