thelounge/client/js/localStorage.ts
Max Leiter dd05ee3a65
TypeScript and Vue 3 (#4559)
Co-authored-by: Eric Nemchik <eric@nemchik.com>
Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
2022-06-18 17:25:21 -07:00

42 lines
1,018 B
TypeScript

// This is a simple localStorage wrapper because browser can throw errors
// in different situations, including:
// - Unable to store data if storage is full
// - Local storage is blocked if "third-party cookies and site data" is disabled
//
// For more details, see:
// https://stackoverflow.com/q/14555347/1935861
// https://github.com/thelounge/thelounge/issues/2699
// https://www.chromium.org/for-testers/bug-reporting-guidelines/uncaught-securityerror-failed-to-read-the-localstorage-property-from-window-access-is-denied-for-this-document
export default {
set(key: string, value: string) {
try {
window.localStorage.setItem(key, value);
} catch (e) {
//
}
},
get(key: string) {
try {
return window.localStorage.getItem(key);
} catch (e) {
// Return null as if data is not set
return null;
}
},
remove(key: string) {
try {
window.localStorage.removeItem(key);
} catch (e) {
//
}
},
clear() {
try {
window.localStorage.clear();
} catch (e) {
//
}
},
};