163 lines
7.4 KiB
Swift
163 lines
7.4 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2023-2025 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 Combine
|
|
import Foundation
|
|
|
|
typealias LocationSharingScreenViewModelType = StateStoreViewModelV2<LocationSharingScreenViewState, LocationSharingScreenViewAction>
|
|
|
|
class LocationSharingScreenViewModel: LocationSharingScreenViewModelType, LocationSharingScreenViewModelProtocol {
|
|
private let roomProxy: JoinedRoomProxyProtocol
|
|
private let timelineController: TimelineControllerProtocol
|
|
private let analytics: AnalyticsService
|
|
private let userIndicatorController: UserIndicatorControllerProtocol
|
|
|
|
private let actionsSubject: PassthroughSubject<LocationSharingScreenViewModelAction, Never> = .init()
|
|
var actions: AnyPublisher<LocationSharingScreenViewModelAction, Never> {
|
|
actionsSubject.eraseToAnyPublisher()
|
|
}
|
|
|
|
init(interactionMode: LocationSharingInteractionMode,
|
|
mapURLBuilder: MapTilerURLBuilderProtocol,
|
|
liveLocationSharingEnabled: Bool,
|
|
roomProxy: JoinedRoomProxyProtocol,
|
|
timelineController: TimelineControllerProtocol,
|
|
analytics: AnalyticsService,
|
|
userIndicatorController: UserIndicatorControllerProtocol,
|
|
mediaProvider: MediaProviderProtocol) {
|
|
self.roomProxy = roomProxy
|
|
self.timelineController = timelineController
|
|
self.analytics = analytics
|
|
self.userIndicatorController = userIndicatorController
|
|
|
|
super.init(initialViewState: .init(interactionMode: interactionMode,
|
|
mapURLBuilder: mapURLBuilder,
|
|
showLiveLocationSharingButton: liveLocationSharingEnabled,
|
|
ownUserID: roomProxy.ownUserID),
|
|
mediaProvider: mediaProvider)
|
|
|
|
updateShownUserProfile(members: roomProxy.membersPublisher.value)
|
|
setupSubscriptions()
|
|
}
|
|
|
|
override func process(viewAction: LocationSharingScreenViewAction) {
|
|
switch viewAction {
|
|
case .close:
|
|
actionsSubject.send(.close)
|
|
case .selectLocation:
|
|
guard let coordinate = state.bindings.mapCenterLocation else { return }
|
|
let uncertainty = state.isSharingUserLocation ? context.geolocationUncertainty : nil
|
|
Task { await sendLocation(.init(coordinate: coordinate, uncertainty: uncertainty), isUserLocation: state.isSharingUserLocation) }
|
|
case .userDidPan:
|
|
state.bindings.showsUserLocationMode = .show
|
|
case .centerToUser:
|
|
switch state.bindings.isLocationAuthorized {
|
|
case .some(true), .none:
|
|
state.bindings.showsUserLocationMode = .showAndFollow
|
|
case .some(false):
|
|
let action: () -> Void = { [weak self] in self?.actionsSubject.send(.openSystemSettings) }
|
|
state.bindings.alertInfo = .init(locationSharingViewError: .missingAuthorization,
|
|
primaryButton: .init(title: L10n.actionNotNow, role: .cancel, action: nil),
|
|
secondaryButton: .init(title: L10n.commonSettings, action: action))
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
private func setupSubscriptions() {
|
|
roomProxy.membersPublisher.sink { [weak self] members in
|
|
self?.updateShownUserProfile(members: members)
|
|
}
|
|
.store(in: &cancellables)
|
|
}
|
|
|
|
private func updateShownUserProfile(members: [RoomMemberProxyProtocol]) {
|
|
switch state.interactionMode {
|
|
case .picker:
|
|
if let ownUser = members.first(where: { $0.userID == roomProxy.ownUserID }).map(UserProfileProxy.init) {
|
|
state.userProfile = ownUser
|
|
} else {
|
|
state.userProfile = .init(userID: roomProxy.ownUserID)
|
|
}
|
|
case .viewStatic(let location):
|
|
if let sender = members.first(where: { $0.userID == location.sender.id }).map(UserProfileProxy.init) {
|
|
state.userProfile = sender
|
|
} else {
|
|
state.userProfile = .init(sender: location.sender)
|
|
}
|
|
}
|
|
}
|
|
|
|
private func sendLocation(_ geoURI: GeoURI, isUserLocation: Bool) async {
|
|
guard case .success = await timelineController.sendLocation(body: geoURI.bodyMessage,
|
|
geoURI: geoURI,
|
|
description: nil,
|
|
zoomLevel: 15,
|
|
assetType: isUserLocation ? .sender : .pin) else {
|
|
showErrorIndicator()
|
|
return
|
|
}
|
|
|
|
actionsSubject.send(.close)
|
|
|
|
analytics.trackComposer(inThread: false,
|
|
isEditing: false,
|
|
isReply: false,
|
|
messageType: isUserLocation ? .LocationUser : .LocationPin,
|
|
startsThread: nil)
|
|
}
|
|
|
|
private func showErrorIndicator() {
|
|
userIndicatorController.submitIndicator(UserIndicator(id: statusIndicatorID,
|
|
type: .toast,
|
|
title: L10n.errorUnknown,
|
|
iconName: "xmark"))
|
|
}
|
|
|
|
private var statusIndicatorID: String {
|
|
"\(Self.self)-Status"
|
|
}
|
|
}
|
|
|
|
extension LocationSharingScreenViewModel {
|
|
enum MockType {
|
|
case picker
|
|
case staticSenderLocation
|
|
case staticPinLocation
|
|
}
|
|
|
|
static func mock(type: MockType, senderID: String = "@dan:matrix.org") -> LocationSharingScreenViewModel {
|
|
let interactionMode: LocationSharingInteractionMode = switch type {
|
|
case .picker:
|
|
.picker
|
|
case .staticPinLocation:
|
|
.viewStatic(.init(sender: .init(id: senderID),
|
|
geoURI: .init(latitude: 41.9027835,
|
|
longitude: 12.4963655),
|
|
kind: .pin,
|
|
timestamp: .mock))
|
|
case .staticSenderLocation:
|
|
.viewStatic(.init(sender: .init(id: senderID),
|
|
geoURI: .init(latitude: 41.9027835,
|
|
longitude: 12.4963655),
|
|
kind: .sender,
|
|
timestamp: .mock))
|
|
}
|
|
|
|
return LocationSharingScreenViewModel(interactionMode: interactionMode,
|
|
mapURLBuilder: ServiceLocator.shared.settings.mapTilerConfiguration,
|
|
liveLocationSharingEnabled: true,
|
|
roomProxy: JoinedRoomProxyMock(.init()),
|
|
timelineController: MockTimelineController(),
|
|
analytics: ServiceLocator.shared.analytics,
|
|
userIndicatorController: UserIndicatorControllerMock(),
|
|
mediaProvider: MediaProviderMock(configuration: .init()))
|
|
}
|
|
}
|