Skip to content

Commit 9c84314

Browse files
committed
docs: Move section about performance of client messages
1 parent cd3d7a2 commit 9c84314

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

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

+15-15
Original file line numberDiff line numberDiff line change
@@ -114,19 +114,6 @@ Regarding performance, async functions and hooks can be used interchangeably. Th
114114

115115
Depending on your situation, you may need to handle internationalization in Client Components. While providing all messages to the client side is typically the easiest way to [get started](/docs/getting-started/app-router#layout) and a reasonable approach for many apps, you can be more selective about which messages are passed to the client side if you're interested in optimizing the performance of your app.
116116

117-
<Details id="client-messages-performance">
118-
<summary>How does loading messages on the client side relate to performance?</summary>
119-
120-
Depending on the requirements for your app, you might want to monitor your [Core Web Vitals](https://web.dev/articles/vitals) to ensure your app meets your performance goals.
121-
122-
If you pass messages to `NextIntlClientProvider`, Next.js will emit them during the streaming render to the markup of the page so that they can be used by Client Components. This can contribute to the [total blocking time](https://web.dev/articles/tbt), which in turn can relate to the [interaction to next paint](https://web.dev/articles/inp) metric. If you're seeking to improve these metrics in your app, you can be more selective about which messages are passed to the client side.
123-
124-
However, as the general rule for optimization goes: Always measure before you optimize. If your app already performs well, there's no need for optimization.
125-
126-
Note that an automatic, compiler-driven approach for automatically splitting messages is being evaluated in [`next-intl#1`](https://github.com/amannn/next-intl/issues/1).
127-
128-
</Details>
129-
130117
There are several options for using translations from `next-intl` in Client Components, listed here in order of enabling the best performance:
131118

132119
### Option 1: Passing translations to Client Components
@@ -240,13 +227,13 @@ import FormSubmitButton from './FormSubmitButton';
240227
export default function RegisterPage() {
241228
const t = useTranslations('RegisterPage');
242229

243-
function registerUser() {
230+
function registerAction() {
244231
'use server';
245232
// ...
246233
}
247234

248235
return (
249-
<RegisterForm action={registerUser}>
236+
<RegisterForm action={registerAction}>
250237
<FormField label={t('firstName')} name="firstName" />
251238
<FormField label={t('lastName')} name="lastName" />
252239
<FormField label={t('email')} name="email" />
@@ -347,6 +334,19 @@ export default async function RootLayout(/* ... */) {
347334
}
348335
```
349336

337+
<Details id="client-messages-performance">
338+
<summary>How does loading messages on the client side relate to performance?</summary>
339+
340+
Depending on the requirements for your app, you might want to monitor your [Core Web Vitals](https://web.dev/articles/vitals) to ensure your app meets your performance goals.
341+
342+
If you pass messages to `NextIntlClientProvider`, Next.js will emit them during the streaming render to the markup of the page so that they can be used by Client Components. This can contribute to the [total blocking time](https://web.dev/articles/tbt), which in turn can relate to the [interaction to next paint](https://web.dev/articles/inp) metric. If you're seeking to improve these metrics in your app, you can be more selective about which messages are passed to the client side.
343+
344+
However, as the general rule for optimization goes: Always measure before you optimize. If your app already performs well, there's no need for optimization.
345+
346+
Note that an automatic, compiler-driven approach for automatically splitting messages is being evaluated in [`next-intl#1`](https://github.com/amannn/next-intl/issues/1).
347+
348+
</Details>
349+
350350
## Troubleshooting
351351

352352
### "Failed to call `useTranslations` because the context from `NextIntlClientProvider` was not found." [#missing-context]

0 commit comments

Comments
 (0)