1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-13 22:00:31 +05:30
yattee/Model/CommentsModel.swift

101 lines
2.6 KiB
Swift
Raw Normal View History

2021-12-05 01:05:41 +05:30
import Defaults
import Foundation
import SwiftyJSON
final class CommentsModel: ObservableObject {
@Published var all = [Comment]()
@Published var nextPage: String?
@Published var firstPage = true
2021-12-18 01:16:49 +05:30
@Published var loaded = false
@Published var disabled = false
@Published var replies = [Comment]()
@Published var repliesPageID: String?
@Published var repliesLoaded = false
2021-12-05 01:05:41 +05:30
var player: PlayerModel!
2022-07-02 03:44:04 +05:30
var instance: Instance? {
player.accounts.current?.instance
}
2021-12-05 01:05:41 +05:30
var nextPageAvailable: Bool {
!(nextPage?.isEmpty ?? true)
}
func load(page: String? = nil) {
2022-07-02 03:44:04 +05:30
guard let video = player.currentVideo else { return }
2021-12-05 01:05:41 +05:30
2022-01-05 21:42:32 +05:30
if !firstPage && !nextPageAvailable {
return
}
2021-12-05 01:05:41 +05:30
firstPage = page.isNil || page!.isEmpty
2022-07-02 03:44:04 +05:30
player.accounts.api.comments(video.videoID, page: page)?
2021-12-05 01:05:41 +05:30
.load()
.onSuccess { [weak self] response in
if let page: CommentsPage = response.typedContent() {
2022-01-05 21:42:32 +05:30
self?.all += page.comments
2021-12-05 01:05:41 +05:30
self?.nextPage = page.nextPage
self?.disabled = page.disabled
2021-12-05 01:05:41 +05:30
}
}
2022-07-02 03:44:04 +05:30
.onFailure { [weak self] requestError in
self?.disabled = !requestError.json.dictionaryValue["error"].isNil
}
2021-12-05 01:05:41 +05:30
.onCompletion { [weak self] _ in
self?.loaded = true
}
}
2022-01-05 21:42:32 +05:30
func loadNextPageIfNeeded(current comment: Comment) {
let thresholdIndex = all.index(all.endIndex, offsetBy: -5)
if all.firstIndex(where: { $0 == comment }) == thresholdIndex {
loadNextPage()
}
}
2021-12-05 01:05:41 +05:30
func loadNextPage() {
load(page: nextPage)
}
func loadReplies(page: String) {
guard !player.currentVideo.isNil else {
return
}
if page == repliesPageID {
return
}
2021-12-05 01:05:41 +05:30
replies = []
repliesPageID = page
repliesLoaded = false
2021-12-05 01:05:41 +05:30
2022-07-02 03:44:04 +05:30
player.accounts.api.comments(player.currentVideo!.videoID, page: page)?
.load()
.onSuccess { [weak self] response in
if let page: CommentsPage = response.typedContent() {
self?.replies = page.comments
2021-12-18 01:16:49 +05:30
self?.repliesLoaded = true
}
}
2021-12-18 01:16:49 +05:30
.onFailure { [weak self] _ in
self?.repliesLoaded = true
2021-12-05 01:05:41 +05:30
}
}
func reset() {
2021-12-05 01:05:41 +05:30
all = []
disabled = false
2021-12-05 01:05:41 +05:30
firstPage = true
nextPage = nil
loaded = false
replies = []
repliesLoaded = false
2021-12-05 01:05:41 +05:30
}
}