-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feat/243 #345
Feat/243 #345
Conversation
- 응답 형식이 명시되어 있지 않아 상수와 타입은 임시로 지정됨 추후 수정 예정
- getContributedFundingHistory 에서 특정 상태만 조회하도록 하고있는데 전체 상태를 조회하도록 api 수정 예정 - getRegisteredFundingItem 에서 날짜를 통해 조회할 수 있도록 api 수정 예정
- 전체 상태의 펀딩내역을 조회할 수 있도록 api 수정 - status 타입 수정
- 시작날짜가 끝날짜보다 더 이전 날짜를 갖도록 수정
- 다른 코드 보다가 불필요해보여서 제거했습니다
- 변경된 api 요청에 맞도록 수정
- 기존 펀딩 아이템과 펀딩내역아이템의 파일을 분리함 - 백엔드에서 변경된 응답 타입을 반영함
- ContributedFundingItem 타입경로 수정 - 데이터가 페칭된 뒤 아이템을 보여주도록 로직 수정 - 의미없는 스타일 삭제
- 컴포넌트 이름과 충돌을 피하기 위해 타입임을 명시하는 Type을 붙여줌
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
export const formatDateAndTime = (dateTime: string) => { | ||
const [date, time] = dateTime.split('T'); | ||
|
||
const formattedDate = date.split('-').join('.'); |
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.
date.replaceAll('-', '.')
메소드를 사용하면 더 직관적일 것 같아용
<span className={styles.num_data}> | ||
{formatDateAndTime(contributedAt)} | ||
</span> |
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.
네! 원래는 이 부분에 등록한 날짜가 와야하는데 지금은 만료일만 받고 있어서 만료일로 테스트 했습니다. 테스트 한 만료일에는 날짜정보밖에 없어서 undefined
가 뜨는데 태환님께 시간정보 포함한 등록한 날짜 추가요청 드렸어요.
#️⃣연관된 이슈
close: #243 #244
📝작업 내용
RegistereFunding
), 등록한 펀딩 아이템 (RegistereFundingItem
)ContributedFunding
), 기여한 펀딩 아이템 (ContributedFundingItem
)🙏리뷰 요구사항(선택)