v2.0.0-pre.18
Sync with Storage
A utility for syncing with Storage is included with Feathers-Pinia: syncWithStorage
. It watches for changes in specified keys in the store and writes the changes to localStorage. Other key features include:
- Enabled on a per-store basis. This offers much more control, and there's rarely a need to cache the entire store.
- Only specified keys are saved to localStorage. This makes sure you don't accidentally cache any important loading state, for example.
- By default, they use
window.localStorage
, while also being compatible with anyStorage
interface. Use the third argument to provide your own storage.
Here's an example of its use while setting up the model.
ts
import { type ModelInstance } from 'feathers-pinia'
import type { Tasks, TasksData, TasksQuery } from 'feathers-pinia-api'
export const useTasksConfig = () => {...}
export const useTaskModel = () => {
const { name, idField, service } = useTasksConfig()
const Model = useModel(name, () => { ... })
onModelReady(name, () => {
service.hooks({ around: { all: [...feathersPiniaHooks(Model)] } })
syncWithStorage(useTaskStore(), ['ids', 'itemsById'])
})
connectModel(name, () => Model, useTaskStore)
return Model
}
API
The syncWithStorage
utility accepts three arguments:
store
The initialized piniastore
requiredkeys[]
An array of strings representing the keys whose values should be cached. requiredstorage{}
an object conforming to theStorage
interface (same aslocalStorage
,sessionStorage
, etc. optional: defaults tolocalStorage