160 lines
5.1 KiB
Swift
160 lines
5.1 KiB
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Combine
|
|
import Foundation
|
|
|
|
protocol MatrixItemChooserDataSource {
|
|
func sections(with session: MXSession, completion: @escaping (Result<[MatrixListItemSectionData], Error>) -> Void)
|
|
var preselectedItemIds: Set<String>? { get }
|
|
}
|
|
|
|
protocol MatrixItemChooserProcessorProtocol {
|
|
var loadingText: String? { get }
|
|
var dataSource: MatrixItemChooserDataSource { get }
|
|
func computeSelection(withIds itemsIds: [String], completion: @escaping (Result<Void, Error>) -> Void)
|
|
func isItemIncluded(_ item: MatrixListItemData) -> Bool
|
|
}
|
|
|
|
class MatrixItemChooserService: MatrixItemChooserServiceProtocol {
|
|
// MARK: - Properties
|
|
|
|
// MARK: Private
|
|
|
|
private let processingQueue = DispatchQueue(label: "io.element.MatrixItemChooserService.processingQueue")
|
|
private let completionQueue = DispatchQueue.main
|
|
|
|
private let session: MXSession
|
|
private var sections: [MatrixListItemSectionData] = []
|
|
private var filteredSections: [MatrixListItemSectionData] = [] {
|
|
didSet {
|
|
sectionsSubject.send(filteredSections)
|
|
}
|
|
}
|
|
|
|
private var selectedItemIds: Set<String>
|
|
private let itemsProcessor: MatrixItemChooserProcessorProtocol
|
|
|
|
// MARK: Public
|
|
|
|
private(set) var sectionsSubject: CurrentValueSubject<[MatrixListItemSectionData], Never>
|
|
private(set) var selectedItemIdsSubject: CurrentValueSubject<Set<String>, Never>
|
|
var searchText = "" {
|
|
didSet {
|
|
refresh()
|
|
}
|
|
}
|
|
|
|
var loadingText: String? {
|
|
itemsProcessor.loadingText
|
|
}
|
|
|
|
var itemCount: Int {
|
|
var itemCount = 0
|
|
for section in sections {
|
|
itemCount += section.items.count
|
|
}
|
|
return itemCount
|
|
}
|
|
|
|
// MARK: - Setup
|
|
|
|
init(session: MXSession, selectedItemIds: [String], itemsProcessor: MatrixItemChooserProcessorProtocol) {
|
|
self.session = session
|
|
sectionsSubject = CurrentValueSubject(sections)
|
|
|
|
self.selectedItemIds = Set(selectedItemIds)
|
|
selectedItemIdsSubject = CurrentValueSubject(self.selectedItemIds)
|
|
self.itemsProcessor = itemsProcessor
|
|
|
|
itemsProcessor.dataSource.sections(with: session) { [weak self] result in
|
|
guard let self = self else { return }
|
|
|
|
switch result {
|
|
case .success(let sections):
|
|
self.sections = sections
|
|
self.refresh()
|
|
if let preselectedItemIds = itemsProcessor.dataSource.preselectedItemIds {
|
|
for itemId in preselectedItemIds {
|
|
self.selectedItemIds.insert(itemId)
|
|
}
|
|
self.selectedItemIdsSubject.send(self.selectedItemIds)
|
|
}
|
|
case .failure(let error):
|
|
break
|
|
}
|
|
}
|
|
|
|
refresh()
|
|
}
|
|
|
|
// MARK: - Public
|
|
|
|
func reverseSelectionForItem(withId itemId: String) {
|
|
if selectedItemIds.contains(itemId) {
|
|
selectedItemIds.remove(itemId)
|
|
} else {
|
|
selectedItemIds.insert(itemId)
|
|
}
|
|
selectedItemIdsSubject.send(selectedItemIds)
|
|
}
|
|
|
|
func processSelection(completion: @escaping (Result<Void, Error>) -> Void) {
|
|
itemsProcessor.computeSelection(withIds: Array(selectedItemIds), completion: completion)
|
|
}
|
|
|
|
func refresh() {
|
|
processingQueue.async { [weak self] in
|
|
guard let self = self else { return }
|
|
let filteredSections = self.filter(sections: self.sections)
|
|
|
|
self.completionQueue.async {
|
|
self.filteredSections = filteredSections
|
|
}
|
|
}
|
|
}
|
|
|
|
func selectAllItems() {
|
|
var newSelection: Set<String> = Set()
|
|
for section in sections {
|
|
for item in section.items {
|
|
newSelection.insert(item.id)
|
|
}
|
|
}
|
|
selectedItemIds = newSelection
|
|
selectedItemIdsSubject.send(selectedItemIds)
|
|
}
|
|
|
|
func deselectAllItems() {
|
|
selectedItemIds = Set()
|
|
selectedItemIdsSubject.send(selectedItemIds)
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
private func filter(sections: [MatrixListItemSectionData]) -> [MatrixListItemSectionData] {
|
|
var newSections: [MatrixListItemSectionData] = []
|
|
|
|
for section in sections {
|
|
let items: [MatrixListItemData]
|
|
if searchText.isEmpty {
|
|
items = section.items.filter {
|
|
itemsProcessor.isItemIncluded($0)
|
|
}
|
|
} else {
|
|
let lowercasedSearchText = searchText.lowercased()
|
|
items = section.items.filter {
|
|
itemsProcessor.isItemIncluded($0) && ($0.id.lowercased().contains(lowercasedSearchText) || ($0.displayName ?? "").lowercased().contains(lowercasedSearchText))
|
|
}
|
|
}
|
|
newSections.append(MatrixListItemSectionData(id: section.id, title: section.title, infoText: section.infoText, items: items))
|
|
}
|
|
|
|
return newSections
|
|
}
|
|
}
|