-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stabilize and document useBlocker (#10991)
- Loading branch information
1 parent
e6ac5f0
commit 4f6c454
Showing
11 changed files
with
249 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"react-router": minor | ||
--- | ||
|
||
Remove the `unstable_` prefix from the [`useBlocker`](https://reactrouter.com/en/main/hooks/use-blocker) hook as it's been in use for enough time that we are confident in the API. We do not plan to remove the prefix from `unstable_usePrompt` due to differences in how browsers handle `window.confirm` that prevent React Router from guaranteeing consistent/correct behavior. |
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,5 @@ | ||
--- | ||
"react-router-dom": minor | ||
--- | ||
|
||
Allow `unstable_usePrompt` to accept a `BlockerFunction` in addition to a `boolean` |
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,136 @@ | ||
--- | ||
title: useBlocker | ||
--- | ||
|
||
# `useBlocker` | ||
|
||
<details> | ||
<summary>Type declaration</summary> | ||
|
||
```tsx | ||
declare function useBlocker( | ||
shouldBlock: boolean | BlockerFunction | ||
): Blocker; | ||
|
||
type BlockerFunction = (args: { | ||
currentLocation: Location; | ||
nextLocation: Location; | ||
historyAction: HistoryAction; | ||
}) => boolean; | ||
|
||
type Blocker = | ||
| { | ||
state: "unblocked"; | ||
reset: undefined; | ||
proceed: undefined; | ||
location: undefined; | ||
} | ||
| { | ||
state: "blocked"; | ||
reset(): void; | ||
proceed(): void; | ||
location: Location; | ||
} | ||
| { | ||
state: "proceeding"; | ||
reset: undefined; | ||
proceed: undefined; | ||
location: Location; | ||
}; | ||
|
||
interface Location<State = any> extends Path { | ||
state: State; | ||
key: string; | ||
} | ||
|
||
interface Path { | ||
pathname: string; | ||
search: string; | ||
hash: string; | ||
} | ||
|
||
enum HistoryAction { | ||
Pop = "POP", | ||
Push = "PUSH", | ||
Replace = "REPLACE", | ||
} | ||
``` | ||
|
||
</details> | ||
|
||
The `useBlocker` hook allows you to prevent the user from navigating away from the current location, and present them with a custom UI to allow them to confirm the navigation. | ||
|
||
<docs-info> | ||
This only works for client-side navigations within your React Router application and will not block document requests. To prevent document navigations you will need to add your own <a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event" target="_blank">`beforeunload`</a> event handler. | ||
</docs-info> | ||
|
||
<docs-warning> | ||
Blocking a user from navigating is a bit of an anti-pattern, so please carefully consider any usage of this hook and use it sparingly. In the de-facto use case of preventing a user navigating away from a half-filled form, you might consider persisting unsaved state to `sessionStorage` and automatically re-filling it if they return instead of blocking them from navigating away. | ||
</docs-warning> | ||
|
||
```tsx | ||
function ImportantForm() { | ||
let [value, setValue] = React.useState(""); | ||
|
||
// Block navigating elsewhere when data has been entered into the input | ||
let blocker = useBlocker( | ||
({ currentLocation, nextLocation }) => | ||
value !== "" && | ||
currentLocation.pathname !== nextLocation.pathname | ||
); | ||
|
||
return ( | ||
<Form method="post"> | ||
<label> | ||
Enter some important data: | ||
<input | ||
name="data" | ||
value={value} | ||
onChange={(e) => setValue(e.target.value)} | ||
/> | ||
</label> | ||
<button type="submit">Save</button> | ||
|
||
{blocker.state === "blocked" ? ( | ||
<div> | ||
<p>Are you sure you want to leave?</p> | ||
<button onClick={() => blocker.proceed()}> | ||
Proceed | ||
</button> | ||
<button onClick={() => blocker.reset()}> | ||
Cancel | ||
</button> | ||
</div> | ||
) : null} | ||
</Form> | ||
); | ||
} | ||
``` | ||
|
||
For a more complete example, please refer to the [example][example] in the repository. | ||
|
||
## Properties | ||
|
||
### `state` | ||
|
||
The current state of the blocker | ||
|
||
- `unblocked` - the blocker is idle and has not prevented any navigation | ||
- `blocked` - the blocker has prevented a navigation | ||
- `proceeding` - the blocker is proceeding through from a blocked navigation | ||
|
||
### `location` | ||
|
||
When in a `blocked` state, this represents the location to which we blocked a navigation. When in a `proceeding` state, this is the location being navigated to after a `blocker.proceed()` call. | ||
|
||
## Methods | ||
|
||
### `proceed()` | ||
|
||
When in a `blocked` state, you may call `blocker.proceed()` to proceed to the blocked location. | ||
|
||
### `reset()` | ||
|
||
When in a `blocked` state, you may call `blocker.reset()` to return the blocker back to an `unblocked` state and leave the user at the current location. | ||
|
||
[example]: https://github.com/remix-run/react-router/tree/main/examples/navigation-blocking |
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,87 @@ | ||
--- | ||
title: unstable_usePrompt | ||
--- | ||
|
||
# `unstable_usePrompt` | ||
|
||
<details> | ||
<summary>Type declaration</summary> | ||
|
||
```tsx | ||
declare function unstable_usePrompt({ | ||
when, | ||
message, | ||
}: { | ||
when: boolean | BlockerFunction; | ||
message: string; | ||
}) { | ||
|
||
type BlockerFunction = (args: { | ||
currentLocation: Location; | ||
nextLocation: Location; | ||
historyAction: HistoryAction; | ||
}) => boolean; | ||
|
||
interface Location<State = any> extends Path { | ||
state: State; | ||
key: string; | ||
} | ||
|
||
interface Path { | ||
pathname: string; | ||
search: string; | ||
hash: string; | ||
} | ||
|
||
enum HistoryAction { | ||
Pop = "POP", | ||
Push = "PUSH", | ||
Replace = "REPLACE", | ||
} | ||
``` | ||
</details> | ||
The `unstable_usePrompt` hook allows you to prompt the user for confirmation via [`window.confirm`][window-confirm] prior to navigating away from the current location. | ||
<docs-info> | ||
This only works for client-side navigations within your React Router application and will not block document requests. To prevent document navigations you will need to add your own <a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event" target="_blank">`beforeunload`</a> event handler. | ||
</docs-info> | ||
<docs-warning> | ||
Blocking a user from navigating is a bit of an anti-pattern, so please carefully consider any usage of this hook and use it sparingly. In the de-facto use case of preventing a user navigating away from a half-filled form, you might consider persisting unsaved state to `sessionStorage` and automatically re-filling it if they return instead of blocking them from navigating away. | ||
</docs-warning> | ||
<docs-warning> | ||
We do not plan to remove the `unstable_` prefix from this hook because the behavior is non-deterministic across browsers when the prompt is open, so React Router cannot guarantee correct behavior in all scenarios. To avoid this non-determinism, we recommend using `useBlocker` instead which also gives you control over the confirmation UX. | ||
</docs-warning> | ||
```tsx | ||
function ImportantForm() { | ||
let [value, setValue] = React.useState(""); | ||
|
||
// Block navigating elsewhere when data has been entered into the input | ||
unstable_usePrompt({ | ||
message: "Are you sure?", | ||
when: ({ currentLocation, nextLocation }) => | ||
value !== "" && | ||
currentLocation.pathname !== nextLocation.pathname, | ||
}); | ||
|
||
return ( | ||
<Form method="post"> | ||
<label> | ||
Enter some important data: | ||
<input | ||
name="data" | ||
value={value} | ||
onChange={(e) => setValue(e.target.value)} | ||
/> | ||
</label> | ||
<button type="submit">Save</button> | ||
</Form> | ||
); | ||
} | ||
``` | ||
[window-confirm]: https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm |
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
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