pushdeer/ios/PushDeer-iOS/PushDeer/View/LoginView.swift

64 lines
1.4 KiB
Swift
Raw Normal View History

2021-12-27 22:33:27 +08:00
//
// LoginView.swift
// PushDeer
//
// Created by HEXT on 2021/12/25.
//
import SwiftUI
import AuthenticationServices
///
struct LoginView: View {
@EnvironmentObject private var store: AppState
@State private var showLoading = false
2021-12-27 22:33:27 +08:00
var body: some View {
VStack{
Spacer()
Image("logo.with.space")
.resizable()
.scaledToFit()
if Env.isSelfHosted {
Button("重置API endpoint") {
store.api_endpoint = ""
}
}
2021-12-27 22:33:27 +08:00
Spacer()
if showLoading {
ProgressView()
.scaleEffect(1.5)
.frame(height: 64)
} else {
AppleSignInButton(
onRequest: { request in
request.requestedScopes = [.fullName, .email]
},
onCompletion: { result in
do {
showLoading = true
store.token = try await store.appleIdLogin(result).token
//
} catch {
showLoading = false
HToast.showError(error.localizedDescription)
2022-01-04 22:28:18 +08:00
}
}
)
.overlay(RoundedRectangle(cornerRadius: 6).stroke(Color.white))
.frame(maxWidth: 375, minHeight: 64, maxHeight: 64)
.padding()
}
2021-12-27 22:33:27 +08:00
Spacer()
}
.padding()
}
}
struct LoginView_Previews: PreviewProvider {
static var previews: some View {
LoginView()
}
}