yattee/Model/CommentsModel.swift

120 lines
2.9 KiB
Swift
Raw Normal View History

2021-12-04 19:35:41 +00:00
import Defaults
import Foundation
import SwiftyJSON
final class CommentsModel: ObservableObject {
@Published var all = [Comment]()
@Published var nextPage: String?
@Published var firstPage = true
2021-12-17 19:46:49 +00:00
@Published var loaded = false
@Published var disabled = false
@Published var replies = [Comment]()
@Published var repliesPageID: String?
@Published var repliesLoaded = false
2021-12-04 19:35:41 +00:00
var player: PlayerModel!
2021-12-17 19:46:49 +00:00
static var instance: Instance? {
InstancesModel.find(Defaults[.commentsInstanceID])
}
var api: VideosAPI? {
2021-12-17 19:46:49 +00:00
Self.instance.isNil ? nil : PipedAPI(account: Self.instance!.anonymousAccount)
}
2021-12-04 19:35:41 +00:00
static var enabled: Bool {
2021-12-17 19:46:49 +00:00
!instance.isNil
2021-12-04 19:35:41 +00:00
}
#if !os(tvOS)
static var placement: CommentsPlacement {
Defaults[.commentsPlacement]
}
#endif
2021-12-04 19:35:41 +00:00
var nextPageAvailable: Bool {
!(nextPage?.isEmpty ?? true)
}
func load(page: String? = nil) {
2022-01-05 16:12:32 +00:00
guard Self.enabled else {
2021-12-04 19:35:41 +00:00
return
}
2021-12-17 19:46:49 +00:00
guard !Self.instance.isNil,
!(player?.currentVideo.isNil ?? true)
2021-12-04 19:35:41 +00:00
else {
return
}
2022-01-05 16:12:32 +00:00
if !firstPage && !nextPageAvailable {
return
}
2021-12-04 19:35:41 +00:00
firstPage = page.isNil || page!.isEmpty
api?.comments(player.currentVideo!.videoID, page: page)?
2021-12-04 19:35:41 +00:00
.load()
.onSuccess { [weak self] response in
if let page: CommentsPage = response.typedContent() {
2022-01-05 16:12:32 +00:00
self?.all += page.comments
2021-12-04 19:35:41 +00:00
self?.nextPage = page.nextPage
self?.disabled = page.disabled
2021-12-04 19:35:41 +00:00
}
}
.onCompletion { [weak self] _ in
self?.loaded = true
}
}
2022-01-05 16:12:32 +00:00
func loadNextPageIfNeeded(current comment: Comment) {
let thresholdIndex = all.index(all.endIndex, offsetBy: -5)
if all.firstIndex(where: { $0 == comment }) == thresholdIndex {
loadNextPage()
}
}
2021-12-04 19:35:41 +00:00
func loadNextPage() {
load(page: nextPage)
}
func loadReplies(page: String) {
guard !player.currentVideo.isNil else {
return
}
if page == repliesPageID {
return
}
2021-12-04 19:35:41 +00:00
replies = []
repliesPageID = page
repliesLoaded = false
2021-12-04 19:35:41 +00:00
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-17 19:46:49 +00:00
self?.repliesLoaded = true
}
}
2021-12-17 19:46:49 +00:00
.onFailure { [weak self] _ in
self?.repliesLoaded = true
2021-12-04 19:35:41 +00:00
}
}
func reset() {
2021-12-04 19:35:41 +00:00
all = []
disabled = false
2021-12-04 19:35:41 +00:00
firstPage = true
nextPage = nil
loaded = false
replies = []
repliesLoaded = false
2021-12-04 19:35:41 +00:00
}
}