@react-simply/state

1.0.2 • Public • Published

@react-simply/state

Super simple state management for React apps.

Install

npm i @react-simply/state

Usage

Read my State Management with React Hooks and Context API at 10 lines of code! article on Medium or follow these steps:

  1. Wrap your React App into StateProvider.

  2. Pass default state and reducer (simple function that accepts state object and action object):

import { StateProvider } from '@react-simply/state';

const App = () => {
  const initialState = {
    theme: { primary: 'green' }
  };
  
  const reducer = (state, action) => {
    switch (action.type) {
      case 'changeTheme':
        return {
          ...state,
          theme: action.newTheme
        };
        
      default:
        return state;
    }
  };
  
  return (
    <StateProvider initialState={initialState} reducer={reducer}>
        // App content ...
    </StateProvider>
  );  
}

3. Use and update your state in any component inside your App. getState function returns array, where first item is state object and second item is dispatch function that accepts the action as a parameter.

import getState from '@react-simply/state';

const ThemedButton = () => {
  const [{ theme }, dispatch] = getState();
  
  return (
    <Button
      primaryColor={theme.primary}
      onClick={() => dispatch({
        type: 'changeTheme',
        newTheme: { primary: 'blue'}
      })}
    >
      Make me blue!
    </Button>
  );
}

That's it. State management have never been easier!

Package Sidebar

Install

npm i @react-simply/state

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

2.98 kB

Total Files

3

Last publish

Collaborators

  • luke.hall