-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: actions that self-redirect should be handled gracefully
- Loading branch information
Showing
12 changed files
with
190 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
'use server' | ||
|
||
import { redirect } from 'next/navigation' | ||
|
||
type State = { | ||
errors: Record<string, string> | ||
} | ||
|
||
export async function action(previousState: State, formData: FormData) { | ||
const name = formData.get('name') | ||
|
||
if (name !== 'justputit') { | ||
return { errors: { name: "Only 'justputit' is accepted." } } | ||
} | ||
|
||
redirect('/redirect/other') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
'use client' | ||
|
||
import React, { useActionState } from 'react' | ||
import { action } from './actions' | ||
|
||
export default function Page({ children }) { | ||
const [{ errors }, dispatch] = useActionState(action, { | ||
errors: { name: '' }, | ||
}) | ||
|
||
return ( | ||
<div> | ||
<form action={dispatch}> | ||
<input type="text" name="name" /> | ||
<button type="submit">Submit</button> | ||
{errors.name && <p id="error">{errors.name}</p>} | ||
</form> | ||
{children} | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default function Page() { | ||
return <div>Other Page</div> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default function Page() { | ||
return <div>Main Page</div> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
'use server' | ||
|
||
import { redirect } from 'next/navigation' | ||
|
||
type State = { | ||
errors: Record<string, string> | ||
} | ||
|
||
export async function action(previousState: State, formData: FormData) { | ||
const name = formData.get('name') | ||
|
||
if (name !== 'justputit') { | ||
return { errors: { name: "Only 'justputit' is accepted." } } | ||
} | ||
|
||
redirect('/self-redirect') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
'use client' | ||
|
||
import React, { useActionState } from 'react' | ||
import { action } from './actions' | ||
|
||
export default function Page({ children }) { | ||
const [{ errors }, dispatch] = useActionState(action, { | ||
errors: { name: '' }, | ||
}) | ||
|
||
return ( | ||
<div> | ||
<form action={dispatch}> | ||
<input type="text" name="name" /> | ||
<button type="submit">Submit</button> | ||
{errors.name && <p id="error">{errors.name}</p>} | ||
</form> | ||
{children} | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default function Page() { | ||
return <div>Other Page</div> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default function Page() { | ||
return <div>Main Page</div> | ||
} |