2019-03-01 05:21:18 +00:00
|
|
|
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
|
2013-10-10 18:03:07 +00: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 16:48:14 +00:00
|
|
|
const havePrefs = typeof window.localStorage !== 'undefined';
|
2019-04-01 03:52:45 +00:00
|
|
|
|
2020-11-24 16:48:14 +00:00
|
|
|
export default class Prefs {
|
|
|
|
|
|
|
|
havePrefs() {
|
|
|
|
return havePrefs;
|
|
|
|
}
|
2021-02-22 02:38:21 +00:00
|
|
|
|
2021-04-21 00:42:32 +00:00
|
|
|
readPref(name: string): string | null
|
|
|
|
readPref(name: string, defaultValue: string): string
|
2021-02-22 02:38:21 +00:00
|
|
|
readPref(name: string, defaultValue: string | null = null) {
|
|
|
|
if (havePrefs) {
|
|
|
|
return window.localStorage.getItem(name) ?? defaultValue;
|
|
|
|
}
|
|
|
|
return defaultValue;
|
2020-11-24 16:48:14 +00:00
|
|
|
}
|
2021-02-22 02:38:21 +00:00
|
|
|
|
2020-11-24 16:48:14 +00:00
|
|
|
writePref(name: string, value: string) {
|
2021-02-22 02:38:21 +00:00
|
|
|
if (havePrefs) {
|
2020-11-24 16:48:14 +00:00
|
|
|
window.localStorage.setItem(name, value);
|
2021-02-22 02:38:21 +00:00
|
|
|
}
|
2020-11-24 16:48:14 +00:00
|
|
|
}
|
2013-10-10 18:03:07 +00:00
|
|
|
}
|