1.0.0 • Published 3 years ago

react-reducer-observable v1.0.0

Weekly downloads
75
License
MIT
Repository
github
Last release
3 years ago

react-reducer-observable

Build Status

A shameless "clone" of redux-observable for the built-in React reducer (flux). The idea is to reduce or remove entirely the redux footprint in components that don't require access to a global state tree but still need to manage dispatch events in an observable pattern. This allows state to be contextual.

Install

npm install --save react-reducer-observable

Usage

Like redux-observable, this library centers around the idea of epics. You can read more about how epics are constructed and its core concepts here. To create your context, pass in your reducer, epics, and dependencies.

const {Provider, useObservableContext} = createObservableReducerContext(myReducer, [
    myEpic
], dependencies);
<Provider options={{
    state: defaultState
}}>
    <MyComponent/>
</Provider>
import {FunctionComponent} from "react";

export const MyComponent: FunctionComponent = () => {

    const {state, dispatch} = useObservableContext();
    
    return (
        <button onClick={() => dispatch(myAction())}>
            Click Me!
        </button>
    );

}

Limitations

Due to the React's reducer state being tied to the component tree lifecycle, there is no way to reliably provide a current state to the epics. Any action(s) that requires visibility into the state will have to be done through the reducer.

1.0.0

3 years ago

1.0.0-beta.3

3 years ago

1.0.0-beta.2-1

3 years ago

1.0.0-beta.2

3 years ago

1.0.0-beta.1

3 years ago

1.0.0-alpha.1

3 years ago