1.2.8 • Published 8 months ago

rx-store-react v1.2.8

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

RxStoreReact

A state management library based on rx-store-core, for React developer

Install

npm install rx-store-core rx-store-react

Use a normal state manager

Import

import { NRS } from "rx-store-core";
import { stateObserverManager } from "rx-store-react";

Overview

const store = NRS({
  count: (): number => 0, // [state key]: state constructor
  checked: (): boolean => false,
}); // define a normal store

// standalone handy functions for state mutation and retrieval:
const {
  setState,
  getState,
  getStates,
  getDefault,
  getStateAll,
  getDefaults,
  getDefaultAll,
  getClonedState,
  getImmutableState,
  reset,
  resetMultiple,
  resetAll
} = store;

As for how to use these functions, please refer to this doc

React state observer hooks definitions:

const {
  useObservableState, // observe React global state by defining NRS key of object
  useObservableStates, // observe React global states by defining NRS keys of object
  useObservableSelector, // observe React global state computed by all NRS inner state
  useObservableReducer, // same effect as useObservableState, require a reducer as a parameter
  useObservableAsyncComputation, // same effect as useObservableSelector, but the state updated in a async way
  useObservableAsyncReducer, // same effect as useObservableReducer, but the state updated in a async way
} = stateObserverManager(store); // inject the normal store to generate utility hooks

useObservableState

Desc: observe one state in NRS by key

Params: key that is defined in NRS, ie: count and checked

Return: state, state mutator

const [count, setCount] = useObservableState("count");
// count is value, setCount is related mutator
// count: number
// setCount: (count: number) => void

example

useObservableStates

Desc: Observe multiple state in NRS by keys

Params: Array of keys defined in NRS, duplication not allowed

Return: an object contains defined keys and related values

const { count, checked } = useObservableStates(["count", "checked"]);

example

useObservableSelector

Desc: get a computed state, based on all inner state defined inside NRS, when defined state change, the computation will automatically invoked

Params: computation function which takes all defined states as an argument and return a computed value

Return: a computed value identical with the input computation function return value

const computed: `${number} is ${boolean}` = useObservableSelector(({ count, checked }) => {
    return `${count} is ${checked}`
})

example

useObservableReducer

Desc: a global state control similar to React useReducer, for complex state handling

Params: key of NRS definition, a reducer() function reducer: Reducer<T, S, K> is a function takes previous value as argument and return T, T is dispatch type extends string, S is all state keys, K is the observed key

Return: a constant array, value, dispatch, value is the returned payload by reducer, dispatch() is a function to trigger reducer invocation, and change the state defined inside NRS dispatch: a function take

{ type: T, payload?: P }

as argument, return void

const [value, dispatch] = useObservableReducer<"count", "plus" | "minus" | "replace">("count", (previous, { type, payload }) => {
    if(type === "plus") {
        return previous + 1;
    }

    if(type === "minus") {
        return previous - 1;
    }

    if(type === "replace" && payload !== undefined) {
        return payload;
    }

    return previous;
});

// dispatch a "plus" Action
dispatch({
    type: "plus"
});
// dispatch a "minus" Action
dispatch({
    type: "minus"
});
// dispatch a "replace" Action
dispatch({
    type: "replace",
    payload: 99
})

example

useObservableAsyncComputation

Desc: a deferred computation result that reflect to React state, the computation function will be automatically invoked if the state get changed.

Params: 1, computation function, that take all defined state as a argument, and return a Promise or Observable that resolve a computed result.

2: fallback, optional, a replacement value used when async process failed.

3: comparator, optional, a comparator function that determine whether NRS inner state changed

Return:

{
    state: FULFILLED | ERROR | PENDING;
    value: R;
    error: any;
}

R stands for computed result

const { state, value, error } = useObservableAsyncComputation(({ count, checked }) => {
    return new Promise((resolve, reject) => {
        setTimeout(() => {
            if(checked) {
                resolve(String(count));
                return;
            }
            reject(String(checked))
        }, count)
    })
})

example

useObservableAsyncReducer

Desc: a global state control, which return a Promise or Observable resolve a reduced value, for complex async state handling

params: a reducer function returning a Promise or an Observable that resolve a reduced value

Return: an constant array

[
    {
        state: FULFILLED | ERROR | PENDING;
        value: R;
        error: any;
    },
    (
        action: {
            type: T;
            payload?: P;
        }
    ) => void 
    // dispatch function
]

R stands for reduced result, T stands for different action type, payload stands for optional R

example

Use a Immutable state manager

Import

import { IRS } from "rx-store-core";
import { immutableStateObserverManager } from "rx-store-react";

Usage Useful when you frequently compare and clone complex data structure

Use of IRS API is the almost the same as use of NRS

Make sure you are familiar with Immutable data structure

import { Map } from "immutable";
const initiator = {
    info: () => Map({
        checked: false,
        count: 0
    })
}
const immutableStore = IRS(initiator);

const { 
    useImmutableObservableState,
    useImmutableObservableStates,
    useImmutableObservableSelector,
    useImmutableObservableReducer,
    useImmutableObservableAsyncComputation,
    useImmutableObservableAsyncReducer
} = immutableStateObserverManager(immutableStore)

try it here

  • the return type of useImmutableObservableStates is not a plain JavaScript object, instead, it is a Immutable.RecordOf({selected key: related value})
1.2.8

8 months ago

1.2.7

8 months ago

1.2.6

10 months ago

1.2.5

10 months ago

1.2.3

10 months ago

1.2.2

10 months ago

1.2.1

10 months ago

1.2.0

10 months ago

1.1.9

10 months ago

1.1.8

10 months ago

1.1.7

10 months ago

1.1.6

10 months ago

1.1.5

10 months ago

1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

10 months ago

1.1.1

10 months ago

1.0.9

10 months ago

1.0.8

11 months ago

1.0.7

11 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago