Skip to content

Commit

Permalink
✅ Chore: 마이페이지탭 엑세스토큰 갱신 처리 (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-jungbin committed Oct 11, 2022
1 parent 98ab550 commit 06c1529
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ extension MypageMainVC {
}
case .requestErr(let res):
if let message = res as? String {
print(message)
debugPrint(message)
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
} else if res is Bool {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ extension MypageMyReviewVC {
self.activityIndicator.stopAnimating()
case .requestErr(let res):
if let message = res as? String {
print(message)
debugPrint(message)
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
self.activityIndicator.stopAnimating()
} else if res is Bool {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ extension MypagePostListVC {
}
case .requestErr(let res):
if let message = res as? String {
print(message)
debugPrint(message)
self.activityIndicator.stopAnimating()
} else if res is Bool {
self.updateAccessToken { _ in
Expand All @@ -230,7 +230,7 @@ extension MypagePostListVC {
}
case .requestErr(let res):
if let message = res as? String {
print(message)
debugPrint(message)
self.activityIndicator.stopAnimating()
} else if res is Bool {
self.updateAccessToken { _ in
Expand Down Expand Up @@ -261,7 +261,7 @@ extension MypagePostListVC {
}
case .requestErr(let res):
if let message = res as? String {
print(message)
debugPrint(message)
self.activityIndicator.stopAnimating()
} else if res is Bool {
self.updateAccessToken { _ in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,15 @@ extension MypageUserVC {
self.userInfo = data
self.configureUI()
}
case .requestErr(let msg):
if let message = msg as? String {
print(message)
case .requestErr(let res):
if let message = res as? String {
debugPrint(message)
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
} else if res is Bool {
self.updateAccessToken { _ in
self.getUserInfo()
}
}
default:
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
Expand Down Expand Up @@ -226,9 +232,15 @@ extension MypageUserVC {
self.sortBtn.setImage(UIImage(named: sort == .recent ? "btnArray" : "property1Variant3"), for: .normal)
}
}
case .requestErr(let msg):
if let message = msg as? String {
print(message)
case .requestErr(let res):
if let message = res as? String {
debugPrint(message)
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
} else if res is Bool {
self.updateAccessToken { _ in
self.getUserPersonalQuestionList(sort: sort)
}
}
default:
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
Expand All @@ -253,7 +265,7 @@ extension MypageUserVC {
}
case .requestErr(let res):
if let message = res as? String {
print(message)
debugPrint(message)
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
} else if res is Bool {
Expand All @@ -279,13 +291,12 @@ extension MypageUserVC {
}
case .requestErr(let res):
if let message = res as? String {
print(message)
debugPrint(message)
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
} else if res is Bool {
self.updateAccessToken { _ in
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
self.requestGetDetailQuestionData(chatPostID: chatPostID)
}
}
default:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,16 @@ extension MailCompleteVC {
case .success:
self.activityIndicator.stopAnimating()
self.makeAlert(title: "메일이 재전송되었습니다.")
case .requestErr:
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
case .requestErr(let res):
if let message = res as? String {
debugPrint(message)
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
} else if res is Bool {
self.updateAccessToken { _ in
self.resendEmail(email: email)
}
}
default:
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
Expand All @@ -96,9 +103,16 @@ extension MailCompleteVC {
case .success:
self.activityIndicator.stopAnimating()
self.makeAlert(title: "메일이 재전송되었습니다.")
case .requestErr:
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
case .requestErr(let res):
if let message = res as? String {
debugPrint(message)
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
} else if res is Bool {
self.updateAccessToken { _ in
self.resendEmail(email: email)
}
}
default:
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ extension SettingVC {
self.navigator?.instantiateVC(destinationViewControllerType: SignInVC.self, useStoryboard: true, storyboardName: "SignInSB", naviType: .present, modalPresentationStyle: .fullScreen) { destination in }
case .requestErr(let res):
if let message = res as? String {
print(message)
debugPrint(message)
self.activityIndicator.stopAnimating()
self.makeAlert(title: "네트워크 오류로 인해\n데이터를 불러올 수 없습니다.\n다시 시도해 주세요.")
} else if res is Bool {
Expand Down

0 comments on commit 06c1529

Please sign in to comment.