mirror of
https://github.com/uber/RIBs.git
synced 2026-06-16 12:54:31 +00:00
91 lines
3.1 KiB
Swift
91 lines
3.1 KiB
Swift
//
|
|
// Copyright (c) 2017. Uber Technologies
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import RIBs
|
|
import RxCocoa
|
|
import RxSwift
|
|
import SnapKit
|
|
import UIKit
|
|
|
|
protocol LoggedOutPresentableListener: AnyObject {
|
|
func login(withPlayer1Name: String?, player2Name: String?)
|
|
}
|
|
|
|
final class LoggedOutViewController: UIViewController, LoggedOutPresentable, LoggedOutViewControllable {
|
|
|
|
weak var listener: LoggedOutPresentableListener?
|
|
|
|
init() {
|
|
super.init(nibName: nil, bundle: nil)
|
|
}
|
|
|
|
required init?(coder aDecoder: NSCoder) {
|
|
fatalError("Method is not supported")
|
|
}
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
view.backgroundColor = UIColor.white
|
|
let playerFields = buildPlayerFields()
|
|
buildLoginButton(withPlayer1Field: playerFields.player1Field, player2Field: playerFields.player2Field)
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
private func buildPlayerFields() -> (player1Field: UITextField, player2Field: UITextField) {
|
|
let player1Field = UITextField()
|
|
player1Field.borderStyle = UITextBorderStyle.line
|
|
view.addSubview(player1Field)
|
|
player1Field.placeholder = "Player 1 name"
|
|
player1Field.snp.makeConstraints { (maker: ConstraintMaker) in
|
|
maker.top.equalTo(self.view).offset(100)
|
|
maker.leading.trailing.equalTo(self.view).inset(40)
|
|
maker.height.equalTo(40)
|
|
}
|
|
|
|
let player2Field = UITextField()
|
|
player2Field.borderStyle = UITextBorderStyle.line
|
|
view.addSubview(player2Field)
|
|
player2Field.placeholder = "Player 2 name"
|
|
player2Field.snp.makeConstraints { (maker: ConstraintMaker) in
|
|
maker.top.equalTo(player1Field.snp.bottom).offset(20)
|
|
maker.left.right.height.equalTo(player1Field)
|
|
}
|
|
|
|
return (player1Field, player2Field)
|
|
}
|
|
|
|
private func buildLoginButton(withPlayer1Field player1Field: UITextField, player2Field: UITextField) {
|
|
let loginButton = UIButton()
|
|
view.addSubview(loginButton)
|
|
loginButton.snp.makeConstraints { (maker: ConstraintMaker) in
|
|
maker.top.equalTo(player2Field.snp.bottom).offset(20)
|
|
maker.left.right.height.equalTo(player1Field)
|
|
}
|
|
loginButton.setTitle("Login", for: .normal)
|
|
loginButton.setTitleColor(UIColor.white, for: .normal)
|
|
loginButton.backgroundColor = UIColor.black
|
|
loginButton.rx.tap
|
|
.subscribe(onNext: { [weak self] in
|
|
self?.listener?.login(withPlayer1Name: player1Field.text, player2Name: player2Field.text)
|
|
})
|
|
.disposed(by: disposeBag)
|
|
}
|
|
|
|
private let disposeBag = DisposeBag()
|
|
}
|