79 lines
2.5 KiB
Swift
79 lines
2.5 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 Foundation
|
|
|
|
/// ShareInviteLinkPresenter enables to share room alias to someone else
|
|
@objcMembers
|
|
final class ShareInviteLinkPresenter: NSObject {
|
|
|
|
// MARK: - Constants
|
|
|
|
// MARK: - Properties
|
|
|
|
// MARK: Private
|
|
|
|
private weak var presentingViewController: UIViewController?
|
|
private weak var sourceView: UIView?
|
|
|
|
// MARK: - Public
|
|
|
|
func present(for room: MXRoom,
|
|
from viewController: UIViewController,
|
|
sourceView: UIView?,
|
|
animated: Bool) {
|
|
|
|
self.presentingViewController = viewController
|
|
self.sourceView = sourceView
|
|
|
|
self.shareInvite(from: room)
|
|
}
|
|
|
|
func dismiss(animated: Bool, completion: (() -> Void)?) {
|
|
self.presentingViewController?.dismiss(animated: animated, completion: completion)
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
private func shareInvite(from room: MXRoom) {
|
|
|
|
let shareText = self.buildShareText(with: room)
|
|
|
|
// Set up activity view controller
|
|
let activityItems: [Any] = [ shareText ]
|
|
let activityViewController = UIActivityViewController(activityItems: activityItems, applicationActivities: nil)
|
|
|
|
self.present(activityViewController, animated: true)
|
|
}
|
|
|
|
private func buildShareText(with room: MXRoom) -> String {
|
|
let roomAliasOrId: String
|
|
if let alias = room.summary?.aliases?.first {
|
|
roomAliasOrId = alias
|
|
} else {
|
|
roomAliasOrId = room.matrixItemId
|
|
}
|
|
|
|
if room.summary?.roomType == .space {
|
|
return VectorL10n.shareInviteLinkSpaceText(MXTools.permalink(toRoom: roomAliasOrId))
|
|
} else {
|
|
return VectorL10n.shareInviteLinkRoomText(MXTools.permalink(toRoom: roomAliasOrId))
|
|
}
|
|
}
|
|
|
|
private func present(_ viewController: UIViewController, animated: Bool) {
|
|
|
|
// Configure source view when view controller is presented with a popover
|
|
if let sourceView = self.sourceView, let popoverPresentationController = viewController.popoverPresentationController {
|
|
popoverPresentationController.sourceView = sourceView
|
|
popoverPresentationController.sourceRect = sourceView.bounds
|
|
}
|
|
|
|
self.presentingViewController?.present(viewController, animated: animated, completion: nil)
|
|
}
|
|
}
|