Last active
November 11, 2021 08:53
-
-
Save christianalfoni/69b9be8e6437eb470f0a0df7b9ed1f19 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create an effect to persist data. For native envs, using something similar | |
// to localStorage | |
const persistedState = { | |
set(state) { | |
localStorage.setItem('state', JSON.stringify(state)) | |
}, | |
get() { | |
return JSON.parse(localStorage.getItem('state') || '{}') | |
} | |
} | |
// Use the "onInitialize" action that fires when Overmind initializes | |
import merge from 'deepmerge' | |
const onInitialize = ({ state, effects }, overmind) => { | |
const initialState = effects.persistedState.get() | |
// We use "deepmerge" as it will ensure that any use of "derived" | |
// is still kept | |
merge(state, initialState) | |
// Every time Overmind flushes out changes to state we persist it | |
overmind.addFlushListener(() => { | |
effects.persistedState.set(state) | |
}) | |
// OR: you might consider using a debounce around it, for performance | |
// reasons | |
overmind.addFlushListener(debounce(() => { | |
effects.persistedState.set(state) | |
}, 500)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment