element-ios/Riot/Modules/Spaces/SpaceList/SpaceListViewModel.swift

260 lines
10 KiB
Swift

// File created from ScreenTemplate
// $ createScreen.sh Spaces/SpaceList SpaceList
/*
Copyright 2020 New Vector Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import Foundation
final class SpaceListViewModel: SpaceListViewModelType {
// MARK: - Constants
enum Constants {
static let homeSpaceId: String = "home"
}
// MARK: - Properties
// MARK: Private
private let userSessionsService: UserSessionsService
private var currentOperation: MXHTTPOperation?
private var sections: [SpaceListSection] = []
private var selectedIndexPath: IndexPath = IndexPath(row: 0, section: 0) {
didSet {
self.selectedItemId = self.itemId(with: self.selectedIndexPath)
}
}
private var homeIndexPath: IndexPath = IndexPath(row: 0, section: 0)
private var selectedItemId: String = Constants.homeSpaceId
// MARK: Public
weak var viewDelegate: SpaceListViewModelViewDelegate?
weak var coordinatorDelegate: SpaceListViewModelCoordinatorDelegate?
// MARK: - Setup
init(userSessionsService: UserSessionsService) {
self.userSessionsService = userSessionsService
NotificationCenter.default.addObserver(self, selector: #selector(self.sessionDidSync(notification:)), name: MXSpaceService.didBuildSpaceGraph, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(self.counterDidUpdateNotificationCount(notification:)), name: MXSpaceNotificationCounter.didUpdateNotificationCount, object: nil)
}
deinit {
self.cancelOperations()
}
// MARK: - Public
func process(viewAction: SpaceListViewAction) {
switch viewAction {
case .loadData:
self.loadData()
case .selectRow(at: let indexPath, from: let sourceView):
guard self.selectedIndexPath != indexPath else {
return
}
let section = self.sections[indexPath.section]
switch section {
case .home:
self.selectHome()
self.selectedIndexPath = indexPath
self.update(viewState: .selectionChanged(indexPath))
case .spaces(let viewDataList):
let spaceViewData = viewDataList[indexPath.row]
if spaceViewData.isInvite {
self.selectInvite(with: spaceViewData.spaceId, from: sourceView)
} else {
self.selectSpace(with: spaceViewData.spaceId)
self.selectedIndexPath = indexPath
self.update(viewState: .selectionChanged(indexPath))
}
}
case .moreAction(at: let indexPath, from: let sourceView):
let section = self.sections[indexPath.section]
switch section {
case .home:
self.coordinatorDelegate?.spaceListViewModel(self, didPressMoreForSpaceWithId: Constants.homeSpaceId, from: sourceView)
case .spaces(let viewDataList):
let spaceViewData = viewDataList[indexPath.row]
self.coordinatorDelegate?.spaceListViewModel(self, didPressMoreForSpaceWithId: spaceViewData.spaceId, from: sourceView)
}
}
}
func revertItemSelection() {
self.update(viewState: .selectionChanged(self.selectedIndexPath))
}
func select(spaceWithId spaceId: String) {
for (sectionIndex, section) in self.sections.enumerated() {
switch section {
case .home: break
case .spaces(let viewDataList):
for (row, itemViewData) in viewDataList.enumerated() where itemViewData.spaceId == spaceId {
let indexPath = IndexPath(row: row, section: sectionIndex)
self.selectSpace(with: spaceId)
self.selectedIndexPath = indexPath
self.update(viewState: .selectionChanged(indexPath))
}
}
}
}
// MARK: - Private
@objc private func sessionDidSync(notification: Notification) {
loadData()
}
@objc private func counterDidUpdateNotificationCount(notification: Notification) {
loadData()
}
private func loadData() {
guard let session = self.userSessionsService.mainUserSession?.matrixSession else {
// If there is no main session, reset current selection and give an empty section list
// It can happen when the user make a clear cache or logout
self.resetList()
return
}
self.update(viewState: .loading)
let homeViewData = self.createHomeViewData(session: session)
let viewDataList = getSpacesViewData(session: session)
let sections: [SpaceListSection] = viewDataList.invites.isEmpty ? [
.home(homeViewData),
.spaces(viewDataList.spaces)
]
:
[
.spaces(viewDataList.invites),
.home(homeViewData),
.spaces(viewDataList.spaces)
]
self.sections = sections
let homeIndexPath = viewDataList.invites.isEmpty ? IndexPath(row: 0, section: 0) : IndexPath(row: 0, section: 1)
if self.selectedIndexPath.section == self.homeIndexPath.section {
self.selectedIndexPath = homeIndexPath
} else if self.selectedItemId != self.itemId(with: self.selectedIndexPath) {
var newSelection: IndexPath?
let section = sections.last
switch section {
case .home:
break
case .spaces(let viewDataList):
var index = 0
for itemViewData in viewDataList {
if itemViewData.spaceId == self.selectedItemId {
newSelection = IndexPath(row: index, section: sections.count - 1)
}
index += 1
}
case .none:
break
}
if let selection = newSelection {
self.selectedIndexPath = selection
} else {
self.selectedIndexPath = homeIndexPath
self.coordinatorDelegate?.spaceListViewModelDidSelectHomeSpace(self)
}
}
self.homeIndexPath = homeIndexPath
self.update(viewState: .loaded(sections))
self.update(viewState: .selectionChanged(self.selectedIndexPath))
}
private func selectHome() {
self.coordinatorDelegate?.spaceListViewModelDidSelectHomeSpace(self)
}
private func selectSpace(with spaceId: String) {
self.coordinatorDelegate?.spaceListViewModel(self, didSelectSpaceWithId: spaceId)
}
private func selectInvite(with spaceId: String, from sourceView: UIView?) {
self.coordinatorDelegate?.spaceListViewModel(self, didSelectInviteWithId: spaceId, from: sourceView)
}
private func createHomeViewData(session: MXSession) -> SpaceListItemViewData {
let avatarViewData = AvatarViewData(matrixItemId: Constants.homeSpaceId, displayName: nil, avatarUrl: nil, mediaManager: session.mediaManager, fallbackImage: .image(Asset.Images.spaceHomeIcon.image, .center))
let homeNotificationState = session.spaceService.notificationCounter.homeNotificationState
let homeViewData = SpaceListItemViewData(spaceId: Constants.homeSpaceId,
title: VectorL10n.spacesHomeSpaceTitle, avatarViewData: avatarViewData, isInvite: false, notificationCount: homeNotificationState.allCount, highlightedNotificationCount: homeNotificationState.allHighlightCount)
return homeViewData
}
private func getSpacesViewData(session: MXSession) -> (invites: [SpaceListItemViewData], spaces: [SpaceListItemViewData]) {
var invites: [SpaceListItemViewData] = []
var spaces: [SpaceListItemViewData] = []
session.spaceService.rootSpaceSummaries.forEach { summary in
let avatarViewData = AvatarViewData(matrixItemId: summary.roomId, displayName: summary.displayname, avatarUrl: summary.avatar, mediaManager: session.mediaManager, fallbackImage: .matrixItem(summary.roomId, summary.displayname))
let notificationState = session.spaceService.notificationCounter.notificationState(forSpaceWithId: summary.roomId)
let viewData = SpaceListItemViewData(spaceId: summary.roomId, title: summary.displayname, avatarViewData: avatarViewData, isInvite: summary.membership == .invite, notificationCount: notificationState?.groupMissedDiscussionsCount ?? 0, highlightedNotificationCount: notificationState?.groupMissedDiscussionsHighlightedCount ?? 0)
if viewData.isInvite {
invites.append(viewData)
} else {
spaces.append(viewData)
}
}
return (invites, spaces)
}
private func update(viewState: SpaceListViewState) {
self.viewDelegate?.spaceListViewModel(self, didUpdateViewState: viewState)
}
private func cancelOperations() {
self.currentOperation?.cancel()
}
private func itemId(with indexPath: IndexPath) -> String {
guard self.selectedIndexPath.section < self.sections.count else {
return Constants.homeSpaceId
}
let section = self.sections[self.selectedIndexPath.section]
switch section {
case .home:
return Constants.homeSpaceId
case .spaces(let viewDataList):
let spaceViewData = viewDataList[self.selectedIndexPath.row]
return spaceViewData.spaceId
}
}
private func resetList() {
self.sections = []
let selectedIndexPath = IndexPath(row: 0, section: 0)
self.selectedIndexPath = selectedIndexPath
self.homeIndexPath = selectedIndexPath
self.update(viewState: .loaded([]))
}
}