mastodon-ios/Mastodon/Scene/Report/ReportSupplementary/ReportSupplementaryViewMode...

45 lines
1.0 KiB
Swift
Raw Normal View History

2022-02-08 05:36:06 +01:00
//
// ReportSupplementaryViewModel.swift
// Mastodon
//
// Created by MainasuK on 2022-2-7.
//
import UIKit
import Combine
import CoreDataStack
import MastodonSDK
class ReportSupplementaryViewModel {
weak var delegate: ReportSupplementaryViewControllerDelegate?
2022-02-08 05:36:06 +01:00
// Input
var context: AppContext
let user: ManagedObjectRecord<MastodonUser>
let commentContext = ReportItem.CommentContext()
@Published var isSkip = false
@Published var isBusy = false
2022-02-08 05:36:06 +01:00
// output
var diffableDataSource: UITableViewDiffableDataSource<ReportSection, ReportItem>?
@Published var isNextButtonEnabled = false
init(
context: AppContext,
user: ManagedObjectRecord<MastodonUser>
2022-02-08 05:36:06 +01:00
) {
self.context = context
self.user = user
// end init
commentContext.$comment
.map { comment -> Bool in
return !comment.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty
}
.assign(to: &$isNextButtonEnabled)
}
}