0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

RxSwiftでPresenterで発生したエラーをViewで表示させる

Posted at

RxSwiftでエラーをキャッチした後に、
PresenterからViewへエラーを流すパターン

LoginPresenterでログイン処理をした後、LoginViewControllerにErrorを流す。
SignalはDriverとだいたい同じものですが、Driverと違いsubscribeされるときにreplayしません。
ログイン処理などAPIを叩く処理ではreplayを意識する必要がないのでSignalにしています。

DriverとSignalについては以下の解説がわかりやすい

RxCocoa 4 の Signal と Relay のまとめ
https://engineering.mercari.com/blog/entry/2017-12-04-103247/

LoginPresenter

protocol LoginPresenter {
    var showAPIErrorPopupRelay: Signal<Error> { get }
}

final class LoginPresenterImpl: LoginPresenter {
    private let _showAPIErrorPopupRelay = PublishRelay<Error>()
    var showAPIErrorPopupRelay: Signal<Error> {
        return _showAPIErrorPopupRelay.asSignal()
    }
}

LoginViewController

error.localizedDescriptionで、エラーの内容を参照して表示させる。

class LoginViewController: UIViewController {
        presenter.showAPIErrorPopupRelay
            .emit(onNext: { [weak self] error in
                self?.showErrorAlert(message: error.localizedDescription)
            })
            .disposed(by: bag)
}

UIViewControllerのExtension

extension UIViewController {
    func showErrorAlert(message: String, completion: (() -> Void)? = nil) {
        let alert = UIAlertController(title: "Error", message: message, preferredStyle: .alert)
        let action = UIAlertAction(title: "OK", style: .default, handler: nil)
        alert.addAction(action)
        present(alert, animated: true)
    }
}

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?