투표 삭제, 투표 즉시 종료 API 연결 완료
func deletePost(postId: Int) {
appLoginState.serviceRoot.apimanager
.request(.postService(.deletePost(postId: postId)),
decodingType: NoData.self)
.sink { completion in
switch completion {
case .finished:
break
case .failure(let error):
print("error: \(error)")
}
} receiveValue: { _ in
// self.appLoginState.appData.postManager.deleteReviews(postId: postId)
// self.appLoginState.appData.postManager.removeCount += 1
NotificationCenter.default.post(name: NSNotification.voteStateUpdated, object: nil)
}
.store(in: &cancellables)
}
func closePost(postId: Int, index: (Int?, Int?)) {
appLoginState.serviceRoot.apimanager
.request(.postService(.closeVote(postId: postId)),
decodingType: NoData.self)
.sink { completion in
switch completion {
case .finished:
break
case .failure(let error):
print("error: \(error)")
}
} receiveValue: { _ in
if let postIndex = index.0 {
self.appLoginState.appData.postManager.posts[postIndex].postStatus
= PostStatus.closed.rawValue
}
if let myPostIndex = index.1 {
self.appLoginState.appData.postManager.myPosts[myPostIndex].postStatus
= PostStatus.closed.rawValue
}
self.fetchPostDetail(postId: postId)
}
.store(in: &cancellables)
}
receiveValue
호출 시 알맞은 로직 수행 case .deleteVote:
voteUseCase.deleteVote(postId: postId)
.sink { _ in
} receiveValue: { [weak self] _ in
NotificationCenter.default.post(name: .voteDeleted, object: nil)
self?.isVoteManageSucceed.toggle()
}
.store(in: &cancellables)
case .closeVote:
voteUseCase.closeVote(postId: postId)
.sink { _ in
} receiveValue: { [weak self] _ in
NotificationCenter.default.post(name: .voteClosed, object: nil)
self?.send(action: .loadDetail)
}
.store(in: &cancellables)
}
NotificationCenter
을 통해 구현했다.View
.onDisappear {
NotificationCenter.default.removeObserver(NSNotification.voteStateUpdated)
NotificationCenter.default.removeObserver(NSNotification.userBlockStateUpdated)
}
.onReceive(NotificationCenter.default.publisher(for: NSNotification.voteStateUpdated)) { _ in
viewModel.fetchPosts(visibilityScope: visibilityScope)
}
.onReceive(NotificationCenter.default.publisher(for: NSNotification.userBlockStateUpdated)) { _ in
vie
onReceive
를 통해 받고, onDisappear
이 실행될 때, removeObserver
을 직접 수행ViewModel
private func bind() {
NotificationCenter.default.publisher(for: .voteDeleted)
.receive(on: DispatchQueue.main)
.sink { [weak self] _ in
guard let self = self else { return }
self.votes.remove(at: self.currentVote)
}
.store(in: &cancellables)
NotificationCenter.default.publisher(for: .voteClosed)
.receive(on: DispatchQueue.main)
.sink { [weak self] _ in
guard let self = self else { return }
self.votes[self.currentVote].postStatus = "CLOSED"
}
.store(in: &cancellables)
}
viewModel
의 bind()
함수Publisher
로 전환하였다.sink
시 목록에서 제거 및 종료 UI로 업뎃되도록 했다.store
하여 removeObserver
을 수행하지 않아도 메모리가 정리될 수 있도록 한다.removeObserver
하는 것을 매번 까먹었었는데, Combine으로 전환하여 사용하니 직접 remove해 주지 않아도 돼서 매우 만족.
또한, View와 ViewModel의 역할을 좀 더 명확하게 분리할 수 있는 것 같음.