207 lines
8.3 KiB
Swift
207 lines
8.3 KiB
Swift
//
|
|
// SidebarViewModel.swift
|
|
// Mastodon
|
|
//
|
|
// Created by Cirno MainasuK on 2021-9-22.
|
|
//
|
|
|
|
import UIKit
|
|
import Combine
|
|
import CoreData
|
|
import CoreDataStack
|
|
import Meta
|
|
import MastodonMeta
|
|
|
|
final class SidebarViewModel {
|
|
|
|
var disposeBag = Set<AnyCancellable>()
|
|
|
|
// input
|
|
let context: AppContext
|
|
let searchHistoryFetchedResultController: SearchHistoryFetchedResultController
|
|
|
|
// output
|
|
var diffableDataSource: UICollectionViewDiffableDataSource<Section, Item>?
|
|
var secondaryDiffableDataSource: UICollectionViewDiffableDataSource<Section, Item>?
|
|
|
|
let activeMastodonAuthenticationObjectID = CurrentValueSubject<NSManagedObjectID?, Never>(nil)
|
|
|
|
init(context: AppContext) {
|
|
self.context = context
|
|
self.searchHistoryFetchedResultController = SearchHistoryFetchedResultController(managedObjectContext: context.managedObjectContext)
|
|
|
|
context.authenticationService.activeMastodonAuthentication
|
|
.sink { [weak self] authentication in
|
|
guard let self = self else { return }
|
|
// bind search history
|
|
self.searchHistoryFetchedResultController.domain.value = authentication?.domain
|
|
self.searchHistoryFetchedResultController.userID.value = authentication?.userID
|
|
|
|
// bind objectID
|
|
self.activeMastodonAuthenticationObjectID.value = authentication?.objectID
|
|
}
|
|
.store(in: &disposeBag)
|
|
|
|
try? searchHistoryFetchedResultController.fetchedResultsController.performFetch()
|
|
}
|
|
|
|
}
|
|
|
|
extension SidebarViewModel {
|
|
enum Section: Int, Hashable, CaseIterable {
|
|
case main
|
|
case secondary
|
|
}
|
|
|
|
enum Item: Hashable {
|
|
case tab(MainTabBarController.Tab)
|
|
case setting
|
|
case compose
|
|
}
|
|
|
|
}
|
|
|
|
extension SidebarViewModel {
|
|
func setupDiffableDataSource(
|
|
collectionView: UICollectionView,
|
|
secondaryCollectionView: UICollectionView
|
|
) {
|
|
let tabCellRegistration = UICollectionView.CellRegistration<SidebarListCollectionViewCell, MainTabBarController.Tab> { [weak self] cell, indexPath, item in
|
|
guard let self = self else { return }
|
|
|
|
let imageURL: URL? = {
|
|
switch item {
|
|
case .me:
|
|
let authentication = self.context.authenticationService.activeMastodonAuthentication.value
|
|
return authentication?.user.avatarImageURL()
|
|
default:
|
|
return nil
|
|
}
|
|
}()
|
|
cell.item = SidebarListContentView.Item(
|
|
title: item.title,
|
|
image: item.sidebarImage,
|
|
imageURL: imageURL
|
|
)
|
|
cell.setNeedsUpdateConfiguration()
|
|
cell.isAccessibilityElement = true
|
|
cell.accessibilityLabel = item.title
|
|
|
|
switch item {
|
|
case .notification:
|
|
Publishers.CombineLatest(
|
|
self.context.authenticationService.activeMastodonAuthentication,
|
|
self.context.notificationService.unreadNotificationCountDidUpdate
|
|
)
|
|
.receive(on: DispatchQueue.main)
|
|
.sink { [weak cell] authentication, _ in
|
|
guard let cell = cell else { return }
|
|
let hasUnreadPushNotification: Bool = authentication.flatMap { authentication in
|
|
let count = UserDefaults.shared.getNotificationCountWithAccessToken(accessToken: authentication.userAccessToken)
|
|
return count > 0
|
|
} ?? false
|
|
|
|
let image = hasUnreadPushNotification ? UIImage(systemName: "bell.badge")! : UIImage(systemName: "bell")!
|
|
cell._contentView?.imageView.image = image
|
|
}
|
|
.store(in: &cell.disposeBag)
|
|
case .me:
|
|
guard let authentication = self.context.authenticationService.activeMastodonAuthentication.value else { break }
|
|
let currentUserDisplayName = authentication.user.displayNameWithFallback ?? "no user"
|
|
cell.accessibilityHint = L10n.Scene.AccountList.tabBarHint(currentUserDisplayName)
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
let cellRegistration = UICollectionView.CellRegistration<SidebarListCollectionViewCell, SidebarListContentView.Item> { [weak self] cell, indexPath, item in
|
|
guard let self = self else { return }
|
|
cell.item = item
|
|
cell.setNeedsUpdateConfiguration()
|
|
cell.isAccessibilityElement = true
|
|
cell.accessibilityLabel = item.title
|
|
}
|
|
|
|
// header
|
|
let headerRegistration = UICollectionView.SupplementaryRegistration<SidebarListHeaderView>(elementKind: UICollectionView.elementKindSectionHeader) { supplementaryView, elementKind, indexPath in
|
|
// do nothing
|
|
}
|
|
|
|
let _diffableDataSource = UICollectionViewDiffableDataSource<Section, Item>(collectionView: collectionView) { collectionView, indexPath, item in
|
|
switch item {
|
|
case .tab(let tab):
|
|
return collectionView.dequeueConfiguredReusableCell(using: tabCellRegistration, for: indexPath, item: tab)
|
|
case .setting:
|
|
let item = SidebarListContentView.Item(
|
|
title: L10n.Common.Controls.Actions.settings,
|
|
image: UIImage(systemName: "gear")!,
|
|
imageURL: nil
|
|
)
|
|
return collectionView.dequeueConfiguredReusableCell(using: cellRegistration, for: indexPath, item: item)
|
|
case .compose:
|
|
let item = SidebarListContentView.Item(
|
|
title: "Compose", // TODO: update i18n
|
|
image: UIImage(systemName: "square.and.pencil")!,
|
|
imageURL: nil
|
|
)
|
|
return collectionView.dequeueConfiguredReusableCell(using: cellRegistration, for: indexPath, item: item)
|
|
}
|
|
}
|
|
_diffableDataSource.supplementaryViewProvider = { collectionView, elementKind, indexPath in
|
|
switch elementKind {
|
|
case UICollectionView.elementKindSectionHeader:
|
|
return collectionView.dequeueConfiguredReusableSupplementary(using: headerRegistration, for: indexPath)
|
|
default:
|
|
assertionFailure()
|
|
return UICollectionReusableView()
|
|
}
|
|
}
|
|
diffableDataSource = _diffableDataSource
|
|
|
|
var snapshot = NSDiffableDataSourceSnapshot<Section, Item>()
|
|
snapshot.appendSections([.main])
|
|
|
|
var sectionSnapshot = NSDiffableDataSourceSectionSnapshot<Item>()
|
|
let items: [Item] = [
|
|
.tab(.home),
|
|
.tab(.search),
|
|
.tab(.notification),
|
|
.tab(.me),
|
|
.setting,
|
|
]
|
|
sectionSnapshot.append(items, to: nil)
|
|
_diffableDataSource.apply(sectionSnapshot, to: .main)
|
|
|
|
|
|
// secondary
|
|
let _secondaryDiffableDataSource = UICollectionViewDiffableDataSource<Section, Item>(collectionView: secondaryCollectionView) { collectionView, indexPath, item in
|
|
guard case .compose = item else {
|
|
assertionFailure()
|
|
return UICollectionViewCell()
|
|
}
|
|
|
|
let item = SidebarListContentView.Item(
|
|
title: "Compose", // FIXME:
|
|
image: UIImage(systemName: "square.and.pencil")!,
|
|
imageURL: nil
|
|
)
|
|
return collectionView.dequeueConfiguredReusableCell(using: cellRegistration, for: indexPath, item: item)
|
|
}
|
|
// _secondaryDiffableDataSource.supplementaryViewProvider = { collectionView, elementKind, indexPath in
|
|
// return nil
|
|
// }
|
|
secondaryDiffableDataSource = _secondaryDiffableDataSource
|
|
|
|
var secondarySnapshot = NSDiffableDataSourceSnapshot<Section, Item>()
|
|
secondarySnapshot.appendSections([.secondary])
|
|
|
|
var secondarySectionSnapshot = NSDiffableDataSourceSectionSnapshot<Item>()
|
|
let secondarySectionItems: [Item] = [
|
|
.compose,
|
|
]
|
|
secondarySectionSnapshot.append(secondarySectionItems, to: nil)
|
|
_secondaryDiffableDataSource.apply(secondarySectionSnapshot, to: .secondary)
|
|
}
|
|
|
|
}
|