forked from zelo72/mastodon-ios
79 lines
2.2 KiB
Swift
79 lines
2.2 KiB
Swift
//
|
|
// ReportViewModel.swift
|
|
// Mastodon
|
|
//
|
|
// Created by ihugo on 2021/4/19.
|
|
//
|
|
|
|
import Combine
|
|
import CoreData
|
|
import CoreDataStack
|
|
import Foundation
|
|
import GameplayKit
|
|
import MastodonSDK
|
|
import OrderedCollections
|
|
import os.log
|
|
import UIKit
|
|
|
|
class ReportViewModel {
|
|
|
|
var disposeBag = Set<AnyCancellable>()
|
|
|
|
// input
|
|
let context: AppContext
|
|
let user: ManagedObjectRecord<MastodonUser>
|
|
let status: ManagedObjectRecord<Status>?
|
|
let statusFetchedResultsController: StatusFetchedResultsController
|
|
let listBatchFetchViewModel = ListBatchFetchViewModel()
|
|
|
|
@Published var selectStatuses = OrderedSet<ManagedObjectRecord<Status>>()
|
|
|
|
// output
|
|
var diffableDataSource: UITableViewDiffableDataSource<ReportSection, ReportItem>?
|
|
private(set) lazy var stateMachine: GKStateMachine = {
|
|
let stateMachine = GKStateMachine(states: [
|
|
State.Initial(viewModel: self),
|
|
State.Fail(viewModel: self),
|
|
State.Idle(viewModel: self),
|
|
State.Loading(viewModel: self),
|
|
State.NoMore(viewModel: self),
|
|
])
|
|
stateMachine.enter(State.Initial.self)
|
|
return stateMachine
|
|
}()
|
|
|
|
@Published var isNextButtonEnabled = false
|
|
|
|
init(
|
|
context: AppContext,
|
|
user: ManagedObjectRecord<MastodonUser>,
|
|
status: ManagedObjectRecord<Status>?
|
|
) {
|
|
self.context = context
|
|
self.user = user
|
|
self.status = status
|
|
self.statusFetchedResultsController = StatusFetchedResultsController(
|
|
managedObjectContext: context.managedObjectContext,
|
|
domain: nil,
|
|
additionalTweetPredicate: nil
|
|
)
|
|
// end init
|
|
|
|
if let status = status {
|
|
selectStatuses.append(status)
|
|
}
|
|
|
|
context.authenticationService.activeMastodonAuthenticationBox
|
|
.map { $0?.domain }
|
|
.assign(to: \.value, on: statusFetchedResultsController.domain)
|
|
.store(in: &disposeBag)
|
|
|
|
$selectStatuses
|
|
.map { statuses -> Bool in
|
|
return status == nil ? !statuses.isEmpty : statuses.count > 1
|
|
}
|
|
.assign(to: &$isNextButtonEnabled)
|
|
}
|
|
|
|
}
|