1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import { logError } from "@ente/shared/sentry";
- export enum LS_KEYS {
- USER = "user",
- SESSION = "session",
- KEY_ATTRIBUTES = "keyAttributes",
- ORIGINAL_KEY_ATTRIBUTES = "originalKeyAttributes",
- SUBSCRIPTION = "subscription",
- FAMILY_DATA = "familyData",
- PLANS = "plans",
- IS_FIRST_LOGIN = "isFirstLogin",
- JUST_SIGNED_UP = "justSignedUp",
- SHOW_BACK_BUTTON = "showBackButton",
- EXPORT = "export",
- AnonymizedUserID = "anonymizedUserID",
- THUMBNAIL_FIX_STATE = "thumbnailFixState",
- LIVE_PHOTO_INFO_SHOWN_COUNT = "livePhotoInfoShownCount",
- LOGS = "logs",
- USER_DETAILS = "userDetails",
- COLLECTION_SORT_BY = "collectionSortBy",
- THEME = "theme",
- WAIT_TIME = "waitTime",
- API_ENDPOINT = "apiEndpoint",
- // Moved to the new wrapper @/utils/local-storage
- // LOCALE = 'locale',
- MAP_ENABLED = "mapEnabled",
- SRP_SETUP_ATTRIBUTES = "srpSetupAttributes",
- SRP_ATTRIBUTES = "srpAttributes",
- OPT_OUT_OF_CRASH_REPORTS = "optOutOfCrashReports",
- CF_PROXY_DISABLED = "cfProxyDisabled",
- REFERRAL_SOURCE = "referralSource",
- CLIENT_PACKAGE = "clientPackage",
- }
- export const setData = (key: LS_KEYS, value: object) => {
- if (typeof localStorage === "undefined") {
- return null;
- }
- localStorage.setItem(key, JSON.stringify(value));
- };
- export const removeData = (key: LS_KEYS) => {
- if (typeof localStorage === "undefined") {
- return null;
- }
- localStorage.removeItem(key);
- };
- export const getData = (key: LS_KEYS) => {
- try {
- if (
- typeof localStorage === "undefined" ||
- typeof key === "undefined" ||
- typeof localStorage.getItem(key) === "undefined" ||
- localStorage.getItem(key) === "undefined"
- ) {
- return null;
- }
- const data = localStorage.getItem(key);
- return data && JSON.parse(data);
- } catch (e) {
- logError(e, "Failed to Parse JSON for key " + key);
- }
- };
- export const clearData = () => {
- if (typeof localStorage === "undefined") {
- return null;
- }
- localStorage.clear();
- };
|