Skip to content

Commit d9d3f73

Browse files
Docs: Recommend inline use server and update examples (#77770)
1 parent a03e275 commit d9d3f73

18 files changed

+117
-169
lines changed

docs/01-app/01-getting-started/07-updating-data.mdx

+32-28
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,34 @@ You can update data in Next.js using React's [Server Functions](https://react.de
1515

1616
## Creating Server Functions
1717

18-
A Server Function can be defined by using the [`use server`](https://react.dev/reference/rsc/use-server) directive. You can place the directive at the top of an **asynchronous** function to mark the function as a Server Function, or at the top of a separate file to mark all exports of that file. We recommend using a separate file in most instances.
18+
A Server Function can be defined by using the [`use server`](https://react.dev/reference/rsc/use-server) directive. You can place the directive in an **asynchronous** function to mark the function as a Server Function.
1919

2020
```ts filename="app/lib/actions.ts" switcher
21-
'use server'
22-
23-
export async function createPost(formData: FormData) {}
21+
export async function createPost(formData: FormData) {
22+
'use server'
23+
// Update data
24+
}
2425

25-
export async function deletePost(formData: FormData) {}
26+
export async function deletePost(formData: FormData) {
27+
'use server'
28+
// Update data
29+
}
2630
```
2731

2832
```js filename="app/lib/actions.js" switcher
29-
'use server'
30-
31-
export async function createPost(formData) {}
33+
export async function createPost(formData) {
34+
'use server'
35+
// Update data
36+
}
3237

33-
export async function deletePost(formData) {}
38+
export async function deletePost(formData) {
39+
'use server'
40+
// Update data
41+
}
3442
```
3543

44+
> You can also add `use server` at the top of a file to mark all exports of that file as Server Functions. However, this can lead to functions being marked as Server Functions when they are not intended to be used as such. We recommend scoping `use server` to the function level instead as shown above.
45+
3646
### Server Components
3747

3848
Server Functions can be inlined in Server Components by adding the `"use server"` directive to the top of the function body:
@@ -65,18 +75,18 @@ export default function Page() {
6575

6676
### Client Components
6777

68-
It's not possible to define Server Functions in Client Components. However, you can invoke them in Client Components by importing them from a file that has the `"use server"` directive at the top of it:
78+
It's not possible to define Server Functions in Client Components. However, you can invoke them in Client Components by placing the functions in a separate file and importing them:
6979

7080
```ts filename="app/actions.ts" switcher
71-
'use server'
72-
73-
export async function createPost() {}
81+
export async function createPost() {
82+
'use server'
83+
}
7484
```
7585

7686
```js filename="app/actions.js" switcher
77-
'use server'
78-
79-
export async function createPost() {}
87+
export async function createPost() {
88+
'use server'
89+
}
8090
```
8191

8292
```tsx filename="app/ui/button.tsx" switcher
@@ -141,9 +151,8 @@ export function Form() {
141151
```
142152

143153
```ts filename="app/actions.ts" switcher
144-
'use server'
145-
146154
export async function createPost(formData: FormData) {
155+
'use server'
147156
const title = formData.get('title')
148157
const content = formData.get('content')
149158

@@ -153,9 +162,8 @@ export async function createPost(formData: FormData) {
153162
```
154163

155164
```js filename="app/actions.js" switcher
156-
'use server'
157-
158165
export async function createPost(formData) {
166+
'use server'
159167
const title = formData.get('title')
160168
const content = formData.get('content')
161169

@@ -265,11 +273,10 @@ export function Button() {
265273
After performing an update, you can revalidate the Next.js cache and show the updated data by calling [`revalidatePath`](/docs/app/api-reference/functions/revalidatePath) or [`revalidateTag`](/docs/app/api-reference/functions/revalidateTag) within the Server Function:
266274

267275
```ts filename="app/lib/actions.ts" switcher
268-
'use server'
269-
270276
import { revalidatePath } from 'next/cache'
271277

272278
export async function createPost(formData: FormData) {
279+
'use server'
273280
// Update data
274281
// ...
275282

@@ -278,11 +285,10 @@ export async function createPost(formData: FormData) {
278285
```
279286

280287
```js filename="app/actions.js" switcher
281-
'use server'
282-
283288
import { revalidatePath } from 'next/cache'
284289

285290
export async function createPost(formData) {
291+
'use server'
286292
// Update data
287293
// ...
288294
revalidatePath('/posts')
@@ -294,11 +300,10 @@ export async function createPost(formData) {
294300
You may want to redirect the user to a different page after performing an update. You can do this by calling [`redirect`](/docs/app/api-reference/functions/redirect) within the Server Function:
295301

296302
```ts filename="app/lib/actions.ts" switcher
297-
'use server'
298-
299303
import { redirect } from 'next/navigation'
300304

301305
export async function createPost(formData: FormData) {
306+
'use server'
302307
// Update data
303308
// ...
304309

@@ -307,11 +312,10 @@ export async function createPost(formData: FormData) {
307312
```
308313

309314
```js filename="app/actions.js" switcher
310-
'use server'
311-
312315
import { redirect } from 'next/navigation'
313316

314317
export async function createPost(formData) {
318+
'use server'
315319
// Update data
316320
// ...
317321

docs/01-app/01-getting-started/08-error-handling.mdx

+2-4
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ Expected errors are those that can occur during the normal operation of the appl
2323
You can use the [`useActionState`](https://react.dev/reference/react/useActionState) hook to manage the state of [Server Functions](https://react.dev/reference/rsc/server-functions) and handle expected errors. Avoid using `try`/`catch` blocks for expected errors. Instead, you can model expected errors as return values, not as thrown exceptions.
2424

2525
```ts filename="app/actions.ts" switcher
26-
'use server'
27-
2826
export async function createPost(prevState: any, formData: FormData) {
27+
'use server'
2928
const title = formData.get('title')
3029
const content = formData.get('content')
3130

@@ -42,9 +41,8 @@ export async function createPost(prevState: any, formData: FormData) {
4241
```
4342

4443
```js filename="app/actions.js" switcher
45-
'use server'
46-
4744
export async function createPost(prevState, formData) {
45+
'use server'
4846
const title = formData.get('title')
4947
const content = formData.get('content')
5048

docs/01-app/03-building-your-application/01-routing/05-error-handling.mdx

+2-4
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ Expected errors are those that can occur during the normal operation of the appl
2020
Use the `useActionState` hook to manage the state of Server Actions, including handling errors. This approach avoids `try`/`catch` blocks for expected errors, which should be modeled as return values rather than thrown exceptions.
2121

2222
```ts filename="app/actions.ts" switcher
23-
'use server'
24-
2523
import { redirect } from 'next/navigation'
2624

2725
export async function createUser(prevState: any, formData: FormData) {
26+
'use server'
2827
const res = await fetch('https://...')
2928
const json = await res.json()
3029

@@ -37,11 +36,10 @@ export async function createUser(prevState: any, formData: FormData) {
3736
```
3837

3938
```js filename="app/actions.js" switcher
40-
'use server'
41-
4239
import { redirect } from 'next/navigation'
4340

4441
export async function createUser(prevState, formData) {
42+
'use server'
4543
const res = await fetch('https://...')
4644
const json = await res.json()
4745

docs/01-app/03-building-your-application/01-routing/07-redirecting.mdx

+4-8
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,11 @@ The `redirect` function allows you to redirect the user to another URL. You can
4242
`redirect` is often used after a mutation or event. For example, creating a post:
4343

4444
```ts filename="app/actions.ts" switcher
45-
'use server'
46-
4745
import { redirect } from 'next/navigation'
4846
import { revalidatePath } from 'next/cache'
4947

5048
export async function createPost(id: string) {
49+
'use server'
5150
try {
5251
// Call database
5352
} catch (error) {
@@ -60,12 +59,11 @@ export async function createPost(id: string) {
6059
```
6160

6261
```js filename="app/actions.js" switcher
63-
'use server'
64-
6562
import { redirect } from 'next/navigation'
6663
import { revalidatePath } from 'next/cache'
6764

6865
export async function createPost(id) {
66+
'use server'
6967
try {
7068
// Call database
7169
} catch (error) {
@@ -94,12 +92,11 @@ The `permanentRedirect` function allows you to **permanently** redirect the user
9492
`permanentRedirect` is often used after a mutation or event that changes an entity's canonical URL, such as updating a user's profile URL after they change their username:
9593

9694
```ts filename="app/actions.ts" switcher
97-
'use server'
98-
9995
import { permanentRedirect } from 'next/navigation'
10096
import { revalidateTag } from 'next/cache'
10197

10298
export async function updateUsername(username: string, formData: FormData) {
99+
'use server'
103100
try {
104101
// Call database
105102
} catch (error) {
@@ -112,12 +109,11 @@ export async function updateUsername(username: string, formData: FormData) {
112109
```
113110

114111
```js filename="app/actions.js" switcher
115-
'use server'
116-
117112
import { permanentRedirect } from 'next/navigation'
118113
import { revalidateTag } from 'next/cache'
119114

120115
export async function updateUsername(username, formData) {
116+
'use server'
121117
try {
122118
// Call database
123119
} catch (error) {

0 commit comments

Comments
 (0)