2021-12-27 22:33:27 +08:00
|
|
|
//
|
|
|
|
// KeyItemView.swift
|
|
|
|
// PushDeer
|
|
|
|
//
|
|
|
|
// Created by HEXT on 2021/12/27.
|
|
|
|
//
|
|
|
|
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
/// 每个 Key 项的 View
|
|
|
|
struct KeyItemView: View {
|
2022-02-27 23:02:58 +08:00
|
|
|
@State var keyItem: KeyItem
|
2022-01-15 22:13:23 +08:00
|
|
|
@EnvironmentObject private var store: AppState
|
2021-12-27 22:33:27 +08:00
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
VStack(spacing: 20) {
|
|
|
|
HStack(alignment: .bottom) {
|
|
|
|
Image("avatar2")
|
|
|
|
.resizable()
|
|
|
|
.scaledToFit()
|
|
|
|
.frame(width: 38, height: 38)
|
2022-01-15 22:13:23 +08:00
|
|
|
EditableText(placeholder: NSLocalizedString("输入key名称", comment: ""), value: keyItem.name) { value in
|
2022-02-27 23:02:58 +08:00
|
|
|
if keyItem.name == value {
|
|
|
|
return
|
|
|
|
}
|
2022-01-15 22:13:23 +08:00
|
|
|
Task {
|
|
|
|
// 调用接口修改
|
|
|
|
_ = try await HttpRequest.renameKey(id: keyItem.id, name: value)
|
|
|
|
HToast.showSuccess(NSLocalizedString("已修改key名称", comment: ""))
|
2022-02-27 23:02:58 +08:00
|
|
|
keyItem.name = value
|
2022-01-15 22:13:23 +08:00
|
|
|
// 在此 keyItem 在列表中的下标
|
|
|
|
let index = store.keys.firstIndex { $0.id == keyItem.id }
|
|
|
|
if let index = index {
|
|
|
|
// 更新列表中相应的 keyItem
|
|
|
|
store.keys[index].name = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-27 22:33:27 +08:00
|
|
|
Spacer()
|
|
|
|
Image(systemName: "calendar")
|
|
|
|
.font(.system(size: 14))
|
|
|
|
.foregroundColor(Color.gray)
|
2022-01-10 00:26:29 +08:00
|
|
|
Text(keyItem.createdDateStr)
|
2021-12-27 22:33:27 +08:00
|
|
|
.font(.system(size: 14))
|
|
|
|
.foregroundColor(Color.gray)
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField("Key", text: .constant(keyItem.key) )
|
|
|
|
.font(.system(size: 14))
|
|
|
|
.disabled(true)
|
|
|
|
.padding(12)
|
2022-01-16 00:10:47 +08:00
|
|
|
.overlay(RoundedRectangle(cornerRadius: 4).stroke(Color("borderColor")))
|
2021-12-27 22:33:27 +08:00
|
|
|
.foregroundColor(Color.gray)
|
|
|
|
|
|
|
|
HLine().stroke(Color.gray, style: StrokeStyle(lineWidth: 1, dash: [5]))
|
|
|
|
|
|
|
|
HStack {
|
2022-01-15 22:13:23 +08:00
|
|
|
Button(NSLocalizedString("重置", comment: "重置key的按钮标题")) {
|
2021-12-27 22:33:27 +08:00
|
|
|
print("点击重置")
|
2022-01-10 00:26:29 +08:00
|
|
|
Task {
|
|
|
|
do {
|
|
|
|
_ = try await HttpRequest.regenKey(id: keyItem.id)
|
|
|
|
HttpRequest.loadKeys()
|
2022-01-15 22:13:23 +08:00
|
|
|
HToast.showSuccess(NSLocalizedString("已重置", comment: "已重置key的提示"))
|
2022-01-10 00:26:29 +08:00
|
|
|
} catch {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2021-12-27 22:33:27 +08:00
|
|
|
}
|
|
|
|
.font(.system(size: 20))
|
|
|
|
.frame(width: 90, height: 42)
|
|
|
|
.overlay(RoundedRectangle(cornerRadius: 4).stroke())
|
|
|
|
.foregroundColor(Color.accentColor)
|
|
|
|
|
|
|
|
Spacer()
|
|
|
|
|
2022-01-15 22:13:23 +08:00
|
|
|
Button(NSLocalizedString("复制", comment: "复制按钮的标题")) {
|
2021-12-27 22:33:27 +08:00
|
|
|
print("点击复制")
|
|
|
|
UIPasteboard.general.string = keyItem.key
|
2022-01-15 22:13:23 +08:00
|
|
|
HToast.showSuccess(NSLocalizedString("已复制", comment: ""))
|
2021-12-27 22:33:27 +08:00
|
|
|
}
|
|
|
|
.font(.system(size: 20))
|
|
|
|
.frame(width: 90, height: 42)
|
|
|
|
.foregroundColor(Color.white)
|
2022-01-16 00:10:47 +08:00
|
|
|
.background(Color("BtnBgColor"))
|
2021-12-27 22:33:27 +08:00
|
|
|
.cornerRadius(8)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.padding()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct KeyItemView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2022-01-10 00:26:29 +08:00
|
|
|
KeyItemView(keyItem: KeyItem(id: 1, name: "name", uid: "1", key: "Key", created_at: "1111"))
|
2022-01-15 22:13:23 +08:00
|
|
|
.environmentObject(AppState.shared)
|
2021-12-27 22:33:27 +08:00
|
|
|
}
|
|
|
|
}
|