Skip to content

Commit d261e7c

Browse files
authored
Add back() and forward() to new router (vercel#41575)
Adds `router.back()` and `router.forward()`. <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change that you're making: --> ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have a helpful link attached, see `contributing.md` ## Documentation / Examples - [ ] Make sure the linting passes by running `pnpm lint` - [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
1 parent 2551978 commit d261e7c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

packages/next/client/components/app-router.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,8 @@ function Router({
203203
}
204204

205205
const routerInstance: AppRouterInstance = {
206+
back: () => window.history.back(),
207+
forward: () => window.history.forward(),
206208
// TODO-APP: implement prefetching of flight
207209
prefetch: async (href) => {
208210
// If prefetch has already been triggered, don't trigger it again.

packages/next/shared/lib/app-router-context.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ interface NavigateOptions {
2929
}
3030

3131
export interface AppRouterInstance {
32+
/**
33+
* Navigate to the previous history entry.
34+
*/
35+
back(): void
36+
/**
37+
* Navigate to the next history entry.
38+
*/
39+
forward(): void
3240
/**
3341
* Refresh the current page.
3442
*/

0 commit comments

Comments
 (0)