1.4.2 • Published 6 years ago
react-simple-storage v1.4.2
React Simple Storage
A simple component and helper functions for using web storage with React.
You may also want to check out my related Hacker Noon article, How to take advantage of Local Storage in your React projects, for some context and logic behind this project.
Good use cases for react-simple-storage
- Persist and experiment with a component's state while developing.
 - Save form data across user sessions.
 - A simple, quick fake backend for a practice or portfolio project.
 - More I can't think of...
 
Install
yarn add react-simple-storageUsing on IE11
For react-simple-storage to work on IE11, you'll need to use babel-polyfill.
yarn add babel-polyfillThen import in your project.
import "babel-polyfill";Usage
Component
Import and include an instance of react-simple-storage in a component whose state you want to save to web storage.
import React, { Component } from "react";
import SimpleStorage from "react-simple-storage";
export default class ParentComponent extends Component {
  constructor(props) { 
    super(props)
    this.state = {
      text: "",
    }
  }
  render() {
    return ( 
      <div>
      
        // include the component somewhere in the parent to save the parent's state in web storage
        <SimpleStorage parent={this} />
        // the value of this input will be saved in web storage
        <input
          type="text"
          value={this.state.text}
          onChange={e => this.setState({ text: e.target.value })}
        />
        
      </div>
    ) 
  }
}Props
| Name | Type | Required? | Default | Description | 
|---|---|---|---|---|
| parent | object | Yes | none | reference to the parent component, i.e. this | 
| prefix | string | No | "" | prefix added to storage keys to avoid name clashes across instances | 
| blacklist | array | No | [] | a list of parent component's state names/keys to ignore when saving to storage | 
| onParentStateHydrated | func | No | none | fires after the parent component's state has been updated with storage items. Basically a callback for working with the parent component's state once updated with storage. | 
Helper Functions
clearStorage(prefix)
Clears items in storage with the given prefix, or all items if no prefix is given.
prefix: String | optional- Corresponds toprefixprop passed to an instance of thereact-simple-storagecomponent.
Example
import React, { Component } from "react";
import SimpleStorage, { clearStorage } from "react-simple-storage";
export default class ParentComponent extends Component {
  constructor(props) { 
    super(props)
    this.state = {
      text: "",
    }
  }
  render() {
    return ( 
      <div>
      
        // provide a prefix prop to be able to clear just the storage items 
        // created by this instance of the react-simple-storage component
        <SimpleStorage parent={this} prefix={"ParentComponent"} />
        <input
          type="text"
          value={this.state.text}
          onChange={e => this.setState({ text: e.target.value })}
        />
        
        // removes only storage items related to the ParentComponent
        <button onClick={() => clearStorage("ParentComponent")}>
          Clear storage for ParentComponent
        </button>
        
         // removes all items from storage
        <button onClick={() => clearStorage()}>
          Clear all storage
        </button>
        
      </div>
    ) 
  }
}resetParentState(parent, initialState, keysToIgnore)
Resets the parent's state to given initialState. 
parent: Object | required- Reference to the parent component, allowingreact-simple-storageto access and update the parent component's state. If called within the parent component, simply passthis.initialState: Object | required- Thestateof the parent component after the function executes.keysToIgnore: Array | optional- A list of keys in the parent component'sstateto ignore onresetParentState. These pieces of that parent's state will NOT be reset.
Example
import React, { Component } from "react";
import SimpleStorage, { resetParentState } from "react-simple-storage";
export default class ParentComponent extends Component {
  constructor(props) { 
    super(props)
    this.state = {
      text: "Initial Text",
    }
    
    // store the component's initial state to reset it
    this.initialState = this.state;
  }
  render() {
    return ( 
      <div>
      
        <SimpleStorage parent={this} />
        <input
          type="text"
          value={this.state.text}
          onChange={e => this.setState({ text: e.target.value })}
        />
        
        // will set "text" in state to "Initial Text"
         <button onClick={() => resetParentState(this, this.initialState)}>
           Reset parent state
         </button>
        
        // ignores "text" on reset, so will have no effect here
        <button onClick={() => resetParentState(this, this.initialState, ['text'])}>
          Do NOT reset text
        </button>
        
      </div>
    ) 
  }
}Built with
- store.js - Cross-browser storage for all use cases, used across the web.
 
License
This project is licensed under the MIT License - see the LICENSE.md file for details