purescript-react-redux
purescript-react-redux copied to clipboard
Tested it locally for a small example but definitely needs more eyes on it
I'd like to request changing the type of `Middleware` from: ```purescript newtype Middleware eff state action a b = Middleware (MiddlewareAPI eff state action -> Dispatch eff action a ->...
```purescript reducerOptic :: forall state state' action action'. Lens' state state' -> Prism' action action' -> Reducer' action' state' -> Reducer' action state reducerOptic lens prism k = wrap $...
Hi, Do you have any tips for improving experience with redux devtools? It prints JSON representation of the runtime data, which means that sometimes it just doesn't show relevant info,...
Hi, I'm having troubles figuring out why exactly the type of dispatch is polymorphic over `f`: `f action -> f action`. Does it has anything with middleware? If so, how...
Hello, `dispatch` function currently works for every `action` type, and is needed to be called with `unsafeCoerce`, just like here: https://github.com/ethul/purescript-react-redux-example/blob/master/src/Example/App.purs#L118 Have you tried to approach this somehow, to push...