mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-20 16:42:44 +02:00
Add support for Apple context menus in matrix items list screens (#5963)
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
//
|
||||
// Copyright 2022 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
|
||||
|
||||
/// Helper class `RecentCellContextMenuProvider` that provides an instace of `UIContextMenuConfiguration` from an instance of `MXKRecentCellDataStoring`
|
||||
@objcMembers
|
||||
class RecentCellContextMenuProvider: NSObject {
|
||||
|
||||
weak var serviceDelegate: RoomContextActionServiceDelegate?
|
||||
private var currentService: RoomContextActionServiceProtocol?
|
||||
|
||||
@available(iOS 13.0, *)
|
||||
func contextMenuConfiguration(with cellData: MXKRecentCellDataStoring, from cell: UIView, session: MXSession) -> UIContextMenuConfiguration? {
|
||||
if cellData.isSuggestedRoom, let childInfo = cellData.roomSummary.spaceChildInfo {
|
||||
let service = UnownedRoomContextActionService(roomId: childInfo.childRoomId, canonicalAlias: childInfo.canonicalAlias, session: session, delegate: serviceDelegate)
|
||||
self.currentService = service
|
||||
let actionProvider = SpaceChildActionProvider(spaceChildInfo: childInfo, service: service)
|
||||
return UIContextMenuConfiguration(identifier: "" as NSString) {
|
||||
let viewModel = SpaceChildContextPreviewViewModel(childInfo: childInfo)
|
||||
return RoomContextPreviewViewController.instantiate(with: viewModel, mediaManager: session.mediaManager)
|
||||
} actionProvider: { suggestedActions in
|
||||
return actionProvider.menu
|
||||
}
|
||||
} else if let room = session.room(withRoomId: cellData.roomIdentifier) {
|
||||
let service = RoomContextActionService(room: room, delegate: serviceDelegate)
|
||||
self.currentService = service
|
||||
let actionProvider = RoomActionProvider(service: service)
|
||||
return UIContextMenuConfiguration(identifier: cellData.roomIdentifier as NSString) {
|
||||
if room.summary?.isJoined == true {
|
||||
let storyboard = UIStoryboard(name: "Main", bundle: Bundle.main)
|
||||
guard let roomViewController = storyboard.instantiateViewController(withIdentifier: "RoomViewControllerStoryboardId") as? RoomViewController else {
|
||||
return nil
|
||||
}
|
||||
roomViewController.isContextPreview = true
|
||||
|
||||
let roomDataSourceManager = MXKRoomDataSourceManager.sharedManager(forMatrixSession: session)
|
||||
roomDataSourceManager?.roomDataSource(forRoom: room.roomId, create: true, onComplete: { roomDataSource in
|
||||
roomViewController.displayRoom(roomDataSource)
|
||||
})
|
||||
|
||||
return roomViewController
|
||||
} else {
|
||||
let viewModel = RoomContextPreviewViewModel(room: room)
|
||||
return RoomContextPreviewViewController.instantiate(with: viewModel, mediaManager: session.mediaManager)
|
||||
}
|
||||
} actionProvider: { suggestedActions in
|
||||
return actionProvider.menu
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func roomId(from identifier: NSCopying) -> String? {
|
||||
let roomId = identifier as? String
|
||||
return roomId?.isEmpty == true ? nil : roomId
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user