persistent.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import { createStorage } from '/@/utils/cache';
  2. import { BASE_LOCAL_CACHE_KEY, BASE_SESSION_CACHE_KEY } from '/@/enums/cacheEnum';
  3. const ls = createStorage(localStorage);
  4. const ss = createStorage();
  5. interface CacheStore {
  6. local: Recordable;
  7. session: Recordable;
  8. }
  9. /**
  10. * @description: Persistent cache
  11. */
  12. const cacheStore: CacheStore = {
  13. // localstorage cache
  14. local: {},
  15. // sessionstorage cache
  16. session: {},
  17. };
  18. function initCache() {
  19. cacheStore.local = ls.get(BASE_LOCAL_CACHE_KEY) || {};
  20. cacheStore.session = ss.get(BASE_SESSION_CACHE_KEY) || {};
  21. }
  22. initCache();
  23. export function setLocal(key: string, value: any, immediate = false) {
  24. const local = ls.get(BASE_LOCAL_CACHE_KEY)?.[BASE_LOCAL_CACHE_KEY] || {};
  25. cacheStore.local[BASE_LOCAL_CACHE_KEY] =
  26. { ...local, ...cacheStore.local[BASE_LOCAL_CACHE_KEY] } || {};
  27. cacheStore.local[BASE_LOCAL_CACHE_KEY][key] = value;
  28. if (immediate) {
  29. ls.set(BASE_LOCAL_CACHE_KEY, cacheStore.local);
  30. }
  31. }
  32. export function getLocal<T>(key: string): T | null {
  33. try {
  34. return cacheStore.local[BASE_LOCAL_CACHE_KEY][key];
  35. } catch (error) {
  36. return null;
  37. }
  38. }
  39. export function removeLocal(key: string) {
  40. if (cacheStore.local[BASE_LOCAL_CACHE_KEY]) {
  41. Reflect.deleteProperty(cacheStore.local[BASE_LOCAL_CACHE_KEY], key);
  42. }
  43. }
  44. export function clearLocal(immediate = false) {
  45. cacheStore.local = {};
  46. immediate && ls.remove(BASE_LOCAL_CACHE_KEY);
  47. }
  48. export function setSession(key: string, value: any, immediate = false) {
  49. const session = ss.get(BASE_SESSION_CACHE_KEY)?.[BASE_SESSION_CACHE_KEY] || {};
  50. cacheStore.session[BASE_SESSION_CACHE_KEY] =
  51. { ...session, ...cacheStore.session[BASE_SESSION_CACHE_KEY] } || {};
  52. cacheStore.session[BASE_SESSION_CACHE_KEY][key] = value;
  53. if (immediate) {
  54. ss.set(BASE_SESSION_CACHE_KEY, cacheStore.session);
  55. }
  56. }
  57. export function removeSession(key: string) {
  58. if (cacheStore.session[BASE_SESSION_CACHE_KEY]) {
  59. Reflect.deleteProperty(cacheStore.session[BASE_SESSION_CACHE_KEY], key);
  60. }
  61. }
  62. export function getSession<T>(key: string): T | null {
  63. try {
  64. return cacheStore.session[BASE_SESSION_CACHE_KEY][key];
  65. } catch (error) {
  66. return null;
  67. }
  68. }
  69. export function clearSession(immediate = false) {
  70. cacheStore.session = {};
  71. immediate && ss.remove(BASE_SESSION_CACHE_KEY);
  72. }
  73. export function clearAll() {
  74. clearLocal();
  75. clearSession();
  76. }
  77. export function persistentCache() {
  78. const localCache = cacheStore.local;
  79. const sessionCache = cacheStore.session;
  80. ls.set(BASE_LOCAL_CACHE_KEY, localCache);
  81. ss.set(BASE_SESSION_CACHE_KEY, sessionCache);
  82. }
  83. (() => {
  84. // /** Write to local before closing window */
  85. window.addEventListener('beforeunload', () => {
  86. persistentCache();
  87. });
  88. function storageChange(e: any) {
  89. const { key, newValue, oldValue } = e;
  90. if (!key) {
  91. clearAll();
  92. return;
  93. }
  94. if (!!newValue && !!oldValue) {
  95. if (BASE_LOCAL_CACHE_KEY === key) {
  96. clearLocal();
  97. }
  98. if (BASE_SESSION_CACHE_KEY === key) {
  99. clearSession();
  100. }
  101. }
  102. }
  103. window.addEventListener('storage', storageChange);
  104. })();