2020-03-07 10:20:38 -05:00
|
|
|
import { ExcalidrawElement } from "../element/types";
|
|
|
|
import { AppState } from "../types";
|
|
|
|
import { clearAppStateForLocalStorage } from "../appState";
|
|
|
|
import { restore } from "./restore";
|
|
|
|
|
|
|
|
const LOCAL_STORAGE_KEY = "excalidraw";
|
|
|
|
const LOCAL_STORAGE_KEY_STATE = "excalidraw-state";
|
|
|
|
|
|
|
|
export function saveToLocalStorage(
|
|
|
|
elements: readonly ExcalidrawElement[],
|
|
|
|
appState: AppState,
|
|
|
|
) {
|
2020-03-08 10:20:55 -07:00
|
|
|
localStorage.setItem(LOCAL_STORAGE_KEY, JSON.stringify(elements));
|
2020-03-07 10:20:38 -05:00
|
|
|
localStorage.setItem(
|
|
|
|
LOCAL_STORAGE_KEY_STATE,
|
|
|
|
JSON.stringify(clearAppStateForLocalStorage(appState)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function restoreFromLocalStorage() {
|
|
|
|
const savedElements = localStorage.getItem(LOCAL_STORAGE_KEY);
|
|
|
|
const savedState = localStorage.getItem(LOCAL_STORAGE_KEY_STATE);
|
|
|
|
|
|
|
|
let elements = [];
|
|
|
|
if (savedElements) {
|
|
|
|
try {
|
2020-03-08 10:20:55 -07:00
|
|
|
elements = JSON.parse(savedElements);
|
2020-03-07 10:20:38 -05:00
|
|
|
} catch {
|
|
|
|
// Do nothing because elements array is already empty
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let appState = null;
|
|
|
|
if (savedState) {
|
|
|
|
try {
|
|
|
|
appState = JSON.parse(savedState) as AppState;
|
|
|
|
} catch {
|
|
|
|
// Do nothing because appState is already null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return restore(elements, appState);
|
|
|
|
}
|