-
Notifications
You must be signed in to change notification settings - Fork 62
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
Server side rendering with fetched data #11
Comments
I have some interesting ideas around this, and actually have another library that helps with this ( Stay tuned. |
Interestingly though as you are returning a promise you could have a step within the promise chain that does data loading (e.g. a redux-thunk that returns a promise), before finally resolving the component. This would be a pure react-async-component implementation then, but I haven't had time to play with this idea either. |
Cool, thanks! |
@xmityaz let me know how you got on. It would be great to take your pain points under consideration for when I try out my solutions. 😀 |
I've switched to |
FYI to everyone, you don't need to use |
@ctrlplusb can you give example of this together with async component? Atm we have separate await for data loading promises using custom hoc. Would like to see how this can be simplified |
I have another problem with SSR and code split. I wonder if anybody else is seeing it? So I did prerendering, and I have code splitting and I have P.S. Full code here https://github.com/stereobooster/an-almost-static-stack, I use react-loadable, not react-async-component, but I suppose it will be the same for any "loadable" solution. |
Hi! Thank you for a nice library!
I'm trying to saddle server-side rendering for my app so I'm wondering...
Is it possible to use react-async-component to load all the data which is fetching in componentWillMount method at the server and then return the fully loaded component to the client? So instead of preloaders the user will be able to see a page with some loaded data.
I'm trying to implement such example, but I'm basically having 2 times of calling render and componentWillMount method without waiting for promises.
The text was updated successfully, but these errors were encountered: