Skip to content

Commit 251d1fe

Browse files
Revert "Docs: Recommend inline use server and update examples" (#77771)
Reverts #77770
1 parent d9d3f73 commit 251d1fe

18 files changed

+169
-117
lines changed

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

+28-32
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,23 @@ 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 in an **asynchronous** function to mark the function as a Server Function.
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.
1919

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

26-
export async function deletePost(formData: FormData) {
27-
'use server'
28-
// Update data
29-
}
23+
export async function createPost(formData: FormData) {}
24+
25+
export async function deletePost(formData: FormData) {}
3026
```
3127

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

38-
export async function deletePost(formData) {
39-
'use server'
40-
// Update data
41-
}
42-
```
31+
export async function createPost(formData) {}
4332

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.
33+
export async function deletePost(formData) {}
34+
```
4535

4636
### Server Components
4737

@@ -75,18 +65,18 @@ export default function Page() {
7565

7666
### Client Components
7767

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:
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:
7969

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

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

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

153143
```ts filename="app/actions.ts" switcher
144+
'use server'
145+
154146
export async function createPost(formData: FormData) {
155-
'use server'
156147
const title = formData.get('title')
157148
const content = formData.get('content')
158149

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

164155
```js filename="app/actions.js" switcher
156+
'use server'
157+
165158
export async function createPost(formData) {
166-
'use server'
167159
const title = formData.get('title')
168160
const content = formData.get('content')
169161

@@ -273,10 +265,11 @@ export function Button() {
273265
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:
274266

275267
```ts filename="app/lib/actions.ts" switcher
268+
'use server'
269+
276270
import { revalidatePath } from 'next/cache'
277271

278272
export async function createPost(formData: FormData) {
279-
'use server'
280273
// Update data
281274
// ...
282275

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

287280
```js filename="app/actions.js" switcher
281+
'use server'
282+
288283
import { revalidatePath } from 'next/cache'
289284

290285
export async function createPost(formData) {
291-
'use server'
292286
// Update data
293287
// ...
294288
revalidatePath('/posts')
@@ -300,10 +294,11 @@ export async function createPost(formData) {
300294
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:
301295

302296
```ts filename="app/lib/actions.ts" switcher
297+
'use server'
298+
303299
import { redirect } from 'next/navigation'
304300

305301
export async function createPost(formData: FormData) {
306-
'use server'
307302
// Update data
308303
// ...
309304

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

314309
```js filename="app/actions.js" switcher
310+
'use server'
311+
315312
import { redirect } from 'next/navigation'
316313

317314
export async function createPost(formData) {
318-
'use server'
319315
// Update data
320316
// ...
321317

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ 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+
2628
export async function createPost(prevState: any, formData: FormData) {
27-
'use server'
2829
const title = formData.get('title')
2930
const content = formData.get('content')
3031

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

4344
```js filename="app/actions.js" switcher
45+
'use server'
46+
4447
export async function createPost(prevState, formData) {
45-
'use server'
4648
const title = formData.get('title')
4749
const content = formData.get('content')
4850

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ 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+
2325
import { redirect } from 'next/navigation'
2426

2527
export async function createUser(prevState: any, formData: FormData) {
26-
'use server'
2728
const res = await fetch('https://...')
2829
const json = await res.json()
2930

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

3839
```js filename="app/actions.js" switcher
40+
'use server'
41+
3942
import { redirect } from 'next/navigation'
4043

4144
export async function createUser(prevState, formData) {
42-
'use server'
4345
const res = await fetch('https://...')
4446
const json = await res.json()
4547

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

+8-4
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ 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+
4547
import { redirect } from 'next/navigation'
4648
import { revalidatePath } from 'next/cache'
4749

4850
export async function createPost(id: string) {
49-
'use server'
5051
try {
5152
// Call database
5253
} catch (error) {
@@ -59,11 +60,12 @@ export async function createPost(id: string) {
5960
```
6061

6162
```js filename="app/actions.js" switcher
63+
'use server'
64+
6265
import { redirect } from 'next/navigation'
6366
import { revalidatePath } from 'next/cache'
6467

6568
export async function createPost(id) {
66-
'use server'
6769
try {
6870
// Call database
6971
} catch (error) {
@@ -92,11 +94,12 @@ The `permanentRedirect` function allows you to **permanently** redirect the user
9294
`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:
9395

9496
```ts filename="app/actions.ts" switcher
97+
'use server'
98+
9599
import { permanentRedirect } from 'next/navigation'
96100
import { revalidateTag } from 'next/cache'
97101

98102
export async function updateUsername(username: string, formData: FormData) {
99-
'use server'
100103
try {
101104
// Call database
102105
} catch (error) {
@@ -109,11 +112,12 @@ export async function updateUsername(username: string, formData: FormData) {
109112
```
110113

111114
```js filename="app/actions.js" switcher
115+
'use server'
116+
112117
import { permanentRedirect } from 'next/navigation'
113118
import { revalidateTag } from 'next/cache'
114119

115120
export async function updateUsername(username, formData) {
116-
'use server'
117121
try {
118122
// Call database
119123
} catch (error) {

0 commit comments

Comments
 (0)