2019-02-28 21:21:18 -08:00
|
|
|
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
|
2013-10-10 11:03:07 -07:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation. No representations are made about the suitability of this
|
|
|
|
* software for any purpose. It is provided "as is" without express or
|
|
|
|
* implied warranty.
|
|
|
|
*/
|
|
|
|
|
2020-11-24 17:48:14 +01:00
|
|
|
const havePrefs = typeof window.localStorage !== 'undefined';
|
2019-03-31 20:52:45 -07:00
|
|
|
|
2020-11-24 17:48:14 +01:00
|
|
|
export default class Prefs {
|
|
|
|
|
|
|
|
havePrefs() {
|
|
|
|
return havePrefs;
|
|
|
|
}
|
2021-02-21 18:38:21 -08:00
|
|
|
|
|
|
|
readPref(name: string, defaultValue: string | null = null) {
|
|
|
|
if (havePrefs) {
|
|
|
|
return window.localStorage.getItem(name) ?? defaultValue;
|
|
|
|
}
|
|
|
|
return defaultValue;
|
2020-11-24 17:48:14 +01:00
|
|
|
}
|
2021-02-21 18:38:21 -08:00
|
|
|
|
2020-11-24 17:48:14 +01:00
|
|
|
writePref(name: string, value: string) {
|
2021-02-21 18:38:21 -08:00
|
|
|
if (havePrefs) {
|
2020-11-24 17:48:14 +01:00
|
|
|
window.localStorage.setItem(name, value);
|
2021-02-21 18:38:21 -08:00
|
|
|
}
|
2020-11-24 17:48:14 +01:00
|
|
|
}
|
2013-10-10 11:03:07 -07:00
|
|
|
}
|