2021-09-25 08:18:22 +00:00
|
|
|
import Defaults
|
|
|
|
import SwiftUI
|
|
|
|
|
2021-10-23 11:51:02 +00:00
|
|
|
struct InstancesSettings: View {
|
2021-09-25 08:18:22 +00:00
|
|
|
@Default(.instances) private var instances
|
|
|
|
|
2021-10-17 23:06:00 +00:00
|
|
|
@EnvironmentObject<AccountsModel> private var accounts
|
2021-09-25 08:18:22 +00:00
|
|
|
|
|
|
|
@State private var selectedInstanceID: Instance.ID?
|
2021-10-20 22:21:50 +00:00
|
|
|
@State private var selectedAccount: Account?
|
2021-09-25 08:18:22 +00:00
|
|
|
|
|
|
|
@State private var presentingInstanceForm = false
|
|
|
|
@State private var savedFormInstanceID: Instance.ID?
|
|
|
|
|
|
|
|
var body: some View {
|
|
|
|
Group {
|
2021-10-19 21:27:04 +00:00
|
|
|
Section(header: Text("Instances")) {
|
2021-09-29 10:14:43 +00:00
|
|
|
ForEach(instances) { instance in
|
2021-10-16 22:48:58 +00:00
|
|
|
Group {
|
|
|
|
NavigationLink(instance.longDescription) {
|
2021-10-23 11:51:02 +00:00
|
|
|
AccountsSettings(instanceID: instance.id)
|
2021-10-16 22:48:58 +00:00
|
|
|
}
|
2021-09-29 10:14:43 +00:00
|
|
|
}
|
|
|
|
#if os(iOS)
|
2021-09-25 08:18:22 +00:00
|
|
|
.swipeActions(edge: .trailing, allowsFullSwipe: false) {
|
2021-09-29 10:14:43 +00:00
|
|
|
removeInstanceButton(instance)
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
.buttonStyle(.plain)
|
2021-09-29 10:14:43 +00:00
|
|
|
#else
|
2021-09-28 18:06:05 +00:00
|
|
|
.contextMenu {
|
2021-09-29 10:14:43 +00:00
|
|
|
removeInstanceButton(instance)
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
2021-09-29 10:14:43 +00:00
|
|
|
#endif
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
|
2021-09-29 10:14:43 +00:00
|
|
|
addInstanceButton
|
|
|
|
}
|
|
|
|
#if os(iOS)
|
|
|
|
.listStyle(.insetGrouped)
|
2021-09-25 08:18:22 +00:00
|
|
|
#endif
|
|
|
|
}
|
2021-09-29 10:14:43 +00:00
|
|
|
.sheet(isPresented: $presentingInstanceForm) {
|
2021-10-23 11:51:02 +00:00
|
|
|
InstanceForm(savedInstanceID: $savedFormInstanceID)
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-28 18:06:05 +00:00
|
|
|
private var addInstanceButton: some View {
|
|
|
|
Button("Add Instance...") {
|
|
|
|
presentingInstanceForm = true
|
2021-09-26 22:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-29 10:14:43 +00:00
|
|
|
private func removeInstanceButton(_ instance: Instance) -> some View {
|
|
|
|
Button("Remove", role: .destructive) {
|
2021-10-19 21:27:04 +00:00
|
|
|
if accounts.current?.instance == instance {
|
|
|
|
accounts.setCurrent(nil)
|
2021-10-17 23:06:00 +00:00
|
|
|
}
|
2021-10-19 21:27:04 +00:00
|
|
|
InstancesModel.remove(instance)
|
2021-09-29 10:14:43 +00:00
|
|
|
}
|
2021-09-26 22:03:33 +00:00
|
|
|
}
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct InstancesSettingsView_Previews: PreviewProvider {
|
|
|
|
static var previews: some View {
|
2021-09-26 22:03:33 +00:00
|
|
|
VStack {
|
2021-10-23 11:51:02 +00:00
|
|
|
InstancesSettings()
|
2021-09-26 22:03:33 +00:00
|
|
|
}
|
|
|
|
.frame(width: 400, height: 270)
|
2021-09-25 08:18:22 +00:00
|
|
|
}
|
|
|
|
}
|