react-hooks-shared-state

A global state for React with Hooks API.

Usage no npm install needed!

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

README

react-hooks-shared-state

npm version Coverage Status CircleCI

A global state for React with Hooks API.

Installation

$ npm install react-hooks-shared-state --save

Live demo

https://kelp404.github.io/react-hooks-shared-state

Quick start

const {useSharedState} = require('react-hooks-shared-state');

const Component = () => {
  const [state, setState] = useSharedState(null, {value: 'hello'});
  const onChange = e => {
    setState(Object.assign({}, state, {value: e.target.value}));
  };

  return (
    <input value={state.value} onChange={onChange}/>
  );
};

Syntactic sugar

const {useSharedState} = require('react-hooks-shared-state');
const sharedState = require('react-hooks-shared-state');
sharedState.useState()

useSharedState and sharedState.useState are the same one.

setSharedState(state)

const {setSharedState} = require('react-hooks-shared-state');

Assign a new stateful value.

Parameter state

Type: any
Required: required

useSharedState(path, initialState)

const {useSharedState} = require('react-hooks-shared-state');

Returns a stateful value, and a function to update it.

Parameter path

Type: string
Required: optional
The object path of the state.
When the path is null it will return the state(root).
If you just want to use a part of state in the component, pass the object path.

Parameter initialState

Type: any
Required: optional
The initial state.