2021-12-27 22:33:27 +08:00
|
|
|
//
|
|
|
|
// KeyListView.swift
|
|
|
|
// PushDeer
|
|
|
|
//
|
|
|
|
// Created by HEXT on 2021/12/25.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
/// Key 界面
|
|
|
|
struct KeyListView: View {
|
2022-01-10 00:26:29 +08:00
|
|
|
@EnvironmentObject private var store: AppState
|
2021-12-27 22:33:27 +08:00
|
|
|
var body: some View {
|
|
|
|
BaseNavigationView(title: "Key") {
|
|
|
|
ScrollView {
|
|
|
|
LazyVStack(alignment: .center) {
|
2022-01-10 00:26:29 +08:00
|
|
|
ForEach(store.keys.reversed()) { keyItem in
|
2021-12-27 22:33:27 +08:00
|
|
|
DeletableView(contentView: {
|
|
|
|
CardView {
|
|
|
|
KeyItemView(keyItem: keyItem)
|
|
|
|
}
|
|
|
|
|
|
|
|
}, deleteAction: {
|
2022-01-10 00:26:29 +08:00
|
|
|
store.keys.removeAll { _keyItem in
|
2021-12-27 22:33:27 +08:00
|
|
|
keyItem.id == _keyItem.id
|
|
|
|
}
|
2022-01-10 00:26:29 +08:00
|
|
|
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: {
|
2022-01-10 00:26:29 +08:00
|
|
|
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))
|
|
|
|
}))
|
|
|
|
}
|
2022-01-10 00:26:29 +08:00
|
|
|
.onAppear {
|
|
|
|
HttpRequest.loadKeys()
|
|
|
|
}
|
2021-12-27 22:33:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct KeyView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2022-01-10 00:26:29 +08:00
|
|
|
KeyListView().environmentObject(AppState.shared)
|
2021-12-27 22:33:27 +08:00
|
|
|
}
|
|
|
|
}
|