Skip to content
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

Make site work with the Cloudflare OpenNext adapter #7383

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

dario-piotrowicz
Copy link
Contributor

@dario-piotrowicz dario-piotrowicz commented Jan 2, 2025

This PR applies changes to make it so that the site can be deployed to Cloudflare workers using the open-next Cloudflare adapter

The app does seem to work as intended for the most part:
Screenshot 2025-01-02 at 19 46 00

Deployment URL: https://nodejs-website.web-experiments.workers.dev


Warning

The PR is currently a single commit (ish), I am planning to force push (with --force-with-lease) any new changes and keep this a single commit PR for now (so that it's easier to manage and rebase), if that's too annoying problematic for reviewers please let me know and I can just push standard commits if strongly preferred


Check List

  • I have read the Contributing Guidelines and made commit messages that follow the guideline.
  • I have run npm run format to ensure the code follows the style guide.
  • I have run npm run test to check if all tests are passing.
  • I have run npx turbo build to check if the website builds without errors.
  • I've covered new added functionality with unit tests if necessary.

Copy link

vercel bot commented Jan 2, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
nodejs-org ✅ Ready (Inspect) Visit Preview Apr 3, 2025 0:58am

@ovflowd
Copy link
Member

ovflowd commented Feb 1, 2025

@dario-piotrowicz do we have updates here? 👀

@dario-piotrowicz
Copy link
Contributor Author

Hey @ovflowd 👋

Sorry for keeping the PR lingering, there are a few smaller issues we addressed in our adapter (that I need to reflect here), and also ISR should be coming soon (@vicb can provide more context)

Besides that I just need to rebase the PR, the only significant issue remaining should be filesystem access, but I wanted to clarify that with you, I'll drop you a message today to clarify things

(PS: I hope the PR is not bothering you 🙇, if you want I can close it and reopen it when we're ready?)

@ovflowd
Copy link
Member

ovflowd commented Feb 16, 2025

Sorry for keeping the PR lingering, there are a few smaller issues we addressed in our adapter (that I need to reflect here), and also ISR should be coming soon (@vicb can provide more context)

This is awesome news. Excited to hear from @vicb

Besides that I just need to rebase the PR, the only significant issue remaining should be filesystem access, but I wanted to clarify that with you, I'll drop you a message today to clarify things

I believe we sorted that out on Slack 🖖

(PS: I hope the PR is not bothering you 🙇, if you want I can close it and reopen it when we're ready?)

Not at all <3

Copy link

vercel bot commented Mar 28, 2025

Deployment failed with the following error:

The provided GitHub repository does not contain the requested branch or commit reference. Please ensure the repository is not empty.

remove all changes related to async context
"test:unit": "cross-env NODE_NO_WARNINGS=1 jest",
"test:unit:watch": "npm run test:unit -- --watch",
"test": "turbo test:unit",
"build:worker": "npx opennextjs-cloudflare build",
"postbuild:worker": "node ./.cloudflare/prepare-build.mjs",
"cf:preview": "npm run build:worker && sleep 3 && npx wrangler dev",
"cf:deploy": "npx wrangler deploy"
"cf:deploy": "npx wrangler deploy",
"postinstall": "npm run build-blog-data"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd discourage using postinstall scripts :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the problem is that I could not find a way to commit an initial version of the public/blog-data.json file and then have it included in the repository but not track any more changes made to it

I did a bunch of googling and I am not sure if that's actually possible 😕 (see: https://stackoverflow.com/questions/3319479/can-i-git-commit-a-file-and-ignore-its-content-changes, https://git-scm.com/docs/gitfaq#ignore-tracked-files)

So with this script as soon as install is run the file is created and everything works as intended, if you want I can remove it and things would mostly still work just fine, the only problem being that the apps/site/next.json.mjs file would have a type error until.... oh it's a mjs file and it's not type checked...

so are you happy with me just removing the postinstall script? and/or do you have a suggestion on how to set up an initial blog-data.json?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the problem is that I could not find a way to commit an initial version of the public/blog-data.json file and then have it included in the repository but not track any more changes made to it

We don't need that.

then have it included in the repository but not track any more changes made to it

You can do that, you commit a file initially, then add it ton gitignore, and then any update onwards is ignored.

Copy link
Member

@ovflowd ovflowd Apr 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So with this script as soon as install is run the file is created and everything works as intended, if you want I can remove it and things would mostly still work just fine, the only problem being that the apps/site/next.json.mjs file would have a type error until.... oh it's a mjs file and it's not type checked...

I get that, an initial empty file is fine; no need of a postinstall.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can do that, you commit a file initially, then add it ton gitignore, and then any update onwards is ignored.

I don't think you can, a file is either tracked by git or not, it can't be tracked to a certain point and then kept but not tracked, at least that's my understanding of how git works

see:
Kapture 2025-04-03 at 18 31 36

@dario-piotrowicz
Copy link
Contributor Author

After a bunch of poking around (and help from @penalosa 🫶) I've narrowed down that the issue regarding the initial flashing is due to opennextjs/opennextjs-cloudflare#511 , the problem is that an undefined __name function makes it into the browser causing the theming script to error defaulting to white, before react can catch up and potentially set it back to dark, once opennextjs/opennextjs-cloudflare#511 the flash issue here should go away 🙂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants