redux-fractal icon indicating copy to clipboard operation
redux-fractal copied to clipboard

Sane local component state & actions using Redux

Results 8 redux-fractal issues
Sort by recently updated
recently updated
newest added

I've searched for "Fractal — A react app structure" article https://hackernoon.com/fractal-a-react-app-structure-for-infinite-scale-4dab943092af and found your repository . Are they somehow related?

Is there interest in supporting redux v4? I tried running alongside redux4, and got the following error when handling global actions in my local reducer: ``` Uncaught Error: You may...

I am using the lib together with [redux-form](https://github.com/erikras/redux-form) and here is my case: I have a container with local store. This container has a form which should be closed after...

I believe this issue is caused by the middleware being applied before redux-fractal sets up the local dispatch function on the local store. If you look at https://github.com/reactjs/redux/blob/master/src/applyMiddleware.js#L22 you can...

In short: Redux devtools serialize actions and state. Action `@@ui/CREATE_COMPONENT_STATE` has the prop `payload.props` which can contain react nodes, which can't be handled by this serialization in some cases. To...

Hi, nice lib, but is there a chance that it will work with redux-immutable in the nearest future? With immutable we have the state as immutable Map, so we can't...

Hi, It cannot be dispatched well if we use redux-thunk. internal API, "getWrappedAction" only wrap action as object. If it gets function from redux-thunk and will be ignored by "shouldUpdate"...

I have the following use case: ``` local({ key: (props, context) => "myInput", createStore: ... })( local({ key: (props, context) => "myInput", namespace: "ui", createStore: ... }))(MyComponent) ``` The second...