react-state-util

Add global state to React (like root style in AngularJS but keep the React philosophie)

Usage no npm install needed!

<script type="module">
  import reactStateUtil from 'https://cdn.skypack.dev/react-state-util';
</script>

README

react-state-util

Add global state to React (like root style in AngularJS but keep the React philosophie)

ConnectGlobalState

Usage

  • Connect Component to state global
  class App extends Component {
      render() {
          return (
              <div>
                  <h3>App Component</h3>
                  <button onClick={ ()=>this.setGlobalState({name:'Huan Nguyen'}) }>Change Name</button>
                  <div>Hello {this.globalState.name || 'Phong' }</div>
              </div>
          );
      }
  }

  export default connectGlobalState(App);
  • Set state global this.setGlobalState({ [stateName]:[stateValue] })
 this.setGlobalState({name:'Bob'})
  • Get state global this.globalState.[stateName]
this.globalState.name //Bob