39 lines
1.1 KiB
Swift
39 lines
1.1 KiB
Swift
//
|
|
// ReportSupplementaryViewModel+Diffable.swift
|
|
// Mastodon
|
|
//
|
|
// Created by MainasuK on 2022-2-7.
|
|
//
|
|
|
|
import UIKit
|
|
import Combine
|
|
import CoreData
|
|
import CoreDataStack
|
|
import MastodonAsset
|
|
import MastodonLocalization
|
|
|
|
extension ReportSupplementaryViewModel {
|
|
|
|
static let reportItemHeaderContext = ReportItem.HeaderContext(
|
|
primaryLabelText: L10n.Scene.Report.content2,
|
|
secondaryLabelText: L10n.Scene.Report.step2
|
|
)
|
|
|
|
func setupDiffableDataSource(
|
|
tableView: UITableView
|
|
) {
|
|
diffableDataSource = ReportSection.diffableDataSource(
|
|
tableView: tableView,
|
|
context: context,
|
|
configuration: ReportSection.Configuration()
|
|
)
|
|
|
|
var snapshot = NSDiffableDataSourceSnapshot<ReportSection, ReportItem>()
|
|
snapshot.appendSections([.main])
|
|
snapshot.appendItems([.header(context: ReportSupplementaryViewModel.reportItemHeaderContext)], toSection: .main)
|
|
snapshot.appendItems([.comment(context: commentContext)], toSection: .main)
|
|
|
|
diffableDataSource?.apply(snapshot, animatingDifferences: false)
|
|
}
|
|
}
|