Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 제네릭
- javascript
- React Native
- Chart.js
- returnType
- JS console
- 커스텀
- 개발콘텐츠
- 공통컴포넌트
- typescript
- 레이아웃쪼개기
- utilty type
- NonNullable
- 반복줄이기
- 폰트적용하기
- click and drag
- CSS
- 2022
- 리액트
- 누구나 자료구조와 알고리즘
- vue.js
- const 단언문
- 티스토리꾸미기
- 타입스크립트
- react
- TSDoc
- reactjs
- 성능최적화
- 타입좁히기
- React.js
Archives
- Today
- Total
몽땅뚝딱 개발자
[Typescript/에러일지] TS2561: Object literal may only specify known properties 본문
에러일지/Typescript
[Typescript/에러일지] TS2561: Object literal may only specify known properties
레오나르도 다빈츠 2024. 1. 11. 15:36
Ant Design에서 <Dropdown>, <Menu>를 같이 적용하려는데 생긴 이슈...
인터페이스를 까봐도 잘 읽혀지지 않아서 타입스크립트 공부가 필요하다고 생각했다.
우선 데이터를 이렇게 선언했고
type MenuItem = Required<MenuProps>['items'][number]
function getItem(label: React.ReactNode, key: React.Key, children?: MenuItem[]): MenuItem {
return {
label,
key,
children,
} as MenuItem
}
// Sider 메뉴
const items: MenuItem[] = [
getItem('A', 'A', [
getItem(<Link href="/a">a 메뉴</Link>, 'key-a'),
getItem(<Link href="/b">b 메뉴</Link>, 'key-b'),
]),
getItem('B', 'B', [getItem(<Link href="/c">테스트</Link>, 'key-c')]),
]
// Dropdown 메뉴
const menuItems: MenuItem[] = [getItem('로그아웃', 'logout')]
이렇게 각각 할당하려고했으나 Dropdown에서 문제가 생겼다.
<Dropdown menu={{ munuItems }}>
<Button>버튼명</Button>
</Dropdown>
<Layout.Sider collapsible>
<Menu items={items} />
</Layout.Sider>
여기서 인터페이스를 까보면 DropdownProps의 menu는 MenuProps이다.
export interface DropdownProps {
...
menu?: MenuProps;
}
export interface MenuProps extends Omit<RcMenuProps, 'items'> {
...
items?: ItemType[];
}
내 선언부를 보면 MenuProps의 items로 타입을 지정해놨기 때문에 Dropdown은 { items: 데이터 } 형식으로 작성해야하는 것 같다.
type MenuItem = Required<MenuProps>['items'][number]
이렇게 지정해주면 해결된다
// as-is
<Dropdown menu={{ munuItems }}>
<Button>버튼명</Button>
</Dropdown>
// to-be
<Dropdown menu={{ items: munuItems }}>
<Button>버튼명</Button>
</Dropdown>
출처
Comments