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

docs: Update LocaleSwitcherSelect in example-app-router to match docs #853

Merged
merged 4 commits into from
Feb 21, 2024

Conversation

CodyDuff
Copy link
Contributor

@CodyDuff CodyDuff commented Feb 9, 2024

Updates LocaleSwitcherSelect.tsx in examples/example-app-router to match the doc changes in commit de285f6, which fixed #581.

Copy link

vercel bot commented Feb 9, 2024

@CodyDuff is attempting to deploy a commit to the next-intl Team on Vercel.

A member of the Team first needs to authorize it.

Copy link

vercel bot commented Feb 9, 2024

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

Name Status Preview Comments Updated (UTC)
next-intl-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 21, 2024 7:48am
next-intl-example-app-router ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 21, 2024 7:48am

Copy link
Owner

@amannn amannn left a comment

Choose a reason for hiding this comment

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

Thanks for the suggestion @CodyDuff!

Comment on lines 30 to 33
// TypeScript validates that only known `params` are used in combination
// with a given `pathname`. Since the two will always match for the current
// route, we can skip runtime checks.
params: params as any
Copy link
Owner

Choose a reason for hiding this comment

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

The situation is slightly different here: Since there are no dynamic params in this example, there can never be any params. However, I'd agree that it's beneficial if we show a sample that works for either case.

This would work:

Suggested change
// TypeScript validates that only known `params` are used in combination
// with a given `pathname`. Since the two will always match for the current
// route, we can skip runtime checks.
params: params as any
// @ts-expect-error -- TypeScript validates that only known `params` are used in combination
// with a given `pathname`. Since the two will always match for the current
// route, we can skip runtime checks.
params

That would work in the example in the docs too. We could update the docs accordingly so these are in sync.

What do you think?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Oh ok, I understand. Whatever you want also works for me. I had just stumbled onto this issue because I started a project using example-app-router as my starting point and eventually created a dynamic route causing the error.

Your suggested placement of the @ts-expect-error did not dismiss the error. I actually had to place the @ts-expect-error comment above the entire { pathname, params } object like this:

startTransition(() => {
  router.replace(
    // @ts-expect-error -- TypeScript will validate that only known `params`
    // are used in combination with a given `pathname`. Since the two will
    // always match for the current route, we can skip runtime checks.
    { pathname, params },
    { locale: nextLocale },
  );
});

Does this work for you?

Also, when you say "We could update the docs accordingly so these are in sync", are you saying the docs at docs/pages/docs/routing/navigation.mdx should include the @ts-expect-error comment as well?

Copy link
Owner

Choose a reason for hiding this comment

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

Sure, that looks good! Yep, would you mind updating navigation.mdx to match the updated implementation in example-app-router?

Copy link
Owner

Choose a reason for hiding this comment

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

I had a moment to update this, this is fixed in 2beef46

@amannn amannn changed the title fix: Typescript error in examples/example-app-router/src/components/LocaleSwitcherSelect.tsx docs: Update examples/example-app-router/src/components/LocaleSwitcherSelect.tsx to match docs Feb 9, 2024
@amannn amannn changed the title docs: Update examples/example-app-router/src/components/LocaleSwitcherSelect.tsx to match docs docs: Update example-app-router/src/components/LocaleSwitcherSelect.tsx to match docs Feb 9, 2024
@amannn amannn changed the title docs: Update example-app-router/src/components/LocaleSwitcherSelect.tsx to match docs docs: Update LocaleSwitcherSelect in example-app-router to match docs Feb 9, 2024
Copy link
Owner

@amannn amannn left a comment

Choose a reason for hiding this comment

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

Thank you so much! 🙌

@amannn amannn merged commit 4b48011 into amannn:main Feb 21, 2024
4 checks passed
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.

Typescript errors using new localized path apis
2 participants