-
Notifications
You must be signed in to change notification settings - Fork 2
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
REV-74/리뷰 리스트 컴포넌트 구현 #14
The head ref may contain hidden characters: "REV-74/\uB9AC\uBDF0-\uB9AC\uC2A4\uD2B8-\uCEF4\uD3EC\uB10C\uD2B8-\uAD6C\uD604"
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.
엄청 고생하셨슴니다!! 👍 👍
@@ -0,0 +1,23 @@ | |||
export interface InvitedReview { | |||
id: number |
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.
혹시..Reivew라는 공통된 타입을 뽑고 뽑은 타입을 상속받는 것은 어떨까요.?!
뭔가 코드의 중복을 피할 수 있을 것 같아서요..!
interface CommonReview {
id: number
title: string
deadline_status: '진행중' | '마감' | '종료'
survey_type: string
created_at: string
}
export interface InvitedReview extends CommonReview {
is_completed: boolean
}
export interface CreatedReview extends CommonReview {
responser_count: number
}
export interface ReceivedReview {
id: number
title: string
created_at: string
}
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.
처음에 이렇게 작성했는데 이러니까 읽는 사람 입장에서 더 보기 힘들더라구요 CreatedReview
보려면 CommonReview
부터 봐야하는 번거로움 ..? 그래서 시원하게 다 적었습니다 !
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.
고생하셨습니다 효리님!
코드 깔끔해서 너무 잘읽혀요!
프로퍼티 명 통일은 저도 생각했습니다! 너무 자세히 분류되어있어서 공통 컴포넌트를 여러 곳에 적용할때 어려움이 있을 것 같다고 생각되더라고요.
벡엔드 분들께 통일시켜 달라고 하기 보다는 그냥 저희가 데이터를 받아와서 정제하는 과정을 거치는 것이 낫겠죠?....
export interface InvitedReview { | ||
id: number | ||
title: string | ||
deadline_status: '진행중' | '마감' | '종료' |
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.
효리님! 저희 InvitedReview에서 상태는 '답변 전', '답변 완료' 두 가지 아닌가요??
📑 구현 내용
리뷰 리스트 컴포넌트 구현했습니다.
(리뷰 아이템 컴포넌트가 없어서 예시 스크린샷은 없습니다!)
🚧 참고 사항
타입 관련
id
로 통일해놓았습니다. 추후에 api 연결하면 프로퍼티명을 정제하는 과정을 거치면 좋을 것 같습니다!id
로 통일해야 하는 이유: 아래 코드에서 설명드리겠습니다.id
라는 프로퍼티 값을 넣어주기 위해 정제 과정이 필요합니다!사용 방법
InvitedReviewItem
과 같은 컴포넌트를 구현할 때, props으로reviews
만 받고 적용해주면 됩니다.