next.js/test/e2e/middleware-trailing-slash/app/pages/shallow.js
shallow.js44 lines991 B
import Link from 'next/link'
import { useRouter } from 'next/router'

export default function Shallow({ message }) {
  const { pathname, query } = useRouter()
  return (
    <div>
      <ul>
        <li id="message-contents">{message}</li>
        <li>
          <Link href="/sha?hello=world" shallow id="shallow-link">
            Shallow link to ?hello=world
          </Link>
        </li>
        <li>
          <Link href="/sha?hello=goodbye" id="deep-link">
            Deep link to ?hello=goodbye
          </Link>
        </li>
        <li>
          <h1 id="pathname">
            Current path: <code>{pathname}</code>
          </h1>
        </li>
        <li>
          <h2 id="query" data-query-hello={query.hello}>
            Current query: <code>{JSON.stringify(query)}</code>
          </h2>
        </li>
      </ul>
    </div>
  )
}

let i = 0

export const getServerSideProps = () => {
  return {
    props: {
      message: `Random: ${++i}${Math.random()}`,
    },
  }
}
Quest for Codev2.0.0
/
SIGN IN