session-ios/Signal/src/Loki/Onboarding/DisplayNameVC.swift

72 lines
3.6 KiB
Swift
Raw Normal View History

2019-09-24 03:04:49 +02:00
final class DisplayNameVC : OnboardingBaseViewController {
2019-05-01 05:58:35 +02:00
private lazy var userNameTextField: UITextField = {
let result = UITextField()
result.textColor = Theme.primaryColor
result.font = UIFont.ows_dynamicTypeBodyClamped
result.textAlignment = .center
2019-06-14 07:25:39 +02:00
let placeholder = NSMutableAttributedString(string: NSLocalizedString("Display Name (Optional)", comment: ""))
placeholder.addAttribute(.foregroundColor, value: Theme.placeholderColor, range: NSRange(location: 0, length: placeholder.length))
result.attributedPlaceholder = placeholder
result.tintColor = UIColor.lokiGreen()
2019-05-01 05:58:35 +02:00
result.accessibilityIdentifier = "onboarding.accountDetailsStep.userNameTextField"
2019-06-14 07:25:39 +02:00
result.keyboardAppearance = .dark
return result
}()
2019-04-29 06:35:12 +02:00
2019-05-01 05:58:35 +02:00
private var normalizedUserName: String? {
let result = userNameTextField.text!.ows_stripped()
2019-04-29 06:35:12 +02:00
return !result.isEmpty ? result : nil
}
override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = Theme.backgroundColor
view.layoutMargins = .zero
let titleLabel = self.createTitleLabel(text: NSLocalizedString("Create Your Loki Messenger Account", comment: ""))
titleLabel.accessibilityIdentifier = "onboarding.accountDetailsStep.titleLabel"
let topSpacer = UIView.vStretchingSpacer()
2019-04-29 03:34:11 +02:00
let displayNameLabel = createExplanationLabel(text: NSLocalizedString("Enter a name to be shown to your contacts", comment: ""))
displayNameLabel.accessibilityIdentifier = "onboarding.accountDetailsStep.displayNameLabel"
let bottomSpacer = UIView.vStretchingSpacer()
2019-04-30 06:27:39 +02:00
let nextButton = createButton(title: NSLocalizedString("Next", comment: ""), selector: #selector(handleNextButtonPressed))
nextButton.accessibilityIdentifier = "onboarding.accountDetailsStep.nextButton"
let stackView = UIStackView(arrangedSubviews: [
titleLabel,
topSpacer,
displayNameLabel,
UIView.spacer(withHeight: 8),
2019-05-01 05:58:35 +02:00
userNameTextField,
bottomSpacer,
nextButton
2019-04-26 08:13:29 +02:00
])
stackView.axis = .vertical
stackView.alignment = .fill
stackView.layoutMargins = UIEdgeInsets(top: 32, left: 32, bottom: 32, right: 32)
stackView.isLayoutMarginsRelativeArrangement = true
view.addSubview(stackView)
stackView.autoPinWidthToSuperview()
stackView.autoPin(toTopLayoutGuideOf: self, withInset: 0)
autoPinView(toBottomOfViewControllerOrKeyboard: stackView, avoidNotch: true)
topSpacer.autoMatch(.height, to: .height, of: bottomSpacer)
}
2019-05-13 07:21:16 +02:00
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
2019-05-01 05:58:35 +02:00
userNameTextField.becomeFirstResponder()
}
2019-04-30 06:27:39 +02:00
@objc private func handleNextButtonPressed() {
2019-05-01 05:58:35 +02:00
if let normalizedName = normalizedUserName {
2019-04-29 06:35:12 +02:00
guard !OWSProfileManager.shared().isProfileNameTooLong(normalizedName) else {
return OWSAlerts.showErrorAlert(message: NSLocalizedString("PROFILE_VIEW_ERROR_PROFILE_NAME_TOO_LONG", comment: "Error message shown when user tries to update profile with a profile name that is too long"))
}
2019-09-17 08:51:38 +02:00
OWSProfileManager.shared().updateLocalProfileName(normalizedUserName, avatarImage: nil, success: { }, failure: { }) // Try to save the user name but ignore the result
}
TSAccountManager.sharedInstance().didRegister()
UserDefaults.standard.set(true, forKey: "didUpdateForMainnet")
onboardingController.verificationDidComplete(fromView: self)
}
}