Package Exports
- ngrx-store-localstorage
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ngrx-store-localstorage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ngrx-store-localstorage
Simple syncing between ngrx store and local storage
Dependencies
ngrx-store-localstorage depends on @ngrx/store and Angular 2.
Usage
npm install ngrx-store-localstorage --save- Configure your ngrx store as normal using
provideStore. - Using the provided
localStorageMiddlewarefunction, specify the slices of state you would like to keep synced with local storage. - Optionally specify whether to rehydrate this state from local storage as
initialStateon application bootstrap.
import {bootstrap} from 'angular2/platform/browser';
import {TodoApp} from './todo-app';
import {provideStore} from "@ngrx/store";
import {localStorageMiddleware} from "ngrx-store-localstorage";
export function main() {
return bootstrap(TodoApp, [
provideStore({todos, visibilityFilter}),
localStorageMiddleware(['todos', 'visibilityFilter'], true)
])
.catch(err => console.error(err));
}
document.addEventListener('DOMContentLoaded', main);API
localStorageMiddleware(keys : string[], rehydrateState : boolean = false)
Provide state (reducer) keys to sync with local storage. Optionally specify whether to rehydrate initialState from local storage on bootstrap.
Arguments
keys(string[]): State keys to sync with local storagerehydrateState(boolean? = false): Pull initial state from local storage on startup