mapcomplete/Logic/Web/LocalStorageSource.ts

29 lines
864 B
TypeScript
Raw Normal View History

import {UIEventSource} from "../UIEventSource";
2021-03-29 12:10:20 +00:00
/**
* UIEventsource-wrapper around localStorage
*/
export class LocalStorageSource {
static Get(key: string, defaultValue: string = undefined): UIEventSource<string> {
2020-07-31 15:11:44 +00:00
try {
const saved = localStorage.getItem(key);
2021-01-25 02:12:09 +00:00
const source = new UIEventSource<string>(saved ?? defaultValue, "localstorage:"+key);
2020-07-31 15:11:44 +00:00
source.addCallback((data) => {
2021-03-29 12:10:20 +00:00
try{
localStorage.setItem(key, data);
}catch(e){
// Probably exceeded the quota with this item!
// Lets nuke everything
localStorage.clear()
}
2020-07-31 15:11:44 +00:00
});
return source;
} catch (e) {
return new UIEventSource<string>(defaultValue);
}
}
2020-07-31 15:11:44 +00:00
}