2024-10-03 10:58:41 +02:00
|
|
|
// settingsManager.ts
|
2024-09-24 09:27:49 +02:00
|
|
|
|
2024-10-03 10:58:41 +02:00
|
|
|
// Method to export localStorage to a JSON object
|
|
|
|
export function exportSettings(): string {
|
2024-10-07 09:09:15 +02:00
|
|
|
const settings: { [key: string]: string } = {};
|
2024-09-26 14:38:59 +02:00
|
|
|
|
2024-10-03 11:29:58 +02:00
|
|
|
// Loop through all keys in localStorage and add them to the settings object
|
|
|
|
for (let i = 0; i < localStorage.length; i++) {
|
|
|
|
const key = localStorage.key(i);
|
|
|
|
if (key) {
|
|
|
|
if (key !== "accountName" && key !== "accountPassword" && key !== "accountEmail") {
|
2024-10-07 09:09:15 +02:00
|
|
|
settings[key] = localStorage.getItem(key) || "";
|
2024-10-03 11:29:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-03 10:58:41 +02:00
|
|
|
|
2024-10-03 11:29:58 +02:00
|
|
|
// Convert settings object to JSON string
|
|
|
|
return JSON.stringify(settings, null, 2);
|
2024-10-03 10:58:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Method to import settings from a JSON object, clearing old localStorage
|
|
|
|
export function importSettings(jsonData: string): void {
|
2024-10-03 11:29:58 +02:00
|
|
|
try {
|
|
|
|
const parsedSettings = JSON.parse(jsonData);
|
2024-10-03 10:58:41 +02:00
|
|
|
|
2024-10-03 11:29:58 +02:00
|
|
|
// Loop through parsed settings and save them in localStorage
|
|
|
|
Object.keys(parsedSettings).forEach((key) => {
|
|
|
|
localStorage.setItem(key, parsedSettings[key]);
|
|
|
|
});
|
2024-10-03 10:58:41 +02:00
|
|
|
|
2024-10-03 11:29:58 +02:00
|
|
|
console.log("Settings imported successfully!");
|
|
|
|
} catch (error) {
|
|
|
|
console.error("Invalid JSON data:", error);
|
|
|
|
}
|
2024-10-03 10:58:41 +02:00
|
|
|
}
|