Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/15 #22

Merged
merged 9 commits into from
Jul 13, 2020
Merged

Feature/15 #22

merged 9 commits into from
Jul 13, 2020

Conversation

shinya-todaka
Copy link
Contributor

概要

レビュー観点

  • 対応するissue ログイン画面+Firebase #15
  • エラーハンドリングはこれでいいか。
  • userを取ってくるところまでをログインとしているがこれでいいか。

レビューレベル

  • Lv0: まったく見ないでAcceptする
  • Lv1: ぱっとみて違和感がないかチェックしてAcceptする
  • Lv2: 仕様レベルまで理解して、仕様通りに動くかある程度検証してAcceptする
  • Lv3: 実際に環境で動作確認したうえでAcceptする

備考

Copy link
Contributor

@ojun9 ojun9 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

コメントしました!よろしくお願いします!!

self?.presenter.onError(error: err)
}

if let uid = result?.user.uid {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if letでの処理ですが,else以降の処理がないので個人的には

guard let uid = result?.user.uid else { 
    self?.presenter.onError()
    return
}

let userReference = Firestore.firestore().collection("message").document("v1").collection("users").document(uid)

とした方がネストが1つ少なくなってエラー処理もで切ると思うのですがどうでしょうか?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

確かにそちらの方が綺麗ですね、修正します!

if let error = error {
Auth.auth().signIn(withEmail: email, password: password) { [weak self] (result, error) in
if let err = error {
self?.presenter.onError(error: err)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

self?.presenter.onError(error: err)の後にreturnしてあげないと処理が以降に繋がってしまうのではないでしょうか?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

忘れてました、こちらも修正します!

@shinya-todaka
Copy link
Contributor Author

修正しました!

@ojun9 ojun9 merged commit 598b667 into master Jul 13, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants