cc-haha/desktop/src/components/shared/UpdateChecker.tsx
程序员阿江(Relakkes) 7983cce478 feat(desktop): add CI/CD release pipeline, auto-updater, and installation guide
- Add GitHub Actions workflow for 5-platform builds (macOS ARM/x64, Linux x64/ARM64, Windows x64)
- Integrate tauri-plugin-updater with signing key and UpdateChecker UI component
- Add version management release script (scripts/release.ts)
- Add installation guide with Gatekeeper/SmartScreen bypass instructions
2026-04-10 11:00:46 +08:00

116 lines
3.7 KiB
TypeScript

import { useEffect, useState } from 'react'
import { useUIStore } from '../../stores/uiStore'
type UpdateInfo = {
version: string
downloading: boolean
progress: number
}
let isTauri = false
try {
isTauri = '__TAURI_INTERNALS__' in window
} catch {
// not in Tauri
}
export function UpdateChecker() {
const [update, setUpdate] = useState<UpdateInfo | null>(null)
const addToast = useUIStore((s) => s.addToast)
useEffect(() => {
if (!isTauri) return
const checkForUpdate = async () => {
try {
const { check } = await import('@tauri-apps/plugin-updater')
const available = await check()
if (available) {
setUpdate({ version: available.version, downloading: false, progress: 0 })
addToast({
type: 'info',
message: `New version v${available.version} available`,
duration: 0, // persist until dismissed
})
}
} catch {
// Updater not configured or no network — silently ignore
}
}
// Check after a short delay so UI loads first
const timer = setTimeout(checkForUpdate, 5000)
return () => clearTimeout(timer)
}, [addToast])
if (!update || !isTauri) return null
const handleUpdate = async () => {
try {
const { check } = await import('@tauri-apps/plugin-updater')
const { relaunch } = await import('@tauri-apps/plugin-process')
const available = await check()
if (!available) return
setUpdate((u) => u && { ...u, downloading: true })
await available.downloadAndInstall((event) => {
if (event.event === 'Started' && event.data.contentLength) {
setUpdate((u) => u && { ...u, progress: 0 })
} else if (event.event === 'Progress') {
setUpdate((u) => {
if (!u) return u
return { ...u, progress: Math.min(u.progress + (event.data.chunkLength ?? 0), 100) }
})
} else if (event.event === 'Finished') {
setUpdate((u) => u && { ...u, progress: 100 })
}
})
await relaunch()
} catch (err) {
addToast({
type: 'error',
message: `Update failed: ${err instanceof Error ? err.message : String(err)}`,
})
setUpdate((u) => u && { ...u, downloading: false })
}
}
return (
<div className="fixed top-4 right-4 z-[200] max-w-xs">
<div className="bg-[var(--color-surface-container-low)] border border-[var(--color-border)] rounded-[var(--radius-lg)] shadow-[var(--shadow-dropdown)] p-4">
<p className="text-sm font-medium text-[var(--color-text-primary)]">
v{update.version} available
</p>
{update.downloading ? (
<div className="mt-2">
<div className="h-1.5 bg-[var(--color-surface)] rounded-full overflow-hidden">
<div
className="h-full bg-[var(--color-text-accent)] transition-all duration-300"
style={{ width: `${Math.min(update.progress, 100)}%` }}
/>
</div>
<p className="text-xs text-[var(--color-text-tertiary)] mt-1">Downloading...</p>
</div>
) : (
<div className="mt-2 flex gap-2">
<button
onClick={handleUpdate}
className="px-3 py-1 text-xs font-medium rounded-[var(--radius-md)] bg-[var(--color-text-accent)] text-white hover:opacity-90 transition-opacity"
>
Update now
</button>
<button
onClick={() => setUpdate(null)}
className="px-3 py-1 text-xs text-[var(--color-text-tertiary)] hover:text-[var(--color-text-primary)] transition-colors"
>
Later
</button>
</div>
)}
</div>
</div>
)
}