1.0.2 • Published 2 years ago

react-create-context v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

This is a simple state/store utility for React based on Hooks, Context API and localStorage synchronization (optional). Safe to use with SSR.

Main Features

  • createContextStore based on Flux architecture (useReducer)
  • createContextState based on React state (useState)

Installation

With yarn:

yarn add react-create-context

Or npm:

npm install react-create-context

Examples

Example of createContextStore utility:

import { createContextStore } from 'react-create-context';

const initialState: State = {};

const reducer = (state = initialState, action) => {
  switch (action.type) {
    case 'example':
      return { ...state, ...action.payload };
    default:
      return state;
  }
};

const [
  ContextStoreProvider,
  useContextStore,
  useContextStoreDispatch,
] = createContextStore<State>(reducer, initialState); // you can pass localeStorage key as a third argument to sync with localStorage

const contextStoreActions = {
  example: (payload) => ({ type: 'example', payload }),
};

export {
  ContextStoreProvider,
  useContextStore,
  useContextStoreDispatch,
  contextStoreActions,
};

Example of createContextState utility:

import { createContextState } from 'react-create-context';

const initialState: State = {};

const [
  ContextStateProvider,
  useContextState,
  useContextSetState
] = createContextState<State>(initialState); // you can pass localeStorage key as a second argument to sync with localStorage

export {
  ContextStateProvider,
  useContextState,
  useContextSetState
};

You can find more examples in this folder.

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.1

2 years ago