Skip to content

Commit

Permalink
Fix rewrite and dynamic params
Browse files Browse the repository at this point in the history
  • Loading branch information
PepijnSenders committed May 26, 2021
1 parent 5bff9ea commit f9590e5
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/next/next-server/lib/router/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,8 @@ export default class Router implements BaseRouter {
options: TransitionOptions,
forcedScroll?: { x: number; y: number }
): Promise<boolean> {
console.log('test2')

if (!isLocalURL(url)) {
window.location.href = url
return false
Expand Down Expand Up @@ -977,6 +979,8 @@ export default class Router implements BaseRouter {
? removePathTrailingSlash(delBasePath(pathname))
: pathname

console.log({ shouldResolveHref })

if (shouldResolveHref && pathname !== '/_error') {
if (process.env.__NEXT_HAS_REWRITES && as.startsWith('/')) {
const rewritesResult = resolveRewrites(
Expand Down Expand Up @@ -1022,6 +1026,8 @@ export default class Router implements BaseRouter {

resolvedAs = delLocale(delBasePath(resolvedAs), this.locale)

console.log({ resolvedAs, as, route }, isDynamicRoute(route))

if (isDynamicRoute(route)) {
const parsedAs = parseRelativeUrl(resolvedAs)
const asPathname = parsedAs.pathname
Expand Down
10 changes: 10 additions & 0 deletions test/integration/rewrite-with-browser-history/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
rewrites() {
return [
{
source: '/:pagePrefix/:path*',
destination: '/dynamic-page/:path*',
},
]
},
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { useRouter } from 'next/router'
import Link from 'next/link'

export default function Page(props) {
const router = useRouter()

return (
<>
<p id="another">another page</p>
<p id="pathname">{router.pathname}</p>
<p id="query">{JSON.stringify(router.query)}</p>

<Link href="/" as="/">
<a id="to-index">Go back to index</a>
</Link>
<br />
</>
)
}

export const getServerSideProps = () => {
return { props: {} }
}
19 changes: 19 additions & 0 deletions test/integration/rewrite-with-browser-history/pages/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { useRouter } from 'next/router'

export default function Page() {
const router = useRouter()

return (
<>
<p id="index">index page</p>
<p id="pathname">{router.pathname}</p>
<p id="query">{JSON.stringify(router.query)}</p>

<br />
</>
)
}

export const getServerSideProps = () => {
return { props: {} }
}
58 changes: 58 additions & 0 deletions test/integration/rewrite-with-browser-history/test/index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/* eslint-env jest */

import { join } from 'path'
import {
findPort,
killApp,
launchApp,
nextBuild,
nextStart,
} from 'next-test-utils'
import webdriver from 'next-webdriver'

jest.setTimeout(1000 * 60 * 2)

const appDir = join(__dirname, '../')

let appPort
let app

const runTests = () => {
it('back-button should go back to rewritten path successfully', async () => {
const browser = await webdriver(appPort, '/rewrite-me')

expect(await browser.elementByCss('#another').text()).toBe('another page')

await browser
.elementByCss('#to-index')
.click()
.waitForElementByCss('#index')

await browser.back()

expect(await browser.elementByCss('#another').text()).toBe('another page')
})
}

describe('rewrites persist with browser history actions', () => {
describe('dev mode', () => {
beforeAll(async () => {
appPort = await findPort()
app = await launchApp(appDir, appPort)
})
afterAll(() => killApp(app))

runTests()
})

describe('production mode', () => {
beforeAll(async () => {
await nextBuild(appDir)
appPort = await findPort()
app = await nextStart(appDir, appPort)
})
afterAll(() => killApp(app))

runTests()
})
})

0 comments on commit f9590e5

Please sign in to comment.