일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- CORS
- CI/CD
- useAppDispatch
- app router
- 호이스팅
- RTK Query
- 인터섹션
- 이분 검색
- 반공변성
- 리터럴 타입
- tailwind
- recoil
- async/await
- Jest
- ESlint
- TS
- 결정 알고리즘
- autosize
- 태그된 유니온
- Promise
- 공변성
- map
- webpack
- 무한 스크롤
- Cypress
- dfs
- 투포인터
- React
- 타입 좁히기
- SSR
Archives
- Today
- Total
짧은코딩
useSelectedLayoutSegment, classnames 라이브러리 본문
반응형
useSelectedLayoutSegment
- useSelectedLayoutSegment는 ActiveLink를 만들 때 유용한 hooks이다.
- next에 내장되어 있는 기능이다.
-useSelectedLayoutSegment
import {useSelectedLayoutSegment} from "next/navigation";
export default function NavMenu() {
const segment = useSelectedLayoutSegment();
console.log(segment);
return <div></div>;
}
- 만약 "compose/tweet" 주소에 있으면, segment는 "compose"가 나온다.
- 즉, useSelectedLayoutSegment는 최상위 부모 경로만 나온다.
-useSelectedLayoutSegments
import {useSelectedLayoutSegments} from "next/navigation";
export default function NavMenu() {
const segment = useSelectedLayoutSegments();
console.log(segment);
return <div></div>;
}
- 만약 "compose/tweet" 주소에 있으면, segment는 ["compose", "tweet"]가 나온다.
- 즉, useSelectedLayoutSegments는 부모와 자식 경로까지 나온다.
classnames
https://www.npmjs.com/package/classnames
- classnames는 클래스를 합성할 수 있다.
-예시
"use client"
import style from './post.module.css';
import cx from 'classnames';
export default function ActionButtons() {
const commented = true;
const reposted = true;
const liked = false;
return (
<div className={style.actionButtons}>
<div className={cx(style.commentButton, { [style.commented]: commented })}>
</div>
<div className={cx(style.repostButton, reposted && style.reposted)}>
</div>
<div className={cx([style.heartButton, liked && style.liked])}>
</div>
</div>
)
}
- className에서 클래스들을 합성해서 조건에 맞게 스타일 적용을 할 수 있다.
- && 연산자, 객체, 배열 등으로 적용할 수 있으니 공식문서를 보면 좋다.
-출처
https://www.inflearn.com/course/next-react-query-sns%EC%84%9C%EB%B9%84%EC%8A%A4/dashboard
반응형
'인프런, 유데미 > z 클론 코딩' 카테고리의 다른 글
Next의 loading.tsx와 error.tsx with Suspense (0) | 2024.03.29 |
---|---|
useFormState와 useFormStatus (0) | 2024.03.27 |
패러렐 라우트와 인터셉터 라우트 (1) | 2024.03.14 |
app router의 폴더 구조 및 세팅 (0) | 2024.03.13 |
Comments