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

50 lines
1.2 KiB
Swift
Raw Normal View History

2021-12-27 22:33:27 +08:00
//
// DeviceListView.swift
// PushDeer
//
// Created by HEXT on 2021/12/25.
//
import SwiftUI
///
struct DeviceListView: View {
2022-01-04 22:28:18 +08:00
@EnvironmentObject private var store: AppState
2021-12-27 22:33:27 +08:00
var body: some View {
BaseNavigationView(title: "设备") {
ScrollView {
LazyVStack(alignment: .center) {
2022-01-04 22:28:18 +08:00
ForEach(store.devices, id: \.id) { deviceItem in
2021-12-27 22:33:27 +08:00
DeletableView(contentView: {
2022-01-04 22:28:18 +08:00
DeviceItemView(name: deviceItem.name)
2021-12-27 22:33:27 +08:00
}, deleteAction: {
2022-01-04 22:28:18 +08:00
store.devices.removeAll { _deviceItem in
_deviceItem.id == deviceItem.id
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: {
withAnimation(.easeOut) {
2022-01-04 22:28:18 +08:00
// store.devices.insert(DeviceItem(), at: 0)
2021-12-27 22:33:27 +08:00
}
}, label: {
Image(systemName: "plus")
.foregroundColor(Color(UIColor.lightGray))
}))
}
2022-01-04 22:28:18 +08:00
.onAppear {
HttpRequest.getDevices()
}
2021-12-27 22:33:27 +08:00
}
}
struct DeviceView_Previews: PreviewProvider {
static var previews: some View {
DeviceListView()
}
}