Pinia 持久化插件

发布于 2024-09-16 19:34:57 字数 900 浏览 12 评论 0

pinia 和 vuex 都有一个通病 页面刷新状态会丢失,所以写一个 pinia 插件缓存他的值

const __piniaKey = '__PINIAKEY__'

type Options = {
  key?: string
}
type OptPinia = Partial<Options>

const setStorage = (key: string, value: any): void => {
  localStorage.setItem(key, JSON.stringify(value))
}


const getStorage = (key: string) => {
  return (localStorage.getItem(key) ? JSON.parse(localStorage.getItem(key) as string) : {})
}


const piniaPlugin = (options: OptPinia) => {

  return (context: PiniaPluginContext) => {
    const { store } = context;
    const data = getStorage(`${options?.key ?? __piniaKey}-${store.$id}`)
    store.$subscribe(() => {
      setStorage(`${options?.key ?? __piniaKey}-${store.$id}`, toRaw(store.$state));
    })
    return {
      ...data
    }
  }
}

const pinia = createPinia()

pinia.use(piniaPlugin({
  key: "pinia"
}))

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

流殇

暂无简介

0 文章
0 评论
22 人气
更多

推荐作者

qq_E2Iff7

文章 0 评论 0

Archangel

文章 0 评论 0

freedog

文章 0 评论 0

Hunk

文章 0 评论 0

18819270189

文章 0 评论 0

wenkai

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文