mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
* Move the cursor to the end upon focusing text area * Allow multiple editor session and improve autosave * Fix data fetching * Fix mobile flash style
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
/* Copyright (C) 2019 Monomax Software Pty Ltd
|
|
*
|
|
* This file is part of Dnote.
|
|
*
|
|
* Dnote is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Dnote is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Dnote. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { AppState } from '../store';
|
|
|
|
// stateKey is the key under which the application state is persisted. It is
|
|
// versioned to accommodate any backward incomptaible changes to the store.
|
|
const stateKey = 'state-v0';
|
|
|
|
// loadState parses the serialized state tree stored in the localStorage
|
|
// and returns it
|
|
export function loadState(): Partial<AppState> {
|
|
try {
|
|
const serialized = localStorage.getItem(stateKey);
|
|
|
|
if (serialized === null) {
|
|
return undefined;
|
|
}
|
|
|
|
return JSON.parse(serialized);
|
|
} catch (e) {
|
|
console.log('Unable load state from the localStorage', e.message);
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
// saveState writes the given state to localStorage
|
|
export function saveState(state: Partial<AppState>) {
|
|
try {
|
|
const serialized = JSON.stringify(state);
|
|
|
|
localStorage.setItem(stateKey, serialized);
|
|
} catch (e) {
|
|
console.log('Unable save to the localStorage', e.message);
|
|
}
|
|
}
|