Skip to content

Commit 2beef46

Browse files
committed
Update navigation.mdx and add link from Server Components docs
1 parent a90f4a9 commit 2beef46

File tree

2 files changed

+41
-42
lines changed

2 files changed

+41
-42
lines changed

docs/pages/docs/environments/server-client-components.mdx

+37-35
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,43 @@ By doing this, we can use interactive features from React like `useState` on tra
171171

172172
Learn more in the Next.js docs: [Passing Server Components to Client Components as Props](https://nextjs.org/docs/app/building-your-application/rendering/composition-patterns#supported-pattern-passing-server-components-to-client-components-as-props)
173173

174+
<details>
175+
<summary>Example: How can I implement a locale switcher?</summary>
176+
177+
If you implement a locale switcher as an interactive select, you can keep internationalization on the server side by rendering the labels from a Server Component and only marking the `select` element as a Client Component.
178+
179+
```tsx filename="LocaleSwitcher.tsx"
180+
import {useLocale, useTranslations} from 'next-intl';
181+
import {locales} from 'config';
182+
183+
// A Client Component that registers an event listener for
184+
// the `change` event of the select, uses `useRouter`
185+
// to change the locale and uses `useTransition` to display
186+
// a loading state during the transition.
187+
import LocaleSwitcherSelect from './LocaleSwitcherSelect';
188+
189+
export default function LocaleSwitcher() {
190+
const t = useTranslations('LocaleSwitcher');
191+
const locale = useLocale();
192+
193+
return (
194+
<LocaleSwitcherSelect defaultValue={locale} label={t('label')}>
195+
{locales.map((cur) => (
196+
<option key={cur} value={cur}>
197+
{t('locale', {locale: cur})}
198+
</option>
199+
))}
200+
</LocaleSwitcherSelect>
201+
);
202+
}
203+
```
204+
205+
[Example implementation](https://github.com/amannn/next-intl/blob/main/examples/example-app-router/src/components/LocaleSwitcher.tsx) ([demo](https://next-intl-example-app-router.vercel.app/en))
206+
207+
See also: [`useRouter`](/docs/routing/navigation#userouter)
208+
209+
</details>
210+
174211
<details>
175212
<summary>Example: How can I implement a form?</summary>
176213

@@ -217,41 +254,6 @@ export default function RegisterPage() {
217254

218255
</details>
219256

220-
<details>
221-
<summary>Example: How can I implement a locale switcher?</summary>
222-
223-
If you implement a locale switcher as an interactive select, you can keep internationalization on the server side by rendering the labels from a Server Component and only marking the select element as a Client Component.
224-
225-
```tsx filename="LocaleSwitcher.tsx"
226-
import {useLocale, useTranslations} from 'next-intl';
227-
import {locales} from 'config';
228-
229-
// A Client Component that registers an event listener for
230-
// the `change` event of the select, uses `useRouter`
231-
// to change the locale and uses `useTransition` to display
232-
// a loading state during the transition.
233-
import LocaleSwitcherSelect from './LocaleSwitcherSelect';
234-
235-
export default function LocaleSwitcher() {
236-
const t = useTranslations('LocaleSwitcher');
237-
const locale = useLocale();
238-
239-
return (
240-
<LocaleSwitcherSelect defaultValue={locale} label={t('label')}>
241-
{locales.map((cur) => (
242-
<option key={cur} value={cur}>
243-
{t('locale', {locale: cur})}
244-
</option>
245-
))}
246-
</LocaleSwitcherSelect>
247-
);
248-
}
249-
```
250-
251-
[Example implementation](https://github.com/amannn/next-intl/blob/main/examples/example-app-router/src/components/LocaleSwitcher.tsx) ([demo](https://next-intl-example-app-router.vercel.app/en))
252-
253-
</details>
254-
255257
### Option 2: Moving state to the server side
256258

257259
You might run into cases where you have dynamic state, such as pagination, that should be reflected in translated messages.

docs/pages/docs/routing/navigation.mdx

+4-7
Original file line numberDiff line numberDiff line change
@@ -418,13 +418,10 @@ const router = useRouter();
418418
const params = useParams();
419419

420420
router.replace(
421-
{
422-
pathname,
423-
// TypeScript validates that only known `params` are used in combination
424-
// with a given `pathname`. Since the two will always match for the current
425-
// route, we can skip runtime checks.
426-
params: params as any
427-
},
421+
// @ts-expect-error -- TypeScript will validate that only known `params`
422+
// are used in combination with a given `pathname`. Since the two will
423+
// always match for the current route, we can skip runtime checks.
424+
{pathname, params},
428425
{locale: 'de'}
429426
);
430427
```

0 commit comments

Comments
 (0)