-
Notifications
You must be signed in to change notification settings - Fork 134
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
SSR only works when template query is present #1813
Comments
To give more context, I'm not trying to create a page without remote data, as I could simply create a Next.js page for this. Actually, I noticed this when trying to add multiple queries to a template, as described in the RFC. |
@rrmesquita thanks for reporting this! I'd be curious to hear more about your use case for using a wp-template file if you don't require data from WordPress? |
@jasonbahl I may have expressed myself poorly. Sorry about it. I do require data from WordPress. Actually, my use case is exactly the one described in the RFC: multiple queries, one being the page data and the other being layout/global pieces of content. But when trying out with multiple queries and seeing that the SSR was not working, I discovered the problem described in this issue. Let me know if I can provide more details. |
To clarify, you have |
Not really. The SSR only works with |
I've updated my reproduction repo to include an example of multi queries, where the SSR also doesn't work. |
Thanks! This is helpful information 🙏 |
@rrmesquita I tried to reproduce your example but it seems that everything works as expected Production build with no Component.query Production build with Component.query Production build with Component.queries is there something we miss? |
@theodesp your screenshots show you're looking at the DOM inspection, rather than the actual page source. By the time you're looking at the DOM, the page has already been parsed, and the JavaScript has already been executed. The DOM is the result of the JavaScript execution, not the source of the page. To view page source, right-click anywhere on the page, and click "View Page Source", right above the inspect option. |
@theodesp I was able to reproduce following @rrmesquita steps and disabling JavaScript in my browser. I only see the content if JavaScript is enabled which means this is not doing a Server Side Render but rather a client side render |
@jasonbahl @theodesp do you have any ideas on where I can take a look to help investigate this? I'm beginning a mid-size project, and getting this to work would be very useful. Also, I'd appreciate it if you could help me set up a dev environment for this repo. |
@rrmesquita TBH the bug is not obvious inside the It could be that the use of context and useEffect would break SSR. |
Good guess, but I've run some tests, and I think the problem lies in this condition. When a That |
cc @blakewilson |
Two other things came on mind related to this variable: const [isPreview, setIsPreview] = useState<boolean | null>(
templateQueryDataProp ? false : null,
);
|
Any updates on this? It seems pretty severe as it deals with SEO – also, half the fix is already pointed out here. Thanks! |
Hi @rrmesquita, I'm no longer working on the Faust.js project. @theodesp or @ChrisWiegman should be able to provide you with some information on the status of this issue though. |
Hello! Is there any updates on this? I'm having the same issue as well, when using @rrmesquita Have you found an alternative to this? Thank you! |
@MajesticPagan I had to stick with using the default query system (template queries). |
@rrmesquita Sad to read that but thank you the feedback! I hope the Faust.js team takes a look at this in the near future. It's really tiring having to change and repeat the same global query through all the files. |
Agreed. It would also be nice to be able to leverage some of Apollo's caching so that it isn't necessary to say load data for a header and a footer on every page load etc. |
👋🏻 I'm experiencing this issue on acf.wpgraphql.com as well. I'm actively looking into this and hope to have a contribution to Faust in the near future. |
For my use case, this appears to be directly related to i.e.
If the This would allow users to have a minimal upgrade path and remain backward compatible. Another option would be to introduce a different function, i.e. A few ideas to explore, but ultimately what needs to happen is that the |
Looks like this is probably deeper than |
@jasonbahl have you looked into this? #1813 (comment) |
Description
When a template component doesn't have a
query
property, the SSR for that page simply doesn't work.It looks like a bug to me because it doesn't make sense – if a page doesn't require remote data, there's no reason not to generate it statically.
In my reproduction example, I added a query to fetch some unused piece of data, just to show that the sole presence of a query triggers the SSR.
Steps to reproduce
npm run start
to start the serverwp-templates/page.js
, uncomment the template query and save the fileAdditional context
Page Source screenshot:
@faustwp/core Version
2.1.2
@faustwp/cli Version
2.0.0
FaustWP Plugin Version
Using hosted example
WordPress Version
Using hosted example
Additional environment details
Using hosted example
Please confirm that you have searched existing issues in the repo.
The text was updated successfully, but these errors were encountered: