pinia-plugin-persist-uni.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import "./chunk-UQGIA5KH.js";
  2. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/pinia-plugin-persist-uni/dist/pinia-persist-uni.es.js
  3. var _a;
  4. var _b;
  5. var isH5 = typeof uni !== "undefined" ? ["web", "h5", void 0].includes((_b = (_a = uni == null ? void 0 : uni.getSystemInfoSync()) == null ? void 0 : _a.uniPlatform) == null ? void 0 : _b.toLocaleLowerCase()) : true;
  6. var updateStorage = (strategy, store, options) => {
  7. const storage = strategy.storage;
  8. const storeKey = strategy.key || store.$id;
  9. const isCustomStorage = isH5 || (options == null ? void 0 : options.enforceCustomStorage);
  10. if (strategy.paths) {
  11. const partialState = strategy.paths.reduce((finalObj, key) => {
  12. finalObj[key] = store.$state[key];
  13. return finalObj;
  14. }, {});
  15. if (isCustomStorage && storage) {
  16. storage.setItem(storeKey, JSON.stringify(partialState));
  17. } else {
  18. uni.setStorage({ key: storeKey, data: JSON.stringify(partialState) });
  19. }
  20. } else if (isCustomStorage && storage) {
  21. storage.setItem(storeKey, JSON.stringify(store.$state));
  22. } else {
  23. uni.setStorage({ key: storeKey, data: JSON.stringify(store.$state) });
  24. }
  25. };
  26. var index = ({ options, store }) => {
  27. var _a2, _b2, _c, _d, _e, _f;
  28. if ((_a2 = options.persist) == null ? void 0 : _a2.enabled) {
  29. const defaultStrat = [
  30. {
  31. key: store.$id,
  32. storage: ((_b2 = options.persist) == null ? void 0 : _b2.H5Storage) || (window == null ? void 0 : window.sessionStorage)
  33. }
  34. ];
  35. const strategies = ((_d = (_c = options.persist) == null ? void 0 : _c.strategies) == null ? void 0 : _d.length) ? (_e = options.persist) == null ? void 0 : _e.strategies : defaultStrat;
  36. strategies.forEach((strategy) => {
  37. var _a3, _b3;
  38. const storage = strategy.storage || ((_a3 = options.persist) == null ? void 0 : _a3.H5Storage) || (window == null ? void 0 : window.sessionStorage);
  39. const storeKey = strategy.key || store.$id;
  40. let storageResult;
  41. if (isH5 || ((_b3 = options.persist) == null ? void 0 : _b3.enforceCustomStorage)) {
  42. storageResult = storage.getItem(storeKey);
  43. } else {
  44. storageResult = uni.getStorageSync(storeKey);
  45. }
  46. if (storageResult) {
  47. store.$patch(JSON.parse(storageResult));
  48. updateStorage(strategy, store, options.persist);
  49. }
  50. });
  51. store.$subscribe(() => {
  52. strategies.forEach((strategy) => {
  53. updateStorage(strategy, store, options.persist);
  54. });
  55. }, { detached: ((_f = options.persist) == null ? void 0 : _f.detached) ? true : false });
  56. }
  57. };
  58. export {
  59. index as default
  60. };
  61. //# sourceMappingURL=pinia-plugin-persist-uni.js.map