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

65 lines
1.6 KiB
Swift
Raw Normal View History

2021-12-27 22:33:27 +08:00
//
// KeyListView.swift
// PushDeer
//
// Created by HEXT on 2021/12/25.
//
import SwiftUI
/// Key
struct KeyListView: View {
@EnvironmentObject private var store: AppState
2021-12-27 22:33:27 +08:00
var body: some View {
BaseNavigationView(title: "Key") {
ScrollView {
LazyVStack(alignment: .center) {
ForEach(store.keys.reversed()) { keyItem in
2021-12-27 22:33:27 +08:00
DeletableView(contentView: {
CardView {
KeyItemView(keyItem: keyItem)
}
}, deleteAction: {
store.keys.removeAll { _keyItem in
2021-12-27 22:33:27 +08:00
keyItem.id == _keyItem.id
}
HToast.showSuccess("已删除")
Task {
do {
_ = try await HttpRequest.rmKey(id: keyItem.id)
} catch {
}
}
2021-12-27 22:33:27 +08:00
})
.padding(EdgeInsets(top: 18, leading: 26, bottom: 0, trailing: 24))
}
2022-01-04 22:28:18 +08:00
Spacer(minLength: 30)
2021-12-27 22:33:27 +08:00
}
}
.navigationBarItems(trailing: Button(action: {
Task {
let keys = try await HttpRequest.genKey().keys
withAnimation(.easeOut) {
store.keys = keys
}
HToast.showSuccess("已添加新Key")
2021-12-27 22:33:27 +08:00
}
}, label: {
Image(systemName: "plus")
.foregroundColor(Color(UIColor.lightGray))
}))
}
.onAppear {
HttpRequest.loadKeys()
}
2021-12-27 22:33:27 +08:00
}
}
struct KeyView_Previews: PreviewProvider {
static var previews: some View {
KeyListView().environmentObject(AppState.shared)
2021-12-27 22:33:27 +08:00
}
}