- Restore Settings/Updater.tsx with channel selection and update check UI - Strip updater state/functions/Card from Settings/Proxmox.tsx; update description - Add Updater to settingsItems and /settings/updater route in App.tsx - Replace always-open Proxmox NavLink with accordion toggle (expandedSections state) - Add ChevronDown/RefreshCw to lucide imports; promote useLocation from void call
171 lines
5.5 KiB
TypeScript
171 lines
5.5 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/index';
|
|
import { Button } from '@/components/ui/index';
|
|
import { RefreshCw, Check, AlertCircle, Loader } from 'lucide-react';
|
|
import {
|
|
checkAppUpdatesCmd,
|
|
installAppUpdatesCmd,
|
|
getUpdateChannelCmd,
|
|
setUpdateChannelCmd,
|
|
} from '@/lib/tauriCommands';
|
|
|
|
export function Updater() {
|
|
const [channel, setChannel] = useState('stable');
|
|
const [checking, setChecking] = useState(false);
|
|
const [updateAvailable, setUpdateAvailable] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const loadChannel = async () => {
|
|
try {
|
|
const ch = await getUpdateChannelCmd();
|
|
setChannel(ch);
|
|
} catch {
|
|
console.error('Failed to load channel');
|
|
}
|
|
};
|
|
|
|
const checkForUpdates = async () => {
|
|
setChecking(true);
|
|
setError(null);
|
|
try {
|
|
const available = await checkAppUpdatesCmd();
|
|
setUpdateAvailable(available);
|
|
} catch {
|
|
setError('Failed to check for updates');
|
|
} finally {
|
|
setChecking(false);
|
|
}
|
|
};
|
|
|
|
const handleInstallUpdate = async () => {
|
|
try {
|
|
await installAppUpdatesCmd();
|
|
setUpdateAvailable(false);
|
|
} catch {
|
|
setError('Failed to install update');
|
|
}
|
|
};
|
|
|
|
const handleChannelChange = async (newChannel: string) => {
|
|
setChannel(newChannel);
|
|
try {
|
|
await setUpdateChannelCmd(newChannel);
|
|
} catch {
|
|
setError('Failed to update channel');
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
void loadChannel();
|
|
void checkForUpdates();
|
|
}, []);
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<div>
|
|
<h1 className="text-2xl font-bold">Updater</h1>
|
|
<p className="text-muted-foreground">Configure application auto-updates</p>
|
|
</div>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Update Channel</CardTitle>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="flex space-x-4">
|
|
<button
|
|
onClick={() => handleChannelChange('stable')}
|
|
className={`flex-1 p-4 rounded-lg border-2 transition-all ${
|
|
channel === 'stable'
|
|
? 'border-primary bg-primary/5'
|
|
: 'border-border hover:border-muted-foreground'
|
|
}`}
|
|
>
|
|
<div className="font-semibold">Stable</div>
|
|
<div className="text-sm text-muted-foreground">Production-ready releases</div>
|
|
</button>
|
|
<button
|
|
onClick={() => handleChannelChange('pre-release')}
|
|
className={`flex-1 p-4 rounded-lg border-2 transition-all ${
|
|
channel === 'pre-release'
|
|
? 'border-primary bg-primary/5'
|
|
: 'border-border hover:border-muted-foreground'
|
|
}`}
|
|
>
|
|
<div className="font-semibold">Pre-Release</div>
|
|
<div className="text-sm text-muted-foreground">Latest development builds</div>
|
|
</button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle>Check for Updates</CardTitle>
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={checkForUpdates}
|
|
disabled={checking}
|
|
>
|
|
{checking ? (
|
|
<>
|
|
<Loader className="mr-2 h-4 w-4 animate-spin" />
|
|
Checking...
|
|
</>
|
|
) : (
|
|
<>
|
|
<RefreshCw className="mr-2 h-4 w-4" />
|
|
Check Now
|
|
</>
|
|
)}
|
|
</Button>
|
|
</CardHeader>
|
|
<CardContent>
|
|
{error && (
|
|
<div className="mb-4 flex items-center space-x-2 rounded-lg bg-destructive/15 p-3 text-destructive">
|
|
<AlertCircle className="h-4 w-4" />
|
|
<span className="text-sm">{error}</span>
|
|
</div>
|
|
)}
|
|
|
|
{updateAvailable ? (
|
|
<div className="flex items-center justify-between rounded-lg bg-green-50 p-4 dark:bg-green-900/20">
|
|
<div className="flex items-center space-x-3">
|
|
<div className="rounded-full bg-green-600 p-1 text-white">
|
|
<Check className="h-4 w-4" />
|
|
</div>
|
|
<div>
|
|
<div className="font-semibold text-green-900 dark:text-green-100">
|
|
Update Available
|
|
</div>
|
|
<div className="text-sm text-green-700 dark:text-green-300">
|
|
A new version is ready to install
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Button onClick={handleInstallUpdate}>
|
|
Install Update
|
|
</Button>
|
|
</div>
|
|
) : (
|
|
<div className="flex items-center justify-between rounded-lg bg-muted p-4">
|
|
<div className="flex items-center space-x-3">
|
|
<div className="rounded-full bg-muted-foreground p-1 text-background">
|
|
<Check className="h-4 w-4" />
|
|
</div>
|
|
<div>
|
|
<div className="font-semibold">Up to Date</div>
|
|
<div className="text-sm text-muted-foreground">
|
|
You are running the latest version
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|