import type { FeatureBundleState } from "@snapotter/shared"; import { AlertCircle, Clock, Download, Loader2, RotateCcw } from "lucide-react"; import { useEffect, useState } from "react"; import { useTranslation } from "@/contexts/i18n-context"; import { format } from "@/lib/format"; import { useFeaturesStore } from "@/stores/features-store"; const PROGRESS_MESSAGES = [ "Almost there... probably...", "Good things take time...", "Still faster than watching paint dry...", "Your patience is truly inspiring...", "Working harder than it looks...", "This is the exciting part, trust me...", "Doing important behind-the-scenes stuff...", "If you're reading this, it's working...", "Preparing something awesome...", "Worth every second, pinky promise...", "The suspense is part of the experience...", "Teaching your computer new tricks...", "Setting up your superpowers...", "Your images will thank you later...", "Loading... but make it fancy...", "This would be a great time for coffee...", "Rome wasn't built in a day either...", "Shhh... genius at work...", "Making your photos jealous of what's coming...", "Assembling the dream team...", "Unpacking awesomeness...", "Almost done thinking about starting... just kidding...", "Plot twist: this is actually doing something...", "Warming up the creative engines...", "Imagination loading...", "Not a screensaver, we promise...", "Great art takes time to install...", "Your future self will thank you...", "Grabbing some really smart files...", "Hang tight, the best is yet to come...", ]; function formatTimeRemaining(ms: number): string { if (ms < 60000) return "Less than a minute left"; const mins = Math.ceil(ms / 60000); if (mins === 1) return "~1 minute left"; return `~${mins} minutes left`; } interface FeatureInstallPromptProps { bundle: FeatureBundleState; isAdmin: boolean; toolName?: string; toolDescription?: string; } export function FeatureInstallPrompt({ bundle, isAdmin, toolName, toolDescription, }: FeatureInstallPromptProps) { const { t } = useTranslation(); const { installBundle, clearError, installing, errors, startTimes, queued } = useFeaturesStore(); const progress = installing[bundle.id] ?? null; const error = errors[bundle.id] ?? null; const isInstalling = !!progress; const isQueued = queued.includes(bundle.id); const startTime = startTimes[bundle.id] ?? null; const displayName = toolName || bundle.name; const displayDescription = toolDescription || bundle.description; const isRepair = bundle.status === "error"; const [messageIndex, setMessageIndex] = useState(() => Math.floor(Math.random() * PROGRESS_MESSAGES.length), ); const [now, setNow] = useState(Date.now()); useEffect(() => { if (!isInstalling) return; const interval = setInterval(() => { setMessageIndex((prev) => (prev + 1) % PROGRESS_MESSAGES.length); setNow(Date.now()); }, 3000); return () => clearInterval(interval); }, [isInstalling]); const eta = (() => { if (!progress || !startTime || progress.percent <= 2) return null; const elapsed = now - startTime; const rate = progress.percent / elapsed; if (rate <= 0) return null; const remaining = (100 - progress.percent) / rate; return formatTimeRemaining(remaining); })(); function handleInstall() { clearError(bundle.id); installBundle(bundle.id); } // Defensive guard: if the bundle is already installed (status may have // been refreshed after mount), never render the install prompt. if (bundle.status === "installed") { return null; } if (!isAdmin) { return (
{t.features.notEnabledDescription}
{isRepair ? t.features.repairDescription : displayDescription}
{!isRepair && ({format(t.features.requiresDownload, { size: bundle.estimatedSize })}
)}{eta}
}