mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-03-10 14:13:19 +00:00
372 lines
13 KiB
TypeScript
372 lines
13 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { motion } from 'framer-motion';
|
|
import { useSettings } from '~/lib/hooks/useSettings';
|
|
import { logStore } from '~/lib/stores/logs';
|
|
import { toast } from 'react-toastify';
|
|
import { Dialog, DialogRoot, DialogTitle, DialogDescription, DialogButton } from '~/components/ui/Dialog';
|
|
import { classNames } from '~/utils/classNames';
|
|
|
|
interface UpdateProgress {
|
|
stage: 'fetch' | 'pull' | 'install' | 'build' | 'complete';
|
|
message: string;
|
|
progress?: number;
|
|
error?: string;
|
|
details?: {
|
|
changedFiles?: string[];
|
|
additions?: number;
|
|
deletions?: number;
|
|
commitMessages?: string[];
|
|
totalSize?: string;
|
|
currentCommit?: string;
|
|
remoteCommit?: string;
|
|
};
|
|
}
|
|
|
|
interface UpdateSettings {
|
|
autoUpdate: boolean;
|
|
notifyInApp: boolean;
|
|
checkInterval: number;
|
|
}
|
|
|
|
const ProgressBar = ({ progress }: { progress: number }) => (
|
|
<div className="w-full h-2 bg-gray-200 rounded-full overflow-hidden">
|
|
<motion.div
|
|
className="h-full bg-blue-500"
|
|
initial={{ width: 0 }}
|
|
animate={{ width: `${progress}%` }}
|
|
transition={{ duration: 0.3 }}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
const UpdateProgressDisplay = ({ progress }: { progress: UpdateProgress }) => (
|
|
<div className="mt-4 space-y-2">
|
|
<div className="flex justify-between items-center">
|
|
<span className="text-sm font-medium">{progress.message}</span>
|
|
<span className="text-sm text-gray-500">{progress.progress}%</span>
|
|
</div>
|
|
<ProgressBar progress={progress.progress || 0} />
|
|
{progress.details && (
|
|
<div className="mt-2 text-sm text-gray-600">
|
|
{progress.details.changedFiles && progress.details.changedFiles.length > 0 && (
|
|
<div className="mt-2">
|
|
<div className="font-medium">Changed Files:</div>
|
|
<ul className="list-disc list-inside">
|
|
{progress.details.changedFiles.map((file, index) => (
|
|
<li key={index} className="ml-2">
|
|
{file}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
)}
|
|
{progress.details.totalSize && <div className="mt-1">Total size: {progress.details.totalSize}</div>}
|
|
{progress.details.additions !== undefined && progress.details.deletions !== undefined && (
|
|
<div className="mt-1">
|
|
Changes: <span className="text-green-600">+{progress.details.additions}</span>{' '}
|
|
<span className="text-red-600">-{progress.details.deletions}</span>
|
|
</div>
|
|
)}
|
|
{progress.details.currentCommit && progress.details.remoteCommit && (
|
|
<div className="mt-1">
|
|
Updating from {progress.details.currentCommit} to {progress.details.remoteCommit}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
|
|
const UpdateTab = () => {
|
|
const { isLatestBranch } = useSettings();
|
|
const [isChecking, setIsChecking] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [updateSettings, setUpdateSettings] = useState<UpdateSettings>(() => {
|
|
const stored = localStorage.getItem('update_settings');
|
|
return stored
|
|
? JSON.parse(stored)
|
|
: {
|
|
autoUpdate: false,
|
|
notifyInApp: true,
|
|
checkInterval: 24,
|
|
};
|
|
});
|
|
const [showUpdateDialog, setShowUpdateDialog] = useState(false);
|
|
const [updateProgress, setUpdateProgress] = useState<UpdateProgress | null>(null);
|
|
|
|
useEffect(() => {
|
|
localStorage.setItem('update_settings', JSON.stringify(updateSettings));
|
|
}, [updateSettings]);
|
|
|
|
const checkForUpdates = async () => {
|
|
console.log('Starting update check...');
|
|
setIsChecking(true);
|
|
setError(null);
|
|
setUpdateProgress(null);
|
|
|
|
try {
|
|
const branchToCheck = isLatestBranch ? 'main' : 'stable';
|
|
|
|
// Start the update check with streaming progress
|
|
const response = await fetch('/api/update', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({ branch: branchToCheck }),
|
|
});
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`Update check failed: ${response.statusText}`);
|
|
}
|
|
|
|
const reader = response.body?.getReader();
|
|
|
|
if (!reader) {
|
|
throw new Error('No response stream available');
|
|
}
|
|
|
|
// Read the stream
|
|
while (true) {
|
|
const { done, value } = await reader.read();
|
|
|
|
if (done) {
|
|
break;
|
|
}
|
|
|
|
// Convert the chunk to text and parse the JSON
|
|
const chunk = new TextDecoder().decode(value);
|
|
const lines = chunk.split('\n').filter(Boolean);
|
|
|
|
for (const line of lines) {
|
|
try {
|
|
const progress = JSON.parse(line) as UpdateProgress;
|
|
setUpdateProgress(progress);
|
|
|
|
if (progress.error) {
|
|
setError(progress.error);
|
|
}
|
|
|
|
// If we're done, update the UI accordingly
|
|
if (progress.stage === 'complete') {
|
|
setIsChecking(false);
|
|
|
|
if (!progress.error) {
|
|
// Update was successful
|
|
toast.success('Update check completed');
|
|
|
|
if (progress.details?.changedFiles?.length) {
|
|
setShowUpdateDialog(true);
|
|
}
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.error('Error parsing progress update:', e);
|
|
}
|
|
}
|
|
}
|
|
} catch (error) {
|
|
setError(error instanceof Error ? error.message : 'Unknown error occurred');
|
|
logStore.logWarning('Update Check Failed', {
|
|
type: 'update',
|
|
message: error instanceof Error ? error.message : 'Unknown error occurred',
|
|
});
|
|
} finally {
|
|
setIsChecking(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-col gap-6">
|
|
<motion.div
|
|
className="flex items-center gap-3"
|
|
initial={{ opacity: 0, y: -20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3 }}
|
|
>
|
|
<div className="i-ph:arrow-circle-up text-xl text-purple-500" />
|
|
<div>
|
|
<h3 className="text-lg font-medium text-bolt-elements-textPrimary">Updates</h3>
|
|
<p className="text-sm text-bolt-elements-textSecondary">Check for and manage application updates</p>
|
|
</div>
|
|
</motion.div>
|
|
|
|
{/* Update Settings Card */}
|
|
<motion.div
|
|
className="p-6 rounded-xl bg-white dark:bg-[#0A0A0A] border border-[#E5E5E5] dark:border-[#1A1A1A]"
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3, delay: 0.1 }}
|
|
>
|
|
<div className="flex items-center gap-3 mb-6">
|
|
<div className="i-ph:gear text-purple-500 w-5 h-5" />
|
|
<h3 className="text-lg font-medium text-bolt-elements-textPrimary">Update Settings</h3>
|
|
</div>
|
|
|
|
<div className="space-y-4">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<span className="text-sm text-bolt-elements-textPrimary">Automatic Updates</span>
|
|
<p className="text-xs text-bolt-elements-textSecondary">
|
|
Automatically check and apply updates when available
|
|
</p>
|
|
</div>
|
|
<button
|
|
onClick={() => setUpdateSettings((prev) => ({ ...prev, autoUpdate: !prev.autoUpdate }))}
|
|
className={classNames(
|
|
'relative inline-flex h-6 w-11 items-center rounded-full transition-colors',
|
|
updateSettings.autoUpdate ? 'bg-purple-500' : 'bg-gray-200 dark:bg-gray-700',
|
|
)}
|
|
>
|
|
<span
|
|
className={classNames(
|
|
'inline-block h-4 w-4 transform rounded-full bg-white transition-transform',
|
|
updateSettings.autoUpdate ? 'translate-x-6' : 'translate-x-1',
|
|
)}
|
|
/>
|
|
</button>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<span className="text-sm text-bolt-elements-textPrimary">In-App Notifications</span>
|
|
<p className="text-xs text-bolt-elements-textSecondary">Show notifications when updates are available</p>
|
|
</div>
|
|
<button
|
|
onClick={() => setUpdateSettings((prev) => ({ ...prev, notifyInApp: !prev.notifyInApp }))}
|
|
className={classNames(
|
|
'relative inline-flex h-6 w-11 items-center rounded-full transition-colors',
|
|
updateSettings.notifyInApp ? 'bg-purple-500' : 'bg-gray-200 dark:bg-gray-700',
|
|
)}
|
|
>
|
|
<span
|
|
className={classNames(
|
|
'inline-block h-4 w-4 transform rounded-full bg-white transition-transform',
|
|
updateSettings.notifyInApp ? 'translate-x-6' : 'translate-x-1',
|
|
)}
|
|
/>
|
|
</button>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<span className="text-sm text-bolt-elements-textPrimary">Check Interval</span>
|
|
<p className="text-xs text-bolt-elements-textSecondary">How often to check for updates</p>
|
|
</div>
|
|
<select
|
|
value={updateSettings.checkInterval}
|
|
onChange={(e) => setUpdateSettings((prev) => ({ ...prev, checkInterval: Number(e.target.value) }))}
|
|
className={classNames(
|
|
'px-3 py-2 rounded-lg text-sm',
|
|
'bg-[#F5F5F5] dark:bg-[#1A1A1A]',
|
|
'border border-[#E5E5E5] dark:border-[#1A1A1A]',
|
|
'text-bolt-elements-textPrimary',
|
|
'hover:bg-[#E5E5E5] dark:hover:bg-[#2A2A2A]',
|
|
'transition-colors duration-200',
|
|
)}
|
|
>
|
|
<option value="6">6 hours</option>
|
|
<option value="12">12 hours</option>
|
|
<option value="24">24 hours</option>
|
|
<option value="48">48 hours</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
|
|
{/* Update Status Card */}
|
|
<motion.div
|
|
className="p-6 rounded-xl bg-white dark:bg-[#0A0A0A] border border-[#E5E5E5] dark:border-[#1A1A1A]"
|
|
initial={{ opacity: 0, y: 20 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3, delay: 0.2 }}
|
|
>
|
|
<div className="flex items-center justify-between mb-6">
|
|
<div className="flex items-center gap-3">
|
|
<div className="i-ph:arrows-clockwise text-purple-500 w-5 h-5" />
|
|
<h3 className="text-lg font-medium text-bolt-elements-textPrimary">Update Status</h3>
|
|
</div>
|
|
<button
|
|
onClick={() => {
|
|
setError(null);
|
|
checkForUpdates();
|
|
}}
|
|
className={classNames(
|
|
'flex items-center gap-2 px-4 py-2 rounded-lg text-sm',
|
|
'bg-[#F5F5F5] dark:bg-[#1A1A1A]',
|
|
'hover:bg-purple-500/10 hover:text-purple-500',
|
|
'dark:hover:bg-purple-500/20 dark:hover:text-purple-500',
|
|
'text-bolt-elements-textPrimary',
|
|
'transition-colors duration-200',
|
|
'disabled:opacity-50 disabled:cursor-not-allowed',
|
|
)}
|
|
disabled={isChecking}
|
|
>
|
|
{isChecking ? (
|
|
<div className="flex items-center gap-2">
|
|
<motion.div
|
|
animate={{ rotate: 360 }}
|
|
transition={{ duration: 1, repeat: Infinity, ease: 'linear' }}
|
|
className="i-ph:arrows-clockwise w-4 h-4"
|
|
/>
|
|
Checking...
|
|
</div>
|
|
) : (
|
|
<>
|
|
<div className="i-ph:arrows-clockwise w-4 h-4" />
|
|
Check for Updates
|
|
</>
|
|
)}
|
|
</button>
|
|
</div>
|
|
|
|
{/* Show progress information */}
|
|
{updateProgress && <UpdateProgressDisplay progress={updateProgress} />}
|
|
|
|
{error && <div className="mt-4 p-4 bg-red-100 text-red-700 rounded">{error}</div>}
|
|
</motion.div>
|
|
|
|
{/* Update dialog */}
|
|
<DialogRoot open={showUpdateDialog} onOpenChange={setShowUpdateDialog}>
|
|
<Dialog>
|
|
<DialogTitle>Update Available</DialogTitle>
|
|
<DialogDescription>
|
|
{updateProgress?.details?.changedFiles && (
|
|
<div className="mt-4">
|
|
<p className="font-medium">Changes:</p>
|
|
<ul className="list-disc list-inside mt-2">
|
|
{updateProgress.details.changedFiles.map((file, index) => (
|
|
<li key={index} className="text-sm">
|
|
{file}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
{updateProgress.details.totalSize && (
|
|
<p className="mt-2 text-sm">Total size: {updateProgress.details.totalSize}</p>
|
|
)}
|
|
</div>
|
|
)}
|
|
</DialogDescription>
|
|
<div className="flex justify-end gap-2 mt-4">
|
|
<DialogButton type="secondary" onClick={() => setShowUpdateDialog(false)}>
|
|
Cancel
|
|
</DialogButton>
|
|
<DialogButton
|
|
type="primary"
|
|
onClick={() => {
|
|
setShowUpdateDialog(false);
|
|
|
|
// Handle update initiation here
|
|
}}
|
|
>
|
|
Update Now
|
|
</DialogButton>
|
|
</div>
|
|
</Dialog>
|
|
</DialogRoot>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default UpdateTab;
|