Code Monkey home page Code Monkey logo

Comments (7)

prazdevs avatar prazdevs commented on May 28, 2024

Hi, i'm still considering adding per-path persistence config as suggested in #19 , could that be part of it, a per-path like this:

persist: [
{
  path: 'a'
},
{
  path: 'b',
  persist: (store) => store.a === true
}
]

or smth like that

This would be part of a V2, for advanced use

from pinia-plugin-persistedstate.

wxhccc avatar wxhccc commented on May 28, 2024

it's all right. but I don't think it is good way. for example:

persist: [
{
  path: 'a',
  beforeRestore: () => {},
  afterRestore: () => {},
  serializer: {
    serialize: JSON.stringify,
    deserialize: JSON.parse,
  }
},
{
  path: 'b',
  persist: (store) => store.a === true,
  beforeRestore: () => {},
  afterRestore: () => {},
  serializer: {
    serialize: JSON.stringify,
    deserialize: JSON.parse,
  }
}
]

i need to pass other properties in every item.
zhuzhengshou want to to separate state values to localstorage and sessionstorage at the same time when state change.

from pinia-plugin-persistedstate.

prazdevs avatar prazdevs commented on May 28, 2024

hmm i see what you mean, i kinda saw a good opportunity as both feature ideas are linked to per-path config

from pinia-plugin-persistedstate.

prazdevs avatar prazdevs commented on May 28, 2024

ok i may have an exampls that could help you?

    persist: {
      serializer: {
        deserialize: JSON.parse,
        serialize: (state) => {
          const { a, b } = state
          const toStore = a ? { a, b } : { a }
          return JSON.stringify(toStore)
        }
      }
    },

You can use the serializer to define conditions for elements to be persisted or not. I think that's the best way to do it without adding "too much" to the plugin :)

Let me know if that helped

from pinia-plugin-persistedstate.

wxhccc avatar wxhccc commented on May 28, 2024

ok i may have an exampls that could help you?

    persist: {
      serializer: {
        deserialize: JSON.parse,
        serialize: (state) => {
          const { a, b } = state
          const toStore = a ? { a, b } : { a }
          return JSON.stringify(toStore)
        }
      }
    },

You can use the serializer to define conditions for elements to be persisted or not. I think that's the best way to do it without adding "too much" to the plugin :)

Let me know if that helped

yes, it works. but if i need to use custom serializer to do some complex questions, I prefer write a local pinia plugin to do this.

from pinia-plugin-persistedstate.

prazdevs avatar prazdevs commented on May 28, 2024

You can always define an external function that returns the state to store from the current state, and have concerns separated this way.

from pinia-plugin-persistedstate.

prazdevs avatar prazdevs commented on May 28, 2024

Closing this as it has a workaround, and probably won't see an implementation in the current situation. Feel free to propose new stuff :)

from pinia-plugin-persistedstate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.