-
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
[FIX/#197] 에피소드 생성 기능 버그 수정 및 성능 개선 #221
Conversation
에피소드 생성 중 버튼 비활성화 및 스로틀링 처리 추가
2018d93
to
6d86b3c
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.
고생 많으셨습니다!!
.clickable( | ||
enabled = false, | ||
onClick = {}, | ||
) |
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.
false로 두지 않으면 클릭이 되나요??
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.
클릭이 되지만 onClick이 비어서 실제로 아무 동작을 하지는 않을 것 같습니다!
MapisodeTagInputField( | ||
tagList = uiState.episodeInfo.tags, | ||
onTagChange = { newTags -> tagValue = newTags }, | ||
) |
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.
태웅님이 구현하신거 그대로 쓴거긴 합니다 ㅎㅎ
private const val DATE_STRING_FORMAT = "yyyy. MM. dd" | ||
private fun dateString(date: Date): String = | ||
DateFormat.format(DATE_STRING_FORMAT, date).toString() | ||
|
||
@OptIn(ExperimentalLayoutApi::class) | ||
@Composable |
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.
고생하셨습니다. 자세한 코드리뷰는 머지되고 해볼게요!
📍 Work Description
📸 ScreenShots
버튼 높이 고정하여 일치
📢 To Reviewers
⏲️Time