prism
prism copied to clipboard
React / Redux action composition made simple http://salsita.github.io/prism/
As described in #40 it will be nice to have an option of defining global actions. This is handy feature especially for integration with other react/redux libraries as they dispatch...
Sorry if I'm missing a note about this, but does Prism come with a recommended way of handling dynamic lists of instantiable components? I seem to remember `redux-elm` doing this,...
Hey, team. As far as I know, EnhanceComponent makes monkey patching for **dispatch** method to allow wrapping dispatched actions. Here is the patch ``` const dispatch = (action) => store.dispatch({...
The library provides the standard unwrapper (https://github.com/salsita/prism/blob/master/packages/prism-redux/src/unwrappers/buildUnwrapper.ts). This unwrapper assumes a particular format of a wrapped action. However, there is no standard wrapper compatible with this unwrapper. One has to...
I'm looking for a side-effect solution that can play nice with our prism-enhanced architecture. We were going to use redux-observable before I stumbled upon prism, but now I'm really not...
# Version 4.x.x Software evolves and it's probably the right time for breaking change. There are obviously some issues and limitations in current version of `redux-elm`. The initial goal of...
Hi there, I'm getting a `Don't call PropTypes` warning https://facebook.github.io/react/warnings/dont-call-proptypes.html after upgrading to `[email protected]`. The full warning is: ``` Warning: You are manually calling a React.PropTypes validation function for the...
What are some other ways to take advantage of static types? - Exhaustive pattern match cases on the Updater/Reducer so we make sure to handle each type? - Type checking...
Doesn't this entirely destroy the laziness of React components? https://github.com/salsita/redux-elm/blob/master/src/forwardTo.js#L14 I've come up with an interesting solution here: https://github.com/ccorcos/elmish/blob/narrative/src/tutorial/7-lazy-react/index.js#L55-L63 Where I use shouldComponentUpdate to compare dispatch functions using a `.equals`...
Hi there, I was wondering if you had interest in supporting or explaining how redux-elm could be integrated with Apollo? The [redux foundation](http://dev.apollodata.com/react/redux.html) seems like it would allow this in...