* Allow MediaPickerScreen users to select the media selection mode (single or multiple) * Fix cancellation * Add support for multiple media URLs on the MediaUploadPreviewScreen. * Support processing more URLs on the `MediaUploadingPreprocessor` and sending more on the `MediaUploadPreviewScreen` * Add feature flag for `multipleAttachmentUploadEnabled` * Add a label showing the current preview item index in the MediaUploadPreviewScreen * Add support for dragging and dropping or pasting multiple items at the same time. * Support sharing more than one file through the share extension. * Limit the number of items that can be shared in one go to 5. * Fix unit tests * Fix incorrect fatal error when dealing with single selection media pickers. * Document the `multipleAttachmentUploadEnabled` usage in the context of the MediaPicker. * Use a task group for processing selected media in the photo library picker. * Use a task group for processing multiple selected media in the MediaUploadingPreprocessor * Switch the maximum number of items that can be shared to 10. * Allow multiple items to be pasted at the same time.
88 lines
3.1 KiB
Swift
88 lines
3.1 KiB
Swift
//
|
|
// Copyright 2023, 2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
enum DocumentPickerAction {
|
|
case selectedMediaAtURLs([URL])
|
|
case cancel
|
|
case error(Error)
|
|
}
|
|
|
|
struct DocumentPicker: UIViewControllerRepresentable {
|
|
private let selectionType: MediaPickerScreenSelectionType
|
|
private let userIndicatorController: UserIndicatorControllerProtocol
|
|
private let callback: (DocumentPickerAction) -> Void
|
|
|
|
init(selectionType: MediaPickerScreenSelectionType,
|
|
userIndicatorController: UserIndicatorControllerProtocol,
|
|
callback: @escaping (DocumentPickerAction) -> Void) {
|
|
self.selectionType = selectionType
|
|
self.userIndicatorController = userIndicatorController
|
|
self.callback = callback
|
|
}
|
|
|
|
func makeUIViewController(context: Context) -> UIDocumentPickerViewController {
|
|
let documentPicker = UIDocumentPickerViewController(forOpeningContentTypes: [.data])
|
|
documentPicker.delegate = context.coordinator
|
|
|
|
documentPicker.allowsMultipleSelection = switch selectionType {
|
|
case .single:
|
|
false
|
|
case .multiple:
|
|
true
|
|
}
|
|
|
|
return documentPicker
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: UIDocumentPickerViewController, context: Context) { }
|
|
|
|
func makeCoordinator() -> Coordinator {
|
|
Coordinator(self)
|
|
}
|
|
|
|
final class Coordinator: NSObject, UIDocumentPickerDelegate {
|
|
private var documentPicker: DocumentPicker
|
|
|
|
init(_ documentPicker: DocumentPicker) {
|
|
self.documentPicker = documentPicker
|
|
}
|
|
|
|
// MARK: UIDocumentPickerDelegate
|
|
|
|
func documentPickerWasCancelled(_ controller: UIDocumentPickerViewController) {
|
|
documentPicker.callback(.cancel)
|
|
}
|
|
|
|
private static let loadingIndicatorIdentifier = "\(DocumentPicker.self)-Loading"
|
|
|
|
func documentPicker(_ picker: UIDocumentPickerViewController, didPickDocumentsAt urls: [URL]) {
|
|
picker.delegate = nil
|
|
|
|
documentPicker.userIndicatorController.submitIndicator(UserIndicator(id: Self.loadingIndicatorIdentifier, type: .modal, title: L10n.commonLoading))
|
|
defer {
|
|
documentPicker.userIndicatorController.retractIndicatorWithId(Self.loadingIndicatorIdentifier)
|
|
}
|
|
|
|
var selectedURLs = [URL]()
|
|
for url in urls.prefix(10) {
|
|
do {
|
|
_ = url.startAccessingSecurityScopedResource()
|
|
let newURL = try FileManager.default.copyFileToTemporaryDirectory(file: url)
|
|
url.stopAccessingSecurityScopedResource()
|
|
selectedURLs.append(newURL)
|
|
} catch {
|
|
documentPicker.callback(.error(error))
|
|
}
|
|
}
|
|
|
|
documentPicker.callback(.selectedMediaAtURLs(selectedURLs))
|
|
}
|
|
}
|
|
}
|