jumpstate icon indicating copy to clipboard operation
jumpstate copied to clipboard

Jumpstate is a simple and powerful state management utility for Redux.

Results 10 jumpstate issues
Sort by recently updated
recently updated
newest added

Nextjs is pretty awesome, and I Iove Jumpstate's nice clean abstraction. Any idea about integration with Nextjs? Currently redux is provided with next-redux-wrapper. Maybe it could be extended?

Fixes this issue (https://github.com/jumpsuit/jumpstate/issues/33). Currently, when a reducer is sandboxed/namespaced, a property is created on the Actions object to reference the reducers actions, for example: ``` Actions.mySandbox.increment() ``` However, the...

Like: `Actions.mySandbox.increment()` Example: `Actions.mySandbox.myEffect()`

It appears HMR can not work with jumpstate due to complaints like: `An action called "${actionName}" in the ${sandboxName} sandbox already exists! Please pick another action name!` or, in other...

I.e., if you have State('foo' {increment: ...}), State('bar', {increment...}) and you call Action.increment() which one happens?

how do we handle initial state as state passed down by store? ``` const initialState = { count: 1 } export default (reducers) => ( createStore( combineReducer(reducers), initialState, applyMiddleware(...) )...

I was looking for any best-practices / advices to test my app using jest.

Currently it appears both hooks and effects run before the reducer. I'd like to be able to fire a side effect after the reducer has updated the state e.g. to...

Improve actionCreator

Improve actionCreator