TM-SGNL-iOS/Signal/Provisioning/UserInterface/ProvisioningModeSwitchConfirmationViewController.swift
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

90 lines
3.4 KiB
Swift

//
// Copyright 2019 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import SignalServiceKit
import SignalUI
class ProvisioningModeSwitchConfirmationViewController: ProvisioningBaseViewController {
var warningText: String?
override func loadView() {
view = UIView()
view.addSubview(primaryView)
primaryView.autoPinEdgesToSuperviewEdges()
view.backgroundColor = Theme.backgroundColor
let titleText: String
let explanationText: String
let nextButtonText: String
let image: UIImage?
titleText = OWSLocalizedString("ONBOARDING_MODE_SWITCH_TITLE_PROVISIONING",
comment: "header text indicating to the user they're switching from linking to registering flow")
explanationText = OWSLocalizedString("ONBOARDING_MODE_SWITCH_EXPLANATION_PROVISIONING",
comment: "explanation to the user they're switching from linking to registering flow")
nextButtonText = OWSLocalizedString("ONBOARDING_MODE_SWITCH_BUTTON_PROVISIONING",
comment: "button indicating that the user will register their ipad")
warningText = OWSLocalizedString("ONBOARDING_MODE_SWITCH_WARNING_PROVISIONING",
comment: "warning to the user that registering an ipad is not recommended")
image = #imageLiteral(resourceName: "ipad-primary")
let imageView = UIImageView(image: image)
imageView.contentMode = .scaleAspectFit
imageView.setContentHuggingHigh()
let titleLabel = self.createTitleLabel(text: titleText)
let explanationLabel = self.createExplanationLabel(explanationText: explanationText)
let nextButton = self.primaryButton(title: nextButtonText,
selector: #selector(didPressNext))
nextButton.accessibilityIdentifier = "onboarding.modeSwitch.nextButton"
let primaryButtonView = ProvisioningBaseViewController.horizontallyWrap(primaryButton: nextButton)
let topSpacer = UIView.vStretchingSpacer(minHeight: 12)
let bottomSpacer = UIView.vStretchingSpacer(minHeight: 12)
let stackView = UIStackView(arrangedSubviews: [
titleLabel,
UIView.spacer(withHeight: 12),
explanationLabel,
topSpacer,
imageView,
bottomSpacer,
primaryButtonView
])
stackView.axis = .vertical
stackView.alignment = .fill
stackView.spacing = 12
primaryView.addSubview(stackView)
topSpacer.autoMatch(.height, to: .height, of: bottomSpacer)
stackView.autoPinEdgesToSuperviewMargins()
}
override func shouldShowBackButton() -> Bool {
return true
}
@objc
private func didPressNext() {
let actionSheet = ActionSheetController(message: warningText)
let continueAction = ActionSheetAction(
title: CommonStrings.continueButton,
accessibilityIdentifier: "onboarding.modeSwitch.continue",
handler: { [weak self] _ in
guard let self else { return }
self.provisioningController.switchToPrimaryRegistration(viewController: self)
}
)
actionSheet.addAction(continueAction)
actionSheet.addAction(OWSActionSheets.cancelAction)
presentActionSheet(actionSheet)
}
}