-
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
chore: 지도에서 재생 넘어갔을 때의 삭제 #328
Conversation
var selectedTag: String? | ||
|
||
private var isFetchReqeust: Bool = false | ||
|
||
private var currentPage: Int = 1 | ||
|
||
private var playbackVideoInfos: [Models.PlaybackInfo] = [] | ||
|
||
// MARK: - UseCase Load Video List | ||
|
||
func displayVideoList() -> Task<Bool, Never> { |
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.
지웅님 이거 제가 광현님 답변 공유드린것처럼 Task 리턴이 아니라 메서드 자체를 async로 선언하시고 사용하는 뷰컨쪽에서 Task로 감싸서 사용하도록 변경해주세요~!
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.
넵 안그래도 테스트 수정 하면서 하려구요~~~ delete는 해놨는데 다른 부분은 아직 못했어요 ㅜ
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.
고생하셨습니다. 코멘트 드린 부분은 나중에 테스트 작성하시면서 변경하시는 거 추천드려요 ㅋㅋ
지웅님 이건 별건 아니구 addPeriodicTimer에 1초로 되어있는거 더 작게 수정해주실 수 있나요? 1초도 괜찮긴 한데 유튜브 같은거 보면 재생바가 1초보다 더 작게 움직이더라구요 ㅎㅎ 한 0.2?0.3? 초로 가능하실까용 |
@@ -294,8 +365,7 @@ final class PlaybackInteractor: PlaybackBusinessLogic, PlaybackDataStore { | |||
isFetchReqeust = true | |||
var page: Int = 0 | |||
if parentView != .home { | |||
guard let posts else { return false } | |||
page = posts.count / 15 + 1 | |||
page = playbackVideoInfos.count / 15 + 1 |
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.
요 15 매직넘버 페이지네이션할때 오는 Post 개수인거죠 ?? PlaybackModel에 따로 상수로 빼면 좋을 것 같아요!!
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.
고생하셨습니다 👍
🧑🚀 PR 요약
원래 지도에서 재생 넘어갔을 때 동영상을 삭제하면 무한스크롤을 위해 만들어둔 더미 셀에 영향을 줘 해당 부분 영향 안 가게 수정했습니다.
📌 변경 사항
재생화면에서 지도 화면 넘어갔을 때 삭제한거 반영안되길래 fetchPosts추가 해놨습니다. 원복해야 하면 말씀해주세요.
Linked Issue
close #325