Spaces:
Running
Running
File size: 7,946 Bytes
7b53d75 | 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 | import React, { useState, useEffect, useRef } from 'react';
function Customise() {
const [sensitivity, setSensitivity] = useState(6);
const [frameRate, setFrameRate] = useState(30);
const [notificationsEnabled, setNotificationsEnabled] = useState(true);
const [threshold, setThreshold] = useState(30);
// Reference to the hidden import input.
const fileInputRef = useRef(null);
// 1. Load persisted settings.
useEffect(() => {
fetch('/api/settings')
.then(res => res.json())
.then(data => {
if (data) {
if (data.sensitivity) setSensitivity(data.sensitivity);
if (data.frame_rate) setFrameRate(data.frame_rate);
if (data.notification_threshold) setThreshold(data.notification_threshold);
if (data.notification_enabled !== undefined) setNotificationsEnabled(data.notification_enabled);
}
})
.catch(err => console.error("Failed to load settings", err));
}, []);
// 2. Save settings.
const handleSave = async () => {
const settings = {
sensitivity: parseInt(sensitivity),
frame_rate: parseInt(frameRate),
notification_enabled: notificationsEnabled,
notification_threshold: parseInt(threshold)
};
try {
const response = await fetch('/api/settings', {
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(settings)
});
if (response.ok) alert("Settings saved successfully!");
else alert("Failed to save settings.");
} catch (error) {
alert("Error saving settings: " + error.message);
}
};
// 3. Export data.
const handleExport = async () => {
try {
// Fetch the full session history.
const response = await fetch('/api/sessions?filter=all');
if (!response.ok) throw new Error("Failed to fetch data");
const data = await response.json();
// Build a JSON blob for download.
const jsonString = JSON.stringify(data, null, 2);
// Keep a copy in local storage for quick recovery.
localStorage.setItem('focus_magic_backup', jsonString);
const blob = new Blob([jsonString], { type: 'application/json' });
// Create a temporary download link.
const url = URL.createObjectURL(blob);
const link = document.createElement('a');
link.href = url;
// Include the current date in the export filename.
link.download = `focus-guard-backup-${new Date().toISOString().slice(0, 10)}.json`;
// Trigger the browser download.
document.body.appendChild(link);
link.click();
// Clean up temporary elements and URLs.
document.body.removeChild(link);
URL.revokeObjectURL(url);
} catch (error) {
console.error(error);
alert("Export failed: " + error.message);
}
};
// 4. Trigger the import file chooser.
const triggerImport = () => {
fileInputRef.current.click();
};
// 5. Handle file import.
const handleFileChange = async (event) => {
const file = event.target.files[0];
if (!file) return;
const reader = new FileReader();
reader.onload = async (e) => {
try {
const content = e.target.result;
const sessions = JSON.parse(content);
// Basic validation: imported content must be an array.
if (!Array.isArray(sessions)) {
throw new Error("Invalid file format: Expected a list of sessions.");
}
// Send the imported payload to the backend for storage.
const response = await fetch('/api/import', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(sessions)
});
if (response.ok) {
const result = await response.json();
alert(`Success! Imported ${result.count} sessions.`);
} else {
alert("Import failed on server side.");
}
} catch (err) {
alert("Error parsing file: " + err.message);
}
// Reset the input so the same file can be selected again.
event.target.value = '';
};
reader.readAsText(file);
};
// 6. Clear all history.
const handleClearHistory = async () => {
if (!window.confirm("Are you sure? This will delete ALL your session history permanently.")) {
return;
}
try {
const response = await fetch('/api/history', { method: 'DELETE' });
if (response.ok) {
alert("All history has been cleared.");
} else {
alert("Failed to clear history.");
}
} catch (err) {
alert("Error: " + err.message);
}
};
return (
<main id="page-e" className="page">
<h1 className="page-title">Customise</h1>
<div className="settings-container">
{/* Detection Settings */}
<div className="setting-group">
<h2>Detection Settings</h2>
<div className="setting-item">
<label htmlFor="sensitivity-slider">Detection Sensitivity</label>
<div className="slider-group">
<input type="range" id="sensitivity-slider" min="1" max="10" value={sensitivity} onChange={(e) => setSensitivity(e.target.value)} />
<span id="sensitivity-value">{sensitivity}</span>
</div>
<p className="setting-description">Higher values require stricter focus criteria</p>
</div>
<div className="setting-item">
<label htmlFor="default-framerate">Default Frame Rate</label>
<div className="slider-group">
<input type="range" id="default-framerate" min="5" max="60" value={frameRate} onChange={(e) => setFrameRate(e.target.value)} />
<span id="framerate-value">{frameRate}</span> FPS
</div>
</div>
</div>
{/* Notifications */}
<div className="setting-group">
<h2>Notifications</h2>
<div className="setting-item">
<label>
<input type="checkbox" id="enable-notifications" checked={notificationsEnabled} onChange={(e) => setNotificationsEnabled(e.target.checked)} />
Enable distraction notifications
</label>
</div>
<div className="setting-item">
<label htmlFor="notification-threshold">Alert after (seconds)</label>
<input type="number" id="notification-threshold" value={threshold} onChange={(e) => setThreshold(e.target.value)} min="5" max="300" />
</div>
</div>
{/* Data Management */}
<div className="setting-group">
<h2>Data Management</h2>
{/* Hidden file input that only accepts JSON files. */}
<input
type="file"
ref={fileInputRef}
style={{ display: 'none' }}
accept=".json"
onChange={handleFileChange}
/>
<div style={{ display: 'flex', gap: '10px', justifyContent: 'center', flexWrap: 'wrap' }}>
{/* Export button */}
<button id="export-data" className="action-btn blue" onClick={handleExport} style={{ width: '30%', minWidth: '120px' }}>
Export Data
</button>
{/* Import button */}
<button id="import-data" className="action-btn yellow" onClick={triggerImport} style={{ width: '30%', minWidth: '120px' }}>
Import Data
</button>
{/* Clear button */}
<button id="clear-history" className="action-btn red" onClick={handleClearHistory} style={{ width: '30%', minWidth: '120px' }}>
Clear History
</button>
</div>
</div>
<button id="save-settings" className="btn-main" onClick={handleSave}>Save Settings</button>
</div>
</main>
);
}
export default Customise;
|