forked from React-Group/interstellar_ai
Compare commits
No commits in common. "15d852c11d598c6af8cf6b84f93c63592383d511" and "0aa7116fd3d9681e2e82ece23bdb8ca6b020403d" have entirely different histories.
15d852c11d
...
0aa7116fd3
1 changed files with 23 additions and 22 deletions
|
@ -8,11 +8,9 @@ export function exportSettings(): string {
|
||||||
for (let i = 0; i < localStorage.length; i++) {
|
for (let i = 0; i < localStorage.length; i++) {
|
||||||
const key = localStorage.key(i);
|
const key = localStorage.key(i);
|
||||||
if (key) {
|
if (key) {
|
||||||
if (key !== "accountName" && key !== "accountPassword" && key !== "accountEmail") {
|
|
||||||
settings[key] = localStorage.getItem(key);
|
settings[key] = localStorage.getItem(key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Convert settings object to JSON string
|
// Convert settings object to JSON string
|
||||||
return JSON.stringify(settings, null, 2);
|
return JSON.stringify(settings, null, 2);
|
||||||
|
@ -23,6 +21,9 @@ export function importSettings(jsonData: string): void {
|
||||||
try {
|
try {
|
||||||
const parsedSettings = JSON.parse(jsonData);
|
const parsedSettings = JSON.parse(jsonData);
|
||||||
|
|
||||||
|
// Clear the current localStorage
|
||||||
|
localStorage.clear();
|
||||||
|
|
||||||
// Loop through parsed settings and save them in localStorage
|
// Loop through parsed settings and save them in localStorage
|
||||||
Object.keys(parsedSettings).forEach((key) => {
|
Object.keys(parsedSettings).forEach((key) => {
|
||||||
localStorage.setItem(key, parsedSettings[key]);
|
localStorage.setItem(key, parsedSettings[key]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue