-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: with-nextjs page translated into Korean (#745)
- Loading branch information
Showing
1 changed file
with
117 additions
and
0 deletions.
There are no files selected for viewing
117 changes: 117 additions & 0 deletions
117
i18n/kr/docusaurus-plugin-content-docs/current/guides/tech/with-nextjs.mdx
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,117 @@ | ||
--- | ||
sidebar_position: 10 | ||
--- | ||
# NextJS์ ํจ๊ป ์ฌ์ฉํ๊ธฐ | ||
|
||
NextJS์์๋ FSD(Feature-Sliced Design) ์ํคํ ์ฒ๋ฅผ ๊ตฌํํ ์ ์์ง๋ง, ๋ ๊ฐ์ง ์ ์์ NextJS์ ํ๋ก์ ํธ ๊ตฌ์กฐ ์๊ตฌ์ฌํญ๊ณผ FSD ๊ตฌ์กฐ ๊ฐ์ ์ถฉ๋์ด ๋ฐ์ํฉ๋๋ค: | ||
|
||
- `pages` ํด๋์์ ๋ผ์ฐํ ๋ฐฉ์ ์ฐจ์ด | ||
- NextJS์์ `app` ํด๋์ ์ถฉ๋ ๋ฌธ์ ๋๋ ๋ถ์ฌ | ||
|
||
## FSD์ NextJS์ `ํ์ด์ง` ๋ ์ด์ด ๊ฐ ์ถฉ๋ {#pages-conflict} | ||
|
||
NextJS๋ ์ ํ๋ฆฌ์ผ์ด์ ๋ผ์ฐํธ๋ฅผ ์ ์ํ๊ธฐ ์ํด `pages` ํด๋๋ฅผ ์ฌ์ฉํ๋ฉฐ, `pages` ํด๋ ๋ด์ ํ์ผ์ด URL๊ณผ ๋งคํ๋๋๋ก ์ค์ ํฉ๋๋ค. | ||
ํ์ง๋ง ์ด ๋ฐฉ์์ FSD(Folder Slice Design) `๊ฐ๋ ์ ๋ง์ง๋ ์์ต๋๋ค`. ํนํ, NextJS์ ๋ผ์ฐํ ๋ฐฉ์์ผ๋ก๋ FSD์ ์ฌ๋ผ์ด์ค ๊ตฌ์กฐ๋ฅผ ํํํ๊ฒ ์ ์งํ๊ธฐ ์ด๋ ค์ด ์ ์ด ์์ต๋๋ค. | ||
|
||
### NextJS์ `pages` ํด๋๋ฅผ ํ๋ก์ ํธ ๋ฃจํธ ํด๋๋ก ์ด๋ํ๊ธฐ (๊ถ์ฅ) | ||
|
||
ํ๋ก์ ํธ ๋ฃจํธ์ `pages` ํด๋๋ฅผ ๋ฐฐ์นํ๊ณ , FSD ๊ตฌ์กฐ์ ๋ง์ถ ํ์ด์ง๋ค์ NextJS์ `pages` ํด๋๋ก ์ฎ๊น๋๋ค. | ||
์ด๋ ๊ฒ ํ๋ฉด `src` ํด๋ ๋ด์์ FSD ๊ตฌ์กฐ๋ฅผ ์ ์งํ ์ ์์ต๋๋ค. | ||
|
||
```sh | ||
โโโ pages # NextJS ํ์ด์ง ํด๋ | ||
โโโ src | ||
โ โโโ app | ||
โ โโโ entities | ||
โ โโโ features | ||
โ โโโ pages # FSD ํ์ด์ง ํด๋ | ||
โ โโโ shared | ||
โ โโโ widgets | ||
``` | ||
|
||
### FSD ๊ตฌ์กฐ ๋ด `pages` ํด๋ ์ด๋ฆ ๋ณ๊ฒฝํ๊ธฐ | ||
|
||
๋ค๋ฅธ ๋ฐฉ๋ฒ์ผ๋ก๋ FSD ๊ตฌ์กฐ ๋ด์์ `pages` ํด๋์ ์ด๋ฆ์ ๋ณ๊ฒฝํ์ฌ NextJS์ `pages` ํด๋์ ์ถฉ๋์ ํผํ ์๋ ์์ต๋๋ค. | ||
์๋ฅผ ๋ค์ด, `pages` ํด๋๋ฅผ `views`๋ก ์ด๋ฆ์ ๋ณ๊ฒฝํ๋ฉด `src` ํด๋ ๋ด์ FSD ๊ตฌ์กฐ๋ฅผ ์ ์งํ๋ฉด์๋ NextJS์ ์๊ตฌ ์ฌํญ๊ณผ ์ถฉ๋ํ์ง ์๊ฒ ๋ฉ๋๋ค. | ||
|
||
```sh | ||
โโโ app | ||
โโโ entities | ||
โโโ features | ||
โโโ pages # NextJS ํ์ด์ง ํด๋ | ||
โโโ views # ์ด๋ฆ์ด ๋ณ๊ฒฝ๋ FSD ํ์ด์ง ํด๋ | ||
โโโ shared | ||
โโโ widgets | ||
``` | ||
|
||
์ด๋ฆ์ ๋ณ๊ฒฝํ๋ ๊ฒฝ์ฐ, ์ด๋ฅผ ํ๋ก์ ํธ์ README๋ ๋ด๋ถ ๋ฌธ์์ ๋ช ํํ ๊ธฐ๋กํ์ฌ ๋ณ๊ฒฝ ์ฌํญ์ด ์ ์ ๋ฌ๋๋๋ก ํ๋ ๊ฒ์ด ์ข์ต๋๋ค. ์ด๋ฌํ ๋ณ๊ฒฝ์ ["ํ๋ก์ ํธ ์ง์"][project-knowledge]์ ์ผ๋ถ๋ก ๋ฌธ์ํํ๋ ๊ฒ์ด ์ค์ํฉ๋๋ค. | ||
|
||
## NextJS์์ `app` ํด๋ ๋ถ์ฌ ๋ฌธ์ {#app-absence} | ||
|
||
NextJS 13๋ฒ์ ์ดํ์์๋ ๋ช ์์ ์ธ `app` ํด๋๊ฐ ์์ผ๋ฉฐ, | ||
๋์ `_app.tsx` ํ์ผ์ด ๋ชจ๋ ํ์ด์ง๋ฅผ ๊ฐ์ธ๋ ์ปดํฌ๋ํธ ์ญํ ์ ํฉ๋๋ค. | ||
|
||
### `pages/_app.tsx` ํ์ผ์ app ๊ธฐ๋ฅ ๊ฐ์ ธ์ค๊ธฐ | ||
|
||
NextJS ๊ตฌ์กฐ์์ `app` ํด๋๊ฐ ์๋ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ๋ ค๋ฉด, `app` ํด๋ ๋ด์ `App` ์ปดํฌ๋ํธ๋ฅผ ์์ฑํ๊ณ , ์ด๋ฅผ `pages/_app.tsx`์ ๊ฐ์ ธ์ NextJS๊ฐ ์ฌ์ฉํ ์ ์๋๋ก ์ค์ ํ๋ฉด ๋ฉ๋๋ค. ์๋ฅผ ๋ค์ด: | ||
|
||
```tsx | ||
// app/providers/index.tsx | ||
|
||
const App = ({ Component, pageProps }: AppProps) => { | ||
return ( | ||
<Provider1> | ||
<Provider2> | ||
<BaseLayout> | ||
<Component {...pageProps} /> | ||
</BaseLayout> | ||
</Provider2> | ||
</Provider1> | ||
); | ||
}; | ||
|
||
export default App; | ||
``` | ||
|
||
๊ทธ ๋ค์ `pages/_app.tsx` ํ์ผ์์ `App` ์ปดํฌ๋ํธ์ ํ๋ก์ ํธ ์ ์ญ ์คํ์ผ์ ๋ค์๊ณผ ๊ฐ์ด ๊ฐ์ ธ์ฌ ์ ์์ต๋๋ค: | ||
|
||
```tsx | ||
// pages/_app.tsx | ||
|
||
import 'app/styles/index.scss' | ||
|
||
export { default } from 'app/providers'; | ||
``` | ||
|
||
## App Router ์ฌ์ฉํ๊ธฐ {#app-router} | ||
|
||
NextJS 13.4 ๋ฒ์ ์์๋ App Router๊ฐ ์์ ํ๋์์ต๋๋ค. App Router๋ฅผ ์ฌ์ฉํ๋ฉด `pages` ํด๋ ๋์ `app` ํด๋๋ฅผ ํตํด ๋ผ์ฐํ ์ ์ฒ๋ฆฌํ ์ ์์ต๋๋ค. | ||
FSD ์์น์ ์ค์ํ๊ธฐ ์ํด, NextJS์ `app` ํด๋๋ `pages` ํด๋์์ ์ถฉ๋ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ ๊ฒ๊ณผ ๋์ผํ ๋ฐฉ์์ผ๋ก ๋ค๋ฃจ์ด์ผ ํฉ๋๋ค. | ||
|
||
์ด๋ฅผ ์ํด NextJS์ `app` ํด๋๋ฅผ ํ๋ก์ ํธ ๋ฃจํธ๋ก ์ด๋ํ๊ณ , FSD ํ์ด์ง๋ค์ `app` ํด๋๋ก ์ฎ๊ธฐ๋ ๋ฐฉ์์ ์ฌ์ฉํฉ๋๋ค. | ||
์ด๋ ๊ฒ ํ๋ฉด `src` ํด๋ ๋ด์์ FSD ํ๋ก์ ํธ ๊ตฌ์กฐ๋ฅผ ์ ์งํ ์ ์์ต๋๋ค. | ||
๋ํ, App Router์ Pages Router๊ฐ ํธํ๋๋ฏ๋ก `pages` ํด๋๋ฅผ ํ๋ก์ ํธ ๋ฃจํธ์ ์ถ๊ฐํ๋ ๊ฒ์ด ํ์ํฉ๋๋ค. | ||
|
||
``` | ||
โโโ app # NextJS app ํด๋ | ||
โโโ pages # NextJS pages ํด๋ | ||
โ โโโ README.md # ํด๋น ํด๋์ ๋ชฉ์ ๊ณผ ์ญํ ์ ๋ํ ์ค๋ช | ||
โโโ src | ||
โ โโโ app # FSD app ํด๋ | ||
โ โโโ entities | ||
โ โโโ features | ||
โ โโโ pages # FSD pages ํด๋ | ||
โ โโโ shared | ||
โ โโโ widgets | ||
``` | ||
|
||
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)][ext-app-router-stackblitz] | ||
|
||
## ๊ด๋ จ ํญ๋ชฉ {#see-also} | ||
|
||
- [(์ค๋ ๋) NextJS์ pages ๋๋ ํ ๋ฆฌ์ ๋ํ ํ ๋ก ](https://t.me/feature_sliced/3623) | ||
|
||
[project-knowledge]: /docs/about/understanding/knowledge-types | ||
[ext-app-router-stackblitz]: https://stackblitz.com/edit/stackblitz-starters-aiez55?file=README.md | ||
|
||
|