mapcomplete/Logic/Web/LocalStorageSource.ts

19 lines
572 B
TypeScript
Raw Normal View History

import {UIEventSource} from "../UIEventSource";
export class LocalStorageSource {
static Get(key: string, defaultValue: string = undefined): UIEventSource<string> {
2020-07-31 17:11:44 +02:00
try {
const saved = localStorage.getItem(key);
2021-01-25 03:12:09 +01:00
const source = new UIEventSource<string>(saved ?? defaultValue, "localstorage:"+key);
2020-07-31 17:11:44 +02:00
source.addCallback((data) => {
localStorage.setItem(key, data);
});
return source;
} catch (e) {
return new UIEventSource<string>(defaultValue);
}
}
2020-07-31 17:11:44 +02:00
}