File size: 9,858 Bytes
22b1735
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
import { useState, useRef } from "react";
import { Settings, Moon, Sun, Globe, Shield, Database, Cloud } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
import { Label } from "@/components/ui/label";
import { Separator } from "@/components/ui/separator";
import { Input } from "@/components/ui/input";
import { toast } from "@/components/ui/sonner";
import { storage, STORAGE_KEYS } from "@/lib/storage";

const SettingsPage = () => {
  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) || "http://localhost:8000"
  );
  
  const fileInputRef = useRef<HTMLInputElement>(null);

  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");
  };
  
  const handleClearSources = () => {
    storage.set(STORAGE_KEYS.SOURCES, []);
    toast.success("Sources cleared successfully");
  };
  
  const handleResetSettings = () => {
    storage.remove(STORAGE_KEYS.THEME);
    storage.remove(STORAGE_KEYS.API_ENDPOINT);
    
    setApiEndpoint("http://localhost:8000");
    setTheme(window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
    
    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 (
    <div className="container mx-auto px-4 py-8">
      <div className="max-w-4xl mx-auto">
        <h1 className="text-2xl font-bold mb-6 text-gradient flex items-center">
          <Settings className="mr-2 h-5 w-5" />
          System Settings
        </h1>
        
        <div className="grid gap-6">
          <Card className="glass-effect">
            <CardHeader className="border-b border-border/40 pb-4">
              <CardTitle className="flex items-center">
                <Moon className="mr-2 h-4 w-4" />
                Appearance
              </CardTitle>
              <CardDescription>
                Customize how Insight AI looks
              </CardDescription>
            </CardHeader>
            <CardContent className="pt-4">
              <RadioGroup
                value={theme}
                onValueChange={handleThemeChange}
                className="space-y-4"
              >
                <div className="flex items-center space-x-2">
                  <RadioGroupItem value="light" id="light" />
                  <Label htmlFor="light" className="flex items-center cursor-pointer">
                    <Sun className="h-4 w-4 mr-2" />
                    Light
                  </Label>
                </div>
                <div className="flex items-center space-x-2">
                  <RadioGroupItem value="dark" id="dark" />
                  <Label htmlFor="dark" className="flex items-center cursor-pointer">
                    <Moon className="h-4 w-4 mr-2" />
                    Dark
                  </Label>
                </div>
                <div className="flex items-center space-x-2">
                  <RadioGroupItem value="system" id="system" />
                  <Label htmlFor="system" className="flex items-center cursor-pointer">
                    <Globe className="h-4 w-4 mr-2" />
                    System
                  </Label>
                </div>
              </RadioGroup>
            </CardContent>
          </Card>
          
          <Card className="glass-effect">
            <CardHeader className="border-b border-border/40 pb-4">
              <CardTitle className="flex items-center">
                <Database className="mr-2 h-4 w-4" />
                API Configuration
              </CardTitle>
              <CardDescription>
                Configure connection to the financial rulings database
              </CardDescription>
            </CardHeader>
            <CardContent className="space-y-4 pt-4">
              <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="http://localhost:8000"
                    className="glass-input"
                  />
                  <Button onClick={handleSaveEndpoint} variant="outline" className="tech-button">
                    <Cloud className="h-4 w-4 mr-2" />
                    Save
                  </Button>
                </div>
              </div>
            </CardContent>
          </Card>
          
          <Card className="glass-effect">
            <CardHeader className="border-b border-border/40 pb-4">
              <CardTitle className="flex items-center">
                <Shield className="mr-2 h-4 w-4" />
                Privacy & Data
              </CardTitle>
              <CardDescription>
                Manage your data and privacy settings
              </CardDescription>
            </CardHeader>
            <CardContent className="pt-4 space-y-4">
              <div className="space-y-2">
                <h3 className="text-sm font-medium">Data Management</h3>
                <div className="flex flex-wrap gap-3">
                  <Button 
                    variant="outline" 
                    onClick={handleClearChats}
                    className="tech-button"
                  >
                    Clear Chat History
                  </Button>
                  
                  <Button 
                    variant="outline" 
                    onClick={handleClearSources}
                    className="tech-button"
                  >
                    Clear Source References
                  </Button>
                  
                  <Button 
                    variant="destructive" 
                    onClick={handleResetSettings}
                    className="tech-button"
                  >
                    Reset All Settings
                  </Button>
                </div>
              </div>
            </CardContent>
          </Card>

          <Card className="glass-effect">
            <CardHeader className="border-b border-border/40 pb-4">
              <CardTitle className="flex items-center">
                <Cloud className="mr-2 h-4 w-4" />
                Storage Export / Import
              </CardTitle>
              <CardDescription>
                Backup or restore your application data
              </CardDescription>
            </CardHeader>
            <CardContent className="pt-4 space-y-4">
              <div className="flex flex-wrap gap-3">
                <Button
                  variant="outline"
                  onClick={handleExportStorage}
                  className="tech-button"
                >
                  Export Storage
                </Button>
                <Button
                  variant="outline"
                  onClick={() => fileInputRef.current?.click()}
                  className="tech-button"
                >
                  Import Storage
                </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 with the file contents.
              </div>
            </CardContent>
          </Card>
        </div>
      </div>
    </div>
  );
};

export default SettingsPage;