Use cache to quickly access users.

This commit is contained in:
Roger Braun 2017-03-08 17:59:12 +01:00
parent bde1241843
commit 480a1ba253
2 changed files with 14 additions and 5 deletions

View file

@ -1,7 +1,7 @@
import merge from 'lodash.merge'
import objectPath from 'object-path'
import localforage from 'localforage'
import { throttle } from 'lodash'
import { throttle, each } from 'lodash'
const defaultReducer = (state, paths) => (
paths.length === 0 ? state : paths.reduce((substate, path) => {
@ -33,6 +33,13 @@ export default function createPersistedState ({
return store => {
getState(key, storage).then((savedState) => {
if (typeof savedState === 'object') {
// build user cache
const usersState = savedState.users || {}
usersState.usersObject = {}
const users = usersState.users || []
each(users, (user) => { usersState.usersObject[user.id] = user })
savedState.users = usersState
store.replaceState(
merge({}, store.state, savedState)
)