-
Notifications
You must be signed in to change notification settings - Fork 1
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] Time-block 리스트 조회 #211
Conversation
efc48aa
to
34f3433
Compare
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.
고생하셨듭니다! 레전드 개발~자
// tasks 데이터 처리 | ||
timeBlockData.tasks.forEach((task) => { | ||
task.timeBlocks.forEach((timeBlock) => { | ||
events.push({ | ||
title: task.name, | ||
start: timeBlock.startTime, | ||
end: timeBlock.endTime, | ||
classNames: 'tasks', | ||
}); | ||
}); | ||
}); |
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.
ㅇㅈ
669bc10
to
1ff34ea
Compare
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.
풀캘린더 라이브러리 이벤트 형식에 맞추기 위해서 데이터를 가공하는 과정이 필요했는데 그 부분을 잘 해주셔서 캘린더 연동이 잘 된 것 같습니다! 해당 부분 구현하시느라 고생 많으셨습니다!!
작업 내용 🧑💻
알게된 점 🚀
리뷰 요구사항 💬
관련 이슈
close #193
스크린샷 (선택)