redux-xstate
v0.1.4
Published
xstate middleware for redux
Downloads
16
Maintainers
Readme
redux-xstate
Redux middleware for xstate
Installation
$ npm install redux-xstate
Usage
import { createMiddleware, createReducer } from 'redux-xstate'
const actionMap = {
log: (dispatch, state) => fetch(LOG_URL, {
method: "POST",
body: JSON.stringify(state)
})
}
const stateChart = {
key: "light",
initial: "green",
states: {
green: {
on: {
TIMER: "yellow"
}
},
yellow: {
on: {
TIMER: "red"
}
},
red: {
on: {
TIMER: "green"
},
onEntry: ["log"]
}
}
}
const machine = Machine(stateChart)
const store = createStore(
combineReducers({
machine: createReducer(machine.initialState)
}),
applyMiddleware(createMiddleware(machine, actionMap))
)
store.dispatch("TIMER")
// state.machine.value === "yellow"