2021-03-11 08:41:27 +01:00
|
|
|
//
|
|
|
|
// ComposeViewModel+Diffable.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by MainasuK Cirno on 2021-3-11.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
2021-03-12 12:25:28 +01:00
|
|
|
import TwitterTextEditor
|
2021-03-11 08:41:27 +01:00
|
|
|
|
|
|
|
extension ComposeViewModel {
|
|
|
|
|
2021-03-12 07:18:07 +01:00
|
|
|
func setupDiffableDataSource(
|
|
|
|
for tableView: UITableView,
|
2021-03-12 12:25:28 +01:00
|
|
|
dependency: NeedsDependency,
|
|
|
|
textEditorViewTextAttributesDelegate: TextEditorViewTextAttributesDelegate
|
2021-03-12 07:18:07 +01:00
|
|
|
) {
|
|
|
|
diffableDataSource = ComposeStatusSection.tableViewDiffableDataSource(
|
|
|
|
for: tableView,
|
|
|
|
dependency: dependency,
|
|
|
|
managedObjectContext: context.managedObjectContext,
|
2021-03-12 12:25:28 +01:00
|
|
|
composeKind: composeKind,
|
|
|
|
textEditorViewTextAttributesDelegate: textEditorViewTextAttributesDelegate
|
2021-03-12 07:18:07 +01:00
|
|
|
)
|
2021-03-11 08:41:27 +01:00
|
|
|
|
|
|
|
var snapshot = NSDiffableDataSourceSnapshot<ComposeStatusSection, ComposeStatusItem>()
|
2021-03-17 11:09:38 +01:00
|
|
|
snapshot.appendSections([.repliedTo, .status, .attachment])
|
2021-03-11 08:41:27 +01:00
|
|
|
switch composeKind {
|
2021-03-16 04:23:19 +01:00
|
|
|
case .reply(let statusObjectID):
|
|
|
|
snapshot.appendItems([.replyTo(statusObjectID: statusObjectID)], toSection: .repliedTo)
|
|
|
|
snapshot.appendItems([.input(replyToStatusObjectID: statusObjectID, attribute: composeStatusAttribute)], toSection: .repliedTo)
|
2021-03-15 06:42:46 +01:00
|
|
|
case .post:
|
2021-03-16 04:23:19 +01:00
|
|
|
snapshot.appendItems([.input(replyToStatusObjectID: nil, attribute: composeStatusAttribute)], toSection: .status)
|
2021-03-11 08:41:27 +01:00
|
|
|
}
|
|
|
|
diffableDataSource.apply(snapshot, animatingDifferences: false)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|