vault/ui/app/lib/local-storage.ts
Jordan Reimer 38396b5882
[UI] API Service Error Parsing (#30454)
* adds error parsing method to api service

* replaces apiErrorMessage util instances with api service parseError

* removes apiErrorMessage util and tests

* removes ApiError type

* fixes issue in isLocalStorageSupported error handling
2025-04-30 11:44:19 -06:00

52 lines
1.2 KiB
TypeScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
export default {
isLocalStorageSupported() {
try {
const key = `__storage__test`;
window.localStorage.setItem(key, '');
window.localStorage.removeItem(key);
return true;
} catch (e) {
// modify the e object so we can customize the error message.
// e.message is readOnly.
Object.defineProperty(e, 'errors', {
value: [`This is likely due to your browser's cookie settings.`],
writable: false,
});
throw e;
}
},
getItem(key: string) {
const item = window.localStorage.getItem(key);
return item && JSON.parse(item);
},
setItem(key: string, val: unknown) {
window.localStorage.setItem(key, JSON.stringify(val));
},
removeItem(key: string) {
return window.localStorage.removeItem(key);
},
keys() {
return Object.keys(window.localStorage);
},
cleanupStorage(string: string, keyToKeep: string) {
if (!string) return;
const relevantKeys = this.keys().filter((str) => str.startsWith(string));
relevantKeys?.forEach((key) => {
if (key !== keyToKeep) {
localStorage.removeItem(key);
}
});
},
};