Skip to content

Commit aecb75c

Browse files
authored
docs: Adjust locale switcher example to provide more type safety (#1256)
Related: - #1240 - #853
1 parent ba067df commit aecb75c

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

docs/pages/docs/routing/navigation.mdx

+7-4
Original file line numberDiff line numberDiff line change
@@ -351,10 +351,13 @@ const router = useRouter();
351351
const params = useParams();
352352

353353
router.replace(
354-
// @ts-expect-error -- TypeScript will validate that only known `params`
355-
// are used in combination with a given `pathname`. Since the two will
356-
// always match for the current route, we can skip runtime checks.
357-
{pathname, params},
354+
{
355+
pathname,
356+
// @ts-expect-error -- TypeScript will validate that only known `params`
357+
// are used in combination with a given `pathname`. Since the two will
358+
// always match for the current route, we can skip runtime checks.
359+
params
360+
},
358361
{locale: 'de'}
359362
);
360363
```

examples/example-app-router/src/components/LocaleSwitcherSelect.tsx

+9-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import clsx from 'clsx';
44
import {useParams} from 'next/navigation';
55
import {ChangeEvent, ReactNode, useTransition} from 'react';
66
import {useRouter, usePathname} from '@/navigation';
7+
import {Locale} from '@/types';
78

89
type Props = {
910
children: ReactNode;
@@ -22,13 +23,16 @@ export default function LocaleSwitcherSelect({
2223
const params = useParams();
2324

2425
function onSelectChange(event: ChangeEvent<HTMLSelectElement>) {
25-
const nextLocale = event.target.value;
26+
const nextLocale = event.target.value as Locale;
2627
startTransition(() => {
2728
router.replace(
28-
// @ts-expect-error -- TypeScript will validate that only known `params`
29-
// are used in combination with a given `pathname`. Since the two will
30-
// always match for the current route, we can skip runtime checks.
31-
{pathname, params},
29+
{
30+
pathname,
31+
// @ts-expect-error -- TypeScript will validate that only known `params`
32+
// are used in combination with a given `pathname`. Since the two will
33+
// always match for the current route, we can skip runtime checks.
34+
params
35+
},
3236
{locale: nextLocale}
3337
);
3438
});
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {locales} from './config';
2+
3+
export type Locale = (typeof locales)[number];

0 commit comments

Comments
 (0)