chore: add Combine style valid logic
This commit is contained in:
parent
8ef5a34a40
commit
a74ac3a41a
|
@ -302,6 +302,15 @@ extension MastodonRegisterViewController {
|
|||
}
|
||||
.store(in: &disposeBag)
|
||||
|
||||
viewModel.isUsernameValid
|
||||
.receive(on: DispatchQueue.main)
|
||||
.sink { [weak self] isValid in
|
||||
guard let self = self else { return }
|
||||
self.setTextFieldValidAppearance(self.usernameTextField, isValid: isValid)
|
||||
}
|
||||
.store(in: &disposeBag)
|
||||
|
||||
|
||||
viewModel.error
|
||||
.compactMap { $0 }
|
||||
.receive(on: DispatchQueue.main)
|
||||
|
@ -317,6 +326,7 @@ extension MastodonRegisterViewController {
|
|||
)
|
||||
}
|
||||
.store(in: &disposeBag)
|
||||
|
||||
NotificationCenter.default
|
||||
.publisher(for: UITextField.textDidChangeNotification, object: passwordTextField)
|
||||
.receive(on: DispatchQueue.main)
|
||||
|
@ -347,6 +357,10 @@ extension MastodonRegisterViewController: UITextFieldDelegate {
|
|||
}
|
||||
|
||||
func textFieldDidEndEditing(_ textField: UITextField) {
|
||||
switch textField {
|
||||
case usernameTextField:
|
||||
viewModel.username.value = textField.text
|
||||
default:
|
||||
let valid = validateTextField(textField: textField)
|
||||
if valid {
|
||||
if validateAllTextField() {
|
||||
|
@ -354,6 +368,7 @@ extension MastodonRegisterViewController: UITextFieldDelegate {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func showShadowWithColor(color: UIColor, textField: UITextField) {
|
||||
// To apply Shadow
|
||||
|
@ -361,6 +376,8 @@ extension MastodonRegisterViewController: UITextFieldDelegate {
|
|||
textField.layer.shadowRadius = 2.0
|
||||
textField.layer.shadowOffset = CGSize.zero // Use any CGSize
|
||||
textField.layer.shadowColor = color.cgColor
|
||||
textField.layer.shadowPath = UIBezierPath(roundedRect: textField.bounds, byRoundingCorners: .allCorners, cornerRadii: CGSize(width: 2.0, height: 2.0)).cgPath
|
||||
|
||||
}
|
||||
func validateUsername() -> Bool {
|
||||
if usernameTextField.text?.count ?? 0 > 0 {
|
||||
|
@ -400,9 +417,9 @@ extension MastodonRegisterViewController: UITextFieldDelegate {
|
|||
func validateTextField(textField: UITextField) -> Bool {
|
||||
signUpButton.isEnabled = false
|
||||
var isvalid = false
|
||||
if textField == usernameTextField {
|
||||
isvalid = validateUsername()
|
||||
}
|
||||
// if textField == usernameTextField {
|
||||
// isvalid = validateUsername()
|
||||
// }
|
||||
if textField == displayNameTextField {
|
||||
isvalid = validateDisplayName()
|
||||
}
|
||||
|
@ -423,6 +440,21 @@ extension MastodonRegisterViewController: UITextFieldDelegate {
|
|||
func validateAllTextField() -> Bool {
|
||||
return validateUsername() && validateDisplayName() && validateEmail() && validatePassword()
|
||||
}
|
||||
|
||||
private func setTextFieldValidAppearance(_ textField: UITextField, isValid: Bool?) {
|
||||
guard let isValid = isValid else {
|
||||
showShadowWithColor(color: .clear, textField: textField)
|
||||
return
|
||||
}
|
||||
|
||||
if isValid {
|
||||
showShadowWithColor(color: Asset.Colors.TextField.successGreen.color, textField: textField)
|
||||
} else {
|
||||
textField.shake()
|
||||
showShadowWithColor(color: Asset.Colors.lightDangerRed.color, textField: textField)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
extension MastodonRegisterViewController {
|
||||
|
|
|
@ -11,19 +11,34 @@ import MastodonSDK
|
|||
import UIKit
|
||||
|
||||
final class MastodonRegisterViewModel {
|
||||
|
||||
var disposeBag = Set<AnyCancellable>()
|
||||
|
||||
// input
|
||||
let domain: String
|
||||
let applicationToken: Mastodon.Entity.Token
|
||||
let isRegistering = CurrentValueSubject<Bool, Never>(false)
|
||||
let username = CurrentValueSubject<String?, Never>(nil)
|
||||
|
||||
// output
|
||||
let applicationAuthorization: Mastodon.API.OAuth.Authorization
|
||||
let isUsernameValid = CurrentValueSubject<Bool?, Never>(nil)
|
||||
let error = CurrentValueSubject<Error?, Never>(nil)
|
||||
|
||||
init(domain: String, applicationToken: Mastodon.Entity.Token) {
|
||||
self.domain = domain
|
||||
self.applicationToken = applicationToken
|
||||
self.applicationAuthorization = Mastodon.API.OAuth.Authorization(accessToken: applicationToken.accessToken)
|
||||
|
||||
username
|
||||
.map { username in
|
||||
guard let username = username else {
|
||||
return nil
|
||||
}
|
||||
return !username.isEmpty
|
||||
}
|
||||
.assign(to: \.value, on: isUsernameValid)
|
||||
.store(in: &disposeBag)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue