import type { LockInfo, UserInfo } from '/@/store/types'; import { ProjectConfig } from '/#/config'; import { createLocalStorage, createSessionStorage } from '/@/utils/cache'; import { Memory } from './memory'; import { TOKEN_KEY, USER_INFO_KEY, ROLES_KEY, LOCK_INFO_KEY, PROJ_CFG_KEY, APP_LOCAL_CACHE_KEY, APP_SESSION_CACHE_KEY, } from '/@/enums/cacheEnum'; import { DEFAULT_CACHE_TIME } from '/@/settings/encryptionSetting'; import { toRaw } from 'vue'; interface BasicStore { [TOKEN_KEY]: string | number | null | undefined; [USER_INFO_KEY]: UserInfo; [ROLES_KEY]: string[]; [LOCK_INFO_KEY]: LockInfo; [PROJ_CFG_KEY]: ProjectConfig; } type LocalStore = BasicStore; type SessionStore = BasicStore; export type BasicKeys = keyof BasicStore; type LocalKeys = keyof LocalStore; type SessionKeys = keyof SessionStore; const ls = createLocalStorage(); const ss = createSessionStorage(); const localMemory = new Memory(DEFAULT_CACHE_TIME); const sessionMemory = new Memory(DEFAULT_CACHE_TIME); function initPersistentMemory() { const localCache = ls.get(APP_LOCAL_CACHE_KEY); const sessionCache = ss.get(APP_SESSION_CACHE_KEY); localCache && localMemory.resetCache(localCache); sessionCache && sessionMemory.resetCache(sessionCache); } export class Persistent { static getLocal(key: LocalKeys) { return localMemory.get(key)?.value as Nullable; } static setLocal(key: LocalKeys, value: LocalStore[LocalKeys], immediate = false): void { localMemory.set(key, toRaw(value)); immediate && ls.set(APP_LOCAL_CACHE_KEY, localMemory.getCache); } static removeLocal(key: LocalKeys): void { localMemory.remove(key); } static clearLocal(): void { localMemory.clear(); } static getSession(key: SessionKeys) { return sessionMemory.get(key)?.value as Nullable; } static setSession(key: SessionKeys, value: SessionStore[SessionKeys], immediate = false): void { sessionMemory.set(key, toRaw(value)); immediate && ss.set(APP_SESSION_CACHE_KEY, sessionMemory); } static removeSession(key: SessionKeys): void { sessionMemory.remove(key); } static clearSession(): void { sessionMemory.clear(); } static clearAll() { sessionMemory.clear(); localMemory.clear(); } } window.addEventListener('beforeunload', function () { ls.set(APP_LOCAL_CACHE_KEY, localMemory.getCache); ss.set(APP_SESSION_CACHE_KEY, sessionMemory.getCache); }); function storageChange(e: any) { const { key, newValue, oldValue } = e; if (!key) { Persistent.clearAll(); return; } if (!!newValue && !!oldValue) { if (APP_LOCAL_CACHE_KEY === key) { Persistent.clearLocal(); } if (APP_SESSION_CACHE_KEY === key) { Persistent.clearSession(); } } } window.addEventListener('storage', storageChange); initPersistentMemory();