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

Redirect for i18n handles that don't match #2821

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

blittle
Copy link
Contributor

@blittle blittle commented Mar 28, 2025

Users can interationalize handles in the admin. But the english/default language handle is also still available, even with a internationalized @inContext directive. This means duplicate content exists at both:

/de/products/sweatpants
/de/products/jogginghose

This PR changes the skeleton template implementation to follow what liquid does. If a user hits

/de/products/sweatpants we'll now 302 redirect to /de/products/jogginghose. This also applies to collections, blogs, pages, and articles.

Partially resolves https://github.com/Shopify/hydrogen-internal/issues/205

QA instructions

  1. Generate a new project with path-based i18n based on the updated skeleton and based on the hydrogen demostore.
  2. Going to http://localhost:3000/de-de/blogs/journal/10-tips-for-better-snowboarding should redirect to http://localhost:3000/de-de/blogs/zeitschrift/10-tipps-fur-besseres-snowboarden

Checklist

  • I've read the Contributing Guidelines
  • I've considered possible cross-platform impacts (Mac, Linux, Windows)
  • I've added a changeset if this PR contains user-facing or noteworthy changes
  • I've added tests to cover my changes
  • I've added or updated the documentation

Users can interationalize handles in the admin. But the english/default language handle is
also still available, even with a internationalized `@inContext` directive. This means duplicate
content exists at both:

`/de/products/sweatpants`
`/de/products/jogginghose`

This PR changes the skeleton template implementation to follow what liquid does. If a user hits

`/de/products/sweatpants` we'll now 302 redirect to `/de/products/jogginghose`. This also applies
to collections, blogs, pages, and articles.
Copy link
Contributor

shopify bot commented Mar 28, 2025

Oxygen deployed a preview of your bl-fix-i18n-handle-redirect branch. Details:

Storefront Status Preview link Deployment details Last update (UTC)
classic-remix ✅ Successful (Logs) Preview deployment Inspect deployment March 28, 2025 9:03 PM
metaobjects ✅ Successful (Logs) Preview deployment Inspect deployment March 28, 2025 9:03 PM
custom-cart-method ✅ Successful (Logs) Preview deployment Inspect deployment March 28, 2025 9:03 PM
third-party-queries-caching ✅ Successful (Logs) Preview deployment Inspect deployment March 28, 2025 9:03 PM
Skeleton (skeleton.hydrogen.shop) ✅ Successful (Logs) Preview deployment Inspect deployment March 28, 2025 9:03 PM

Learn more about Hydrogen's GitHub integration.


localizedResources.forEach(({handle, data}) => {
if (handle !== data.handle) {
url.pathname = url.pathname.replace(handle, data.handle);
Copy link
Contributor

Choose a reason for hiding this comment

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

so .. what happens if you have a product with products handle?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yeah, that's an edge case that will break. That's why this code isn't packaged up, and just in the template. The problem here is we don't know how to generate the URL for each resource. So the only way to solve it would be to make the URL a param to the function. But even then, the URL for each of these resources in the template is going to be different based on how they do i18n, which is scaffolded when the project is setup. We don't have an easy way of getting the i18n version of a resource.

To truly solve this problem, we need a more holistic solution to u18n in Hydrogen. This fix is just for an immediate fix, not the bigger i18n solution.

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