metatext-app-ios-iphone-ipad/ViewModels/Sources/ViewModels/ProfileViewModel.swift

104 lines
3.5 KiB
Swift
Raw Normal View History

2020-09-18 02:16:41 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Combine
import Foundation
import Mastodon
import ServiceLayer
2020-10-01 04:35:06 +02:00
final public class ProfileViewModel {
2020-09-26 09:13:50 +02:00
@Published public private(set) var accountViewModel: AccountViewModel?
2020-09-27 04:03:53 +02:00
@Published public var collection = ProfileCollection.statuses
2020-10-01 04:35:06 +02:00
@Published public var alertItem: AlertItem?
2020-09-27 04:03:53 +02:00
private let profileService: ProfileService
2020-10-05 22:06:50 +02:00
private let collectionViewModel: CurrentValueSubject<CollectionItemsViewModel, Never>
2020-09-18 02:16:41 +02:00
private var cancellables = Set<AnyCancellable>()
2020-09-27 04:03:53 +02:00
init(profileService: ProfileService) {
self.profileService = profileService
2020-09-18 02:16:41 +02:00
2020-10-01 04:35:06 +02:00
collectionViewModel = CurrentValueSubject(
2020-10-05 22:06:50 +02:00
CollectionItemsViewModel(collectionService: profileService.timelineService(profileCollection: .statuses)))
2020-09-22 08:53:11 +02:00
2020-10-01 04:35:06 +02:00
profileService.accountServicePublisher
2020-09-26 09:13:50 +02:00
.map(AccountViewModel.init(accountService:))
2020-09-22 08:53:11 +02:00
.assignErrorsToAlertItem(to: \.alertItem, on: self)
2020-09-26 09:13:50 +02:00
.assign(to: &$accountViewModel)
2020-10-01 04:35:06 +02:00
$collection.dropFirst()
2020-10-05 09:04:15 +02:00
.map(profileService.timelineService(profileCollection:))
2020-10-05 22:06:50 +02:00
.map(CollectionItemsViewModel.init(collectionService:))
2020-10-01 04:35:06 +02:00
.sink { [weak self] in
guard let self = self else { return }
self.collectionViewModel.send($0)
$0.$alertItem.assign(to: &self.$alertItem)
}
.store(in: &cancellables)
2020-09-18 02:16:41 +02:00
}
2020-10-01 04:35:06 +02:00
}
2020-09-18 02:16:41 +02:00
2020-10-01 04:35:06 +02:00
extension ProfileViewModel: CollectionViewModel {
2020-10-05 08:36:22 +02:00
public var sections: AnyPublisher<[[CollectionItemIdentifier]], Never> {
collectionViewModel.flatMap(\.sections).eraseToAnyPublisher()
2020-10-01 04:35:06 +02:00
}
2020-10-05 22:21:06 +02:00
public var title: AnyPublisher<String, Never> {
$accountViewModel.compactMap { $0?.accountName }.eraseToAnyPublisher()
2020-10-01 04:35:06 +02:00
}
public var alertItems: AnyPublisher<AlertItem, Never> {
collectionViewModel.flatMap(\.alertItems).eraseToAnyPublisher()
}
public var loading: AnyPublisher<Bool, Never> {
collectionViewModel.flatMap(\.loading).eraseToAnyPublisher()
2020-09-27 03:23:56 +02:00
}
2020-10-01 04:35:06 +02:00
public var navigationEvents: AnyPublisher<NavigationEvent, Never> {
2020-09-26 09:45:39 +02:00
$accountViewModel.compactMap { $0 }
.flatMap(\.events)
.flatMap { $0 }
.map(NavigationEvent.init)
.compactMap { $0 }
.assignErrorsToAlertItem(to: \.alertItem, on: self)
2020-10-01 04:35:06 +02:00
.merge(with: collectionViewModel.flatMap(\.navigationEvents))
2020-09-26 09:45:39 +02:00
.eraseToAnyPublisher()
}
2020-10-06 00:50:05 +02:00
public var nextPageMaxId: String? {
collectionViewModel.value.nextPageMaxId
2020-10-01 04:35:06 +02:00
}
public var maintainScrollPositionOfItem: CollectionItemIdentifier? {
2020-10-01 04:35:06 +02:00
collectionViewModel.value.maintainScrollPositionOfItem
}
2020-10-06 00:50:05 +02:00
public func request(maxId: String?, minId: String?) {
if case .statuses = collection, maxId == nil {
2020-09-27 04:03:53 +02:00
profileService.fetchPinnedStatuses()
2020-09-18 02:16:41 +02:00
.assignErrorsToAlertItem(to: \.alertItem, on: self)
.sink { _ in }
.store(in: &cancellables)
}
2020-10-06 00:50:05 +02:00
collectionViewModel.value.request(maxId: maxId, minId: minId)
2020-09-18 02:16:41 +02:00
}
2020-10-07 01:12:11 +02:00
public func viewedAtTop(indexPath: IndexPath) {
collectionViewModel.value.viewedAtTop(indexPath: indexPath)
}
2020-10-05 09:50:59 +02:00
public func select(indexPath: IndexPath) {
collectionViewModel.value.select(indexPath: indexPath)
2020-10-01 04:35:06 +02:00
}
2020-10-05 09:50:59 +02:00
public func canSelect(indexPath: IndexPath) -> Bool {
collectionViewModel.value.canSelect(indexPath: indexPath)
2020-10-01 04:35:06 +02:00
}
2020-10-05 09:50:59 +02:00
public func viewModel(indexPath: IndexPath) -> CollectionItemViewModel {
collectionViewModel.value.viewModel(indexPath: indexPath)
2020-09-23 03:43:06 +02:00
}
2020-09-18 02:16:41 +02:00
}