-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
02-app > 02-api-reference > 04-functions > use-router.mdx #272
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다! 커멘트 확인해주시고 비슷한 언급한 내용은 문서 전체에 걸쳐 수정 부탁드립니다!
@@ -1,11 +1,11 @@ | |||
--- | |||
title: useRouter | |||
description: API reference for the useRouter hook. | |||
description: useRouter 훅에 대한 API 참조입니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
description: useRouter 훅에 대한 API 참조입니다. | |
description: useRouter 훅에 대한 API 레퍼런스입니다. |
- `router.push(href: string)`: 경로를 제공받아 클라이언트 사이드 탐색을 수행합니다. 새로운 항목을 [브라우저 방문 기록](https://developer.mozilla.org/en-US/docs/Web/API/History_API)에 추가합니다. | ||
- `router.replace(href: string)`: [브라우저 방문 기록 스택](https://developer.mozilla.org/en-US/docs/Web/API/History_API)에 새로운 항목을 추가하지 않고 경로를 제공받는 클라이언트 사이드 탐색을 수행합니다. | ||
- `router.refresh()`: 현재 경로를 새로고침합니다. 서버로 새로운 요청을 만들면서, 데이터 요청들을 refetch하고 서버 컴포넌트를 리렌더링합니다. 클라이언트는 영향 받지 않는 클라이언트 사이드 리액트(예: `useState`)나 브라우저 상태(예: 스크롤 위치)를 잃지 않고 업데이트된 리액트 서버 컴포넌트 페이로드를 병합합니다. | ||
- `router.prefetch(href: string)`: 더 빠른 클라이언트 사이드 전환을 위해 제공된 경로를 [prefetch](/docs/app/building-your-application/routing/linking-and-navigating#prefetching)합니다. | ||
- `router.back()`: [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 사용하여 브라우저 탐색기록 스택에서 이전 경로로 이동합니다. | ||
- `router.forward()`: [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 사용하여 브라우저 탐색기록 스택에서 다음 페이지로 이동합니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `router.push(href: string)`: 경로를 제공받아 클라이언트 사이드 탐색을 수행합니다. 새로운 항목을 [브라우저 방문 기록](https://developer.mozilla.org/en-US/docs/Web/API/History_API)에 추가합니다. | |
- `router.replace(href: string)`: [브라우저 방문 기록 스택](https://developer.mozilla.org/en-US/docs/Web/API/History_API)에 새로운 항목을 추가하지 않고 경로를 제공받는 클라이언트 사이드 탐색을 수행합니다. | |
- `router.refresh()`: 현재 경로를 새로고침합니다. 서버로 새로운 요청을 만들면서, 데이터 요청들을 refetch하고 서버 컴포넌트를 리렌더링합니다. 클라이언트는 영향 받지 않는 클라이언트 사이드 리액트(예: `useState`)나 브라우저 상태(예: 스크롤 위치)를 잃지 않고 업데이트된 리액트 서버 컴포넌트 페이로드를 병합합니다. | |
- `router.prefetch(href: string)`: 더 빠른 클라이언트 사이드 전환을 위해 제공된 경로를 [prefetch](/docs/app/building-your-application/routing/linking-and-navigating#prefetching)합니다. | |
- `router.back()`: [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 사용하여 브라우저 탐색기록 스택에서 이전 경로로 이동합니다. | |
- `router.forward()`: [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 사용하여 브라우저 탐색기록 스택에서 다음 페이지로 이동합니다. | |
- `router.push(href: string)`: 제공 받은 경로로 클라이언트 사이드 이동을 수행합니다. 새로운 항목을 [브라우저 방문 기록](https://developer.mozilla.org/en-US/docs/Web/API/History_API) 스택에 추가합니다. | |
- `router.replace(href: string)`: [브라우저 방문 기록 스택](https://developer.mozilla.org/en-US/docs/Web/API/History_API)에 새로운 항목을 추가하지 않고 제공 받은 경로로 클라이언트 사이드 이동을 수행합니다. | |
- `router.refresh()`: 현재 경로를 새로고침합니다. 서버로 새로운 요청을 만들면서, 데이터 요청들을 re-fetch하고 서버 컴포넌트를 리렌더링합니다. 클라이언트는 변경되지 않은 클라이언트 사이드 리액트(예: `useState`)나 브라우저 상태(예: 스크롤 위치)를 잃지 않고 업데이트된 리액트 서버 컴포넌트 페이로드를 병합합니다. | |
- `router.prefetch(href: string)`: 더 빠른 클라이언트 사이드 전환을 위해 제공 받은 경로를 [prefetch](/docs/app/building-your-application/routing/linking-and-navigating#prefetching)합니다. | |
- `router.back()`: [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 사용하여 브라우저 방문 기록 스택에서 이전 경로로 이동합니다. | |
- `router.forward()`: [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 사용하여 브라우저 방문 기록 스택에서 다음 페이지로 이동합니다. |
용어 통일 및 원문 영어 형태 그대로 살렸습니다. 다른 부분도 위와 같이 다시 확인 부탁 드립니다!
> - `push()`와 `replace()` 메소드는 새로운 경로가 prefetch되었으며 [동적 segments](/docs/app/building-your-application/routing/dynamic-routes)를 포함하지 않거나 현재 경로와 동적 매개변수를 가진 경우 [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 수행합니다. | ||
> - `next/link`는 경로가 viewport에 표시되면서 자동으로 경로를 prefetch합니다. | ||
> - fetch 요청이 캐시되면 `refresh()`는 동일한 결과를 다시 생성할 수 있습니다.`cookies`와 `headers` 같은 다른 동적 함수들도 response를 변경할 수 있습니다. | ||
> | ||
> **`pages` 폴더에서 이전하기:** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
> - `push()`와 `replace()` 메소드는 새로운 경로가 prefetch되었으며 [동적 segments](/docs/app/building-your-application/routing/dynamic-routes)를 포함하지 않거나 현재 경로와 동적 매개변수를 가진 경우 [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 수행합니다. | |
> - `next/link`는 경로가 viewport에 표시되면서 자동으로 경로를 prefetch합니다. | |
> - fetch 요청이 캐시되면 `refresh()`는 동일한 결과를 다시 생성할 수 있습니다.`cookies`와 `headers` 같은 다른 동적 함수들도 response를 변경할 수 있습니다. | |
> | |
> **`pages` 폴더에서 이전하기:** | |
> - `push()`와 `replace()` 메소드는 새로운 경로가 prefetch되었으며 [동적 segments](/docs/app/building-your-application/routing/dynamic-routes)를 포함하지 않거나 현재 경로와 동일한 동적 매개변수를 가진 경우 [soft navigation](/docs/app/building-your-application/routing/linking-and-navigating#soft-navigation)을 수행합니다. | |
> - `next/link`는 경로가 viewport에 표시될 때 자동으로 경로를 prefetch합니다. | |
> - fetch 요청이 캐시되면 `refresh()`는 동일한 결과를 다시 생성할 수 있습니다.`cookies`와 `headers` 같은 다른 동적 함수들도 response를 변경할 수 있습니다. | |
> | |
> **`pages` 디렉토리에서 이전하기:** |
// ... | ||
}, [pathname, searchParams]) | ||
|
||
return null | ||
} | ||
``` | ||
|
||
Which can be imported into a layout. | ||
레이아웃에서 import될 수 있습니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
레이아웃에서 import될 수 있습니다. | |
레이아웃으로 import할 수 있습니다. |
@@ -111,8 +111,8 @@ export default function Layout({ children }) { | |||
} | |||
``` | |||
|
|||
> **Good to know**: `<NavigationEvents>` is wrapped in a [`Suspense` boundary](/docs/app/building-your-application/routing/loading-ui-and-streaming#example) because[`useSearchParams()`](/docs/app/api-reference/functions/use-search-params) causes client-side rendering up to the closest `Suspense` boundary during [static rendering](/docs/app/building-your-application/rendering/static-and-dynamic-rendering#static-rendering-default). [Learn more](/docs/app/api-reference/functions/use-search-params#behavior). | |||
> **참고**: [`useSearchParams()`](/docs/app/api-reference/functions/use-search-params)는 [정적 렌더링](/docs/app/building-your-application/rendering/static-and-dynamic-rendering#static-rendering-default)중 클라이언트 사이드 렌더링을 [`Suspense` 바운더리](/docs/app/building-your-application/routing/loading-ui-and-streaming#example)까지 발생시키기 때문에 `<NavigationEvents>`는 `Suspense` 바운더리로 감싸집니다. [더 배우기](/docs/app/api-reference/functions/use-search-params#behavior) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
> **참고**: [`useSearchParams()`](/docs/app/api-reference/functions/use-search-params)는 [정적 렌더링](/docs/app/building-your-application/rendering/static-and-dynamic-rendering#static-rendering-default)중 클라이언트 사이드 렌더링을 [`Suspense` 바운더리](/docs/app/building-your-application/routing/loading-ui-and-streaming#example)까지 발생시키기 때문에 `<NavigationEvents>`는 `Suspense` 바운더리로 감싸집니다. [더 배우기](/docs/app/api-reference/functions/use-search-params#behavior) | |
> **참고**: [`useSearchParams()`](/docs/app/api-reference/functions/use-search-params)는 가장 가까운 [`Suspense` 바운더리](/docs/app/building-your-application/routing/loading-ui-and-streaming#example)까지 [정적 렌더링](/docs/app/building-your-application/rendering/static-and-dynamic-rendering#static-rendering-default)을 하는 중에 클라이언트 사이드 렌더링을 발생시키기 때문에 `<NavigationEvents>`는 `Suspense` 바운더리로 감쌉니다. [더 배우기](/docs/app/api-reference/functions/use-search-params#behavior) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
learn more
를 더 배우기
로 직역하기는 했으나, 한글 문서에서는 더 보기
혹은 더 알아보기
로 사용하고는 하는데 어떻게 생각하시는지 해당 문서에서는 어떻게 통일하고있는지 의견을 여쭤보고 싶습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
~는 ~을 ~하다.
의 순서로 해석하는 것이 자연스러울 것이라고 생각하는데 이에 대해 의견을 여쭤보고 싶습니다.learn more
를 더 배우기로 직역하기는 했으나, 한글 문서에서는 더 보기 혹은 더 알아보기로 사용하고는 하는데 어떻게 생각하시는지 해당 문서에서는 어떻게 통일하고있는지 의견을 여쭤보고 싶습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1번 의견이 정확히 어떤 건지 이해가 잘 되지 않는데 혹시 조금 더 자세하게 말씀해주실 수 있나요?
2번은 "더 알아보기"가 좋을 것 같습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
useSearchParams()
는 정적 렌더링을 하는 중에 가장 가까운Suspense
바운더리까지 클라이언트 사이드 렌더링을 발생시키기 때문에<NavigationEvents>
는Suspense
바운더리로 감쌉니다.
다시보니 질문을 잘못남겼군요! 위처럼 ~에
와 ~까지
의 순서를 바꾸면 훨씬 자연스러울 것 같습니다.
| Version | Changes | | ||
| --------- | --------------------------------------------------- | | ||
| `v13.0.0` | `useRouter`가 `next/navigation`에서 소개되었습니다. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Version | Changes | | |
| --------- | --------------------------------------------------- | | |
| `v13.0.0` | `useRouter`가 `next/navigation`에서 소개되었습니다. | | |
| Version | Changes | | |
| --------- | --------------------------------------------------- | | |
| `v13.0.0` | `next/navigation`의 `useRouter`가 추가됨. | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chaejunlee 리뷰 반영하였으며, 논의가 필요하거나 의견을 여쭙고 싶은 부분 리뷰 남겼습니다 :)
@@ -111,8 +111,8 @@ export default function Layout({ children }) { | |||
} | |||
``` | |||
|
|||
> **Good to know**: `<NavigationEvents>` is wrapped in a [`Suspense` boundary](/docs/app/building-your-application/routing/loading-ui-and-streaming#example) because[`useSearchParams()`](/docs/app/api-reference/functions/use-search-params) causes client-side rendering up to the closest `Suspense` boundary during [static rendering](/docs/app/building-your-application/rendering/static-and-dynamic-rendering#static-rendering-default). [Learn more](/docs/app/api-reference/functions/use-search-params#behavior). | |||
> **참고**: [`useSearchParams()`](/docs/app/api-reference/functions/use-search-params)는 [정적 렌더링](/docs/app/building-your-application/rendering/static-and-dynamic-rendering#static-rendering-default)중 클라이언트 사이드 렌더링을 [`Suspense` 바운더리](/docs/app/building-your-application/routing/loading-ui-and-streaming#example)까지 발생시키기 때문에 `<NavigationEvents>`는 `Suspense` 바운더리로 감싸집니다. [더 배우기](/docs/app/api-reference/functions/use-search-params#behavior) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
~는 ~을 ~하다.
의 순서로 해석하는 것이 자연스러울 것이라고 생각하는데 이에 대해 의견을 여쭤보고 싶습니다.learn more
를 더 배우기로 직역하기는 했으나, 한글 문서에서는 더 보기 혹은 더 알아보기로 사용하고는 하는데 어떻게 생각하시는지 해당 문서에서는 어떻게 통일하고있는지 의견을 여쭤보고 싶습니다
> - 새로운 `useRouter` 훅은 `next/router`가 아니라 `next/navigation`에서 import되어야 합니다. | ||
> - `pathname` 문자열은 삭제되었으며 [`usePathname()`](/docs/app/api-reference/functions/use-pathname)로 대체되었습니다. | ||
> - `query` 객체는 삭제되었으며 [`useSearchParams()`](/docs/app/api-reference/functions/use-search-params)로 대체되었습니다. | ||
> - `router.events`는 현재 지원하지 않습니다. [참조하기](#router-이벤트) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[See below]
를 [참조하기]
로 의역하였으나 문서 전체의 통일성을 헤치지 않는지 여쭙고 싶습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 문제 없을 것 같습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! 수고 많으셨습니다 :) 👍
추가로 할당 희망하시는 티켓은 이슈에 작성해주셔도 됩니다 !!
기여자용
문서 개선
pnpm prettier-fix
를 실행하여 서식 문제를 해결합니다. - 문서 기여 가이드를 읽고 문서 지침을 따르는지 확인하세요: https://github.com/Nextjs-kr/Nextjs.ko/blob/main/packages/next/README.mdProgress
pnpm prettier-fix