* Add a LinkNewDeviceService that exposes the SDK's grant QR code login methods. * Add a flow coordinator for linking a new device. Changes the presentation too.
26 lines
670 B
Swift
26 lines
670 B
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum LinkNewDeviceScreenViewModelAction {
|
|
case linkMobileDevice(LinkNewDeviceService.GenerateProgressPublisher)
|
|
case linkDesktopComputer
|
|
case dismiss
|
|
}
|
|
|
|
struct LinkNewDeviceScreenViewState: BindableState {
|
|
enum Mode: Equatable { case loading, readyToLink(isGeneratingCode: Bool), notSupported }
|
|
var mode: Mode = .loading
|
|
}
|
|
|
|
enum LinkNewDeviceScreenViewAction {
|
|
case linkMobileDevice
|
|
case linkDesktopComputer
|
|
case dismiss
|
|
}
|