mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
Add account error alerts
This commit is contained in:
parent
aac760a870
commit
7636e78df4
@ -66,8 +66,12 @@ final class InvidiousAPI: Service, ObservableObject, VideosAPI {
|
||||
.onSuccess { _ in
|
||||
self.signedIn = true
|
||||
}
|
||||
.onFailure { _ in
|
||||
.onFailure { requestError in
|
||||
self.signedIn = false
|
||||
NavigationModel.shared.presentAlert(
|
||||
title: "Could not connect with your account",
|
||||
message: "\(requestError.httpStatusCode ?? -1) - \(requestError.userMessage)\nIf this issue persists, try removing and adding your account again in Settings."
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -121,6 +121,13 @@ final class PipedAPI: Service, ObservableObject, VideosAPI {
|
||||
)
|
||||
.onSuccess { response in
|
||||
self.account.token = response.json.dictionaryValue["token"]?.string ?? ""
|
||||
if let error = response.json.dictionaryValue["error"]?.string {
|
||||
NavigationModel.shared.presentAlert(
|
||||
title: "Could not connect with your account",
|
||||
message: error
|
||||
)
|
||||
}
|
||||
|
||||
self.configure()
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,8 @@ import Foundation
|
||||
import SwiftUI
|
||||
|
||||
final class NavigationModel: ObservableObject {
|
||||
static var shared: NavigationModel!
|
||||
|
||||
enum TabSelection: Hashable {
|
||||
case favorites
|
||||
case subscriptions
|
||||
|
@ -226,6 +226,8 @@ struct YatteeApp: App {
|
||||
|
||||
navigation.tabSelection = section ?? .search
|
||||
|
||||
NavigationModel.shared = navigation
|
||||
|
||||
subscriptions.load()
|
||||
playlists.load()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user