Spaces:
Running
Running
File size: 8,537 Bytes
1904e4c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 |
import { useState, useRef, useEffect } from "react";
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
import { Label } from "@/components/ui/label";
import { Input } from "@/components/ui/input";
import { Separator } from "@/components/ui/separator";
import { toast } from "@/components/ui/sonner";
import { storage, STORAGE_KEYS } from "@/lib/storage";
import { X, Settings, Moon, Sun, Globe, Shield, Database, Cloud } from "lucide-react";
interface SettingsModalProps {
open: boolean;
onOpenChange: (open: boolean) => void;
}
const THEME_OPTIONS = [
{ value: "light", label: "Light", icon: Sun },
{ value: "dark", label: "Dark", icon: Moon },
{ value: "system", label: "System", icon: Globe },
];
export const SettingsModal = ({ open, onOpenChange }: SettingsModalProps) => {
// Load settings from storage on mount
const [theme, setTheme] = useState(() => {
return storage.get<string>(STORAGE_KEYS.THEME) || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
});
const [apiEndpoint, setApiEndpoint] = useState(() =>
storage.get<string>(STORAGE_KEYS.API_ENDPOINT) || "https://insight-ai-api.hf.space"
);
const fileInputRef = useRef<HTMLInputElement>(null);
// Sync settings from storage when modal opens
useEffect(() => {
if (open) {
setTheme(storage.get<string>(STORAGE_KEYS.THEME));
setApiEndpoint(storage.get<string>(STORAGE_KEYS.API_ENDPOINT));
}
}, [open]);
const handleThemeChange = (newTheme: string) => {
setTheme(newTheme);
const root = window.document.documentElement;
if (newTheme === "dark") {
root.classList.add("dark");
} else if (newTheme === "light") {
root.classList.remove("dark");
} else {
// System theme
if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
root.classList.add("dark");
} else {
root.classList.remove("dark");
}
}
storage.set(STORAGE_KEYS.THEME, newTheme);
toast.success("Theme updated successfully");
};
const handleSaveEndpoint = () => {
storage.set(STORAGE_KEYS.API_ENDPOINT, apiEndpoint);
toast.success("API endpoint saved successfully");
};
const handleClearChats = () => {
storage.set(STORAGE_KEYS.CHATS, []);
toast.success("Chat history cleared successfully");
window.location.reload();
};
const handleClearSources = () => {
storage.set(STORAGE_KEYS.SOURCES, []);
toast.success("Sources cleared successfully");
};
const handleResetSettings = () => {
// Reset all keys to their default values using storage lib
storage.resetToDefaults();
window.location.reload();
toast.success("Settings reset to defaults");
};
const handleExportStorage = () => {
const data = storage.export();
const blob = new Blob([JSON.stringify(data, null, 2)], { type: "application/json" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = "insight-storage-export.json";
a.click();
URL.revokeObjectURL(url);
toast.success("Storage exported successfully");
};
const handleImportStorage = (event: React.ChangeEvent<HTMLInputElement>) => {
const file = event.target.files?.[0];
if (!file) return;
const reader = new FileReader();
reader.onload = (e) => {
try {
const result = e.target?.result as string;
const data = JSON.parse(result);
if (storage.import(data)) {
toast.success("Storage imported successfully. Please refresh the page.");
} else {
toast.error("Failed to import storage.");
}
} catch {
toast.error("Invalid file format.");
}
};
reader.readAsText(file);
event.target.value = "";
};
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="w-full max-w-3xl">
<DialogHeader>
<DialogTitle className="flex items-center text-xl">
<Settings className="mr-2 h-5 w-5" />
Settings
</DialogTitle>
</DialogHeader>
<Separator />
<div className="max-h-[80dvh] md:max-h-[75vh] overflow-y-auto grid gap-6">
<div className="space-y-4">
<h3 className="text-sm font-medium flex items-center">
<Moon className="mr-2 h-4 w-4" />
Appearance
</h3>
<RadioGroup
value={theme}
onValueChange={handleThemeChange}
className="grid grid-cols-3 gap-2"
>
{THEME_OPTIONS.map(({ value, label, icon: Icon }) => (
<div key={value} className="flex flex-col items-center space-y-2">
<Label
htmlFor={value}
className={
`flex flex-col items-center justify-center w-full h-20 border rounded-md cursor-pointer transition-colors
${theme === value
? "bg-financial-accent/30 border-financial-accent/30 ring-2 ring-financial-accent"
: "hover:bg-financial-accent/30 hover:border-financial-accent/30"}
`
}
>
<Icon className="h-8 w-8 mb-2" />
{label}
</Label>
<RadioGroupItem value={value} id={value} className="sr-only" />
</div>
))}
</RadioGroup>
</div>
<Separator />
<div className="space-y-4">
<h3 className="text-sm font-medium flex items-center">
<Database className="mr-2 h-4 w-4" />
API Configuration
</h3>
<div className="space-y-2">
<Label htmlFor="api-endpoint">API Endpoint</Label>
<div className="flex space-x-2">
<Input
id="api-endpoint"
value={apiEndpoint}
onChange={(e) => setApiEndpoint(e.target.value)}
placeholder="Ex: http://localhost:8000"
/>
<Button onClick={handleSaveEndpoint} variant="outline">
<Cloud className="h-4 w-4 mr-2" />
Save
</Button>
</div>
</div>
</div>
<Separator />
<div className="space-y-4">
<h3 className="text-sm font-medium flex items-center">
<Shield className="mr-2 h-4 w-4" />
Data Management
</h3>
<div className="flex flex-wrap gap-3">
<Button
variant="outline"
onClick={handleClearChats}
>
Clear Chat History
</Button>
<Button
variant="outline"
onClick={handleClearSources}
>
Clear Sources
</Button>
<Button
variant="destructive"
onClick={handleResetSettings}
>
Reset All Settings
</Button>
</div>
</div>
<Separator />
<div className="space-y-4">
<h3 className="text-sm font-medium flex items-center">
<Cloud className="mr-2 h-4 w-4" />
Backup & Restore
</h3>
<div className="flex flex-wrap gap-3">
<Button
variant="outline"
onClick={handleExportStorage}
>
Export Data
</Button>
<Button
variant="outline"
onClick={() => fileInputRef.current?.click()}
>
Import Data
</Button>
<input
ref={fileInputRef}
type="file"
accept="application/json"
style={{ display: "none" }}
onChange={handleImportStorage}
/>
</div>
<div className="text-xs text-muted-foreground">
Export will download your data as a JSON file. Import will overwrite your current data.
</div>
</div>
</div>
</DialogContent>
</Dialog>
);
};
|