mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-16 13:03:31 +08:00
Introduce the Electron desktop shell alongside the existing React renderer and local Bun server boundary. The migration keeps the DesktopHost contract explicit across Tauri, Electron, and browser runtimes while adding Electron main/preload services for dialogs, shell, notifications, updates, tray/window lifecycle, terminal, preview WebContentsView, app mode, and release/package validation.
The commit also carries the latest local main desktop command updates, including agent slash entries and hidden-by-default markdown thinking details, so the packaged Electron build matches the current main UX surface.
Constraint: React renderer, local Bun server, REST/WebSocket, and sidecar boundaries must remain reusable during the migration
Constraint: macOS dev packages are ad-hoc signed and cannot prove Developer ID notarization or Gatekeeper release launch
Rejected: Browser-only smoke validation | it cannot exercise native dialogs, keychain prompts, notification behavior, or packaged app startup
Confidence: medium
Scope-risk: broad
Directive: Do not remove Tauri host support until signed Electron release artifacts pass native OS smoke on macOS, Windows, and Linux
Tested: bun run check:desktop
Tested: cd desktop && bun run check:electron
Tested: CSC_IDENTITY_AUTO_DISCOVERY=false bun run electron📦dir
Tested: bun run test:package-smoke --platform macos --package-kind dir --artifacts-dir desktop/build-artifacts/electron
Tested: Computer Use read packaged Electron app window at desktop/build-artifacts/electron/mac-arm64/Claude Code Haha.app
Not-tested: Developer ID signed/notarized Gatekeeper launch
Not-tested: Real OS notification click-to-session action
Not-tested: Windows and Linux packaged app smoke on real hosts
115 lines
3.7 KiB
TypeScript
115 lines
3.7 KiB
TypeScript
import { mkdirSync, mkdtempSync, rmSync, writeFileSync } from 'node:fs'
|
|
import path from 'node:path'
|
|
import { tmpdir } from 'node:os'
|
|
import { afterEach, describe, expect, it, vi } from 'vitest'
|
|
import { installTray, resolveTrayIconPath } from './tray'
|
|
|
|
const trayMocksKey = '__electronTrayMocks'
|
|
|
|
vi.mock('electron', () => {
|
|
const mocks = (globalThis as Record<string, unknown>)[trayMocksKey] as ReturnType<typeof createElectronTrayMocks> | undefined
|
|
if (!mocks) {
|
|
throw new Error('Electron tray mocks were not initialized for this test')
|
|
}
|
|
|
|
return {
|
|
Menu: {
|
|
buildFromTemplate: mocks.buildFromTemplate,
|
|
},
|
|
Tray: mocks.Tray.mockImplementation(() => mocks.tray),
|
|
nativeImage: {
|
|
createFromPath: mocks.createFromPath,
|
|
},
|
|
}
|
|
})
|
|
|
|
function createElectronTrayMocks() {
|
|
const handlers = new Map<string, () => void>()
|
|
return {
|
|
handlers,
|
|
buildFromTemplate: vi.fn((template: unknown) => ({ template })),
|
|
createFromPath: vi.fn((iconPath: string) => ({ iconPath })),
|
|
tray: {
|
|
setToolTip: vi.fn(),
|
|
setContextMenu: vi.fn(),
|
|
on: vi.fn((event: string, handler: () => void) => {
|
|
handlers.set(event, handler)
|
|
}),
|
|
destroy: vi.fn(),
|
|
},
|
|
Tray: vi.fn(),
|
|
}
|
|
}
|
|
|
|
describe('Electron tray service', () => {
|
|
afterEach(() => {
|
|
delete (globalThis as Record<string, unknown>)[trayMocksKey]
|
|
})
|
|
|
|
it('uses the existing desktop icon assets for the tray icon', () => {
|
|
const root = mkdtempSync(path.join(tmpdir(), 'electron-tray-'))
|
|
try {
|
|
const iconPath = path.join(root, 'src-tauri', 'icons', 'icon.png')
|
|
mkdirSync(path.dirname(iconPath), { recursive: true })
|
|
writeFileSync(iconPath, 'png')
|
|
|
|
expect(resolveTrayIconPath(root)).toBe(iconPath)
|
|
} finally {
|
|
rmSync(root, { recursive: true, force: true })
|
|
}
|
|
})
|
|
|
|
it('fails clearly when no tray icon exists', () => {
|
|
const root = mkdtempSync(path.join(tmpdir(), 'electron-tray-missing-'))
|
|
try {
|
|
expect(() => resolveTrayIconPath(root)).toThrow('Electron tray icon not found')
|
|
} finally {
|
|
rmSync(root, { recursive: true, force: true })
|
|
}
|
|
})
|
|
|
|
it('installs tray handlers that show the app, quit explicitly, and dispose cleanly', async () => {
|
|
const root = mkdtempSync(path.join(tmpdir(), 'electron-tray-install-'))
|
|
try {
|
|
const trayMocks = createElectronTrayMocks()
|
|
;(globalThis as Record<string, unknown>)[trayMocksKey] = trayMocks
|
|
const iconPath = path.join(root, 'src-tauri', 'icons', 'icon.png')
|
|
mkdirSync(path.dirname(iconPath), { recursive: true })
|
|
writeFileSync(iconPath, 'png')
|
|
const show = vi.fn()
|
|
const quit = vi.fn()
|
|
|
|
const controller = await installTray({
|
|
app: { name: 'Claude Code Haha' } as never,
|
|
desktopRoot: root,
|
|
show,
|
|
quit,
|
|
})
|
|
|
|
expect(trayMocks.createFromPath).toHaveBeenCalledWith(iconPath)
|
|
expect(trayMocks.Tray).toHaveBeenCalledTimes(1)
|
|
expect(trayMocks.tray.setToolTip).toHaveBeenCalledWith('Claude Code Haha')
|
|
expect(trayMocks.buildFromTemplate).toHaveBeenCalledTimes(1)
|
|
|
|
const template = trayMocks.buildFromTemplate.mock.calls[0]?.[0] as Array<{ label?: string, click?: () => void, type?: string }>
|
|
expect(template.map(item => item.label ?? item.type)).toEqual([
|
|
'Show Claude Code Haha',
|
|
'separator',
|
|
'Quit Claude Code Haha',
|
|
])
|
|
|
|
template[0]?.click?.()
|
|
template[2]?.click?.()
|
|
trayMocks.handlers.get('click')?.()
|
|
|
|
expect(show).toHaveBeenCalledTimes(2)
|
|
expect(quit).toHaveBeenCalledTimes(1)
|
|
|
|
controller.dispose()
|
|
expect(trayMocks.tray.destroy).toHaveBeenCalledTimes(1)
|
|
} finally {
|
|
rmSync(root, { recursive: true, force: true })
|
|
}
|
|
})
|
|
})
|