-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage for flux #94
Comments
Right, and this is where flux-like implementations such as Redux kinda "break" here. The original purpose of this lib was to be flux-agnostic and allow lazy-loading missing props for a component. No worries, though. I have a semi-working Redux + Resolver implementation in a work project that replaces |
Sounds great :D Would look forward to that in the roadmap. |
@ericclemmons That is pretty much exactly what I'm looking for. Was there any progress? As you outline, the trouble with libs like react-transmit, react-resolver and async-props is that they all provide props that are the resolved return value of the async function. If you have signed up to the "single source of truth state tree" mantra of redux then this is incompatible as the async function is just an action to trigger manipulating that tree. |
Adam, you're correct. And yes, this is largely solved (but missing some On Fri, Dec 18, 2015 at 10:44 AM Adam Thomas [email protected]
|
Great news! Look forward to trying it out :). |
apologies for the +1, but just wondering if there was any progress on this? I'm using Redux, and looking for a simple way to fire a bunch of actions (that all return promises) per component and await those promises before sending back the initial SSR. In that scenario, I don't care about return values or adding to I'm really surprised the rest of the Redux community hasn't come out with something to address this, TBH. Seems like a really obvious need. Alas, if you have an update, that'd be awesome -- I'm on the verge of writing a home-brew hack but I'm sure yours would be a lot better! |
I agree, and I'm sorry I haven't completed it. It's been a few months of In the meantime, I'd recommend trying out It's very similar to @REconnect. The major difference would be not having On Sat, Feb 20, 2016 at 11:37 PM Lee Benson [email protected]
|
redial looks perfect, thanks so much for the suggestion @ericclemmons - appreciate you taking the time to help. |
Hi, was thinking if there is a better way to use resolve. I'm using it to trigger actions that will populate stores instead of setting a prop on resolve.
The text was updated successfully, but these errors were encountered: