feat(chat-original): ChatTabView 작품별 탭 및 리스트 UI/API 연동 추가

This commit is contained in:
Yu Sung
2025-09-15 22:42:36 +09:00
parent ed3f3f796a
commit 6a7a407a09
7 changed files with 375 additions and 1 deletions

View File

@@ -0,0 +1,116 @@
//
// OriginalWorkViewModel.swift
// SodaLive
//
// Created by klaus on 9/15/25.
//
import Foundation
import Combine
import Moya
final class OriginalWorkViewModel: ObservableObject {
// MARK: - Outputs
@Published private(set) var totalCount: Int = 0
@Published private(set) var items = [OriginalWorkListItemResponse]()
@Published var isLoading: Bool = false
@Published var isLoadingMore: Bool = false
@Published var errorMessage: String = ""
@Published var isShowPopup: Bool = false
// MARK: - Private
private let repository = OriginalWorkRepository()
private var subscription = Set<AnyCancellable>()
private var currentPage: Int = 0
private var hasMorePages: Bool = true
// MARK: - API
func fetch() {
//
currentPage = 0
hasMorePages = true
items.removeAll()
request(page: currentPage)
}
func loadMoreIfNeeded(currentIndex: Int) {
guard hasMorePages,
!isLoading,
!isLoadingMore,
currentIndex >= items.count - 1 else { return }
loadMore()
}
// MARK: - Private
private func loadMore() {
guard hasMorePages, !isLoadingMore else { return }
isLoadingMore = true
currentPage += 1
request(page: currentPage, isLoadMore: true)
}
private func request(page: Int, isLoadMore: Bool = false) {
if !isLoadMore {
isLoading = true
}
repository.getOriginalWorks(page: page)
.receive(on: DispatchQueue.main)
.sink { [weak self] completion in
switch completion {
case .finished:
DEBUG_LOG("finish")
case .failure(let error):
ERROR_LOG(error.localizedDescription)
if isLoadMore {
self?.isLoadingMore = false
} else {
self?.isLoading = false
}
self?.errorMessage = "다시 시도해 주세요.\n계속 같은 문제가 발생할 경우 고객센터로 문의 주시기 바랍니다."
self?.isShowPopup = true
}
} receiveValue: { [weak self] response in
guard let self = self else { return }
do {
let jsonDecoder = JSONDecoder()
let decoded = try jsonDecoder.decode(ApiResponse<OriginalWorkListResponse>.self, from: response.data)
if let data = decoded.data, decoded.success {
self.totalCount = data.totalCount
if isLoadMore {
self.items.append(contentsOf: data.content)
self.isLoadingMore = false
} else {
self.items = data.content
self.isLoading = false
}
// hasMore ( )
if self.items.count >= self.totalCount || data.content.isEmpty {
self.hasMorePages = false
}
} else {
if let message = decoded.message {
self.errorMessage = message
} else {
self.errorMessage = "다시 시도해 주세요.\n계속 같은 문제가 발생할 경우 고객센터로 문의 주시기 바랍니다."
}
self.isShowPopup = true
if isLoadMore {
self.isLoadingMore = false
} else {
self.isLoading = false
}
}
} catch {
if isLoadMore {
self.isLoadingMore = false
} else {
self.isLoading = false
}
self.errorMessage = "다시 시도해 주세요.\n계속 같은 문제가 발생할 경우 고객센터로 문의 주시기 바랍니다."
self.isShowPopup = true
}
}
.store(in: &subscription)
}
}