import Defaults import SwiftUI struct InstancesSettingsView: View { @Default(.instances) private var instances @EnvironmentObject private var accounts @EnvironmentObject private var instancesModel @EnvironmentObject private var subscriptions @EnvironmentObject private var playlists @State private var selectedInstanceID: Instance.ID? @State private var selectedAccount: Account? @State private var presentingInstanceForm = false @State private var savedFormInstanceID: Instance.ID? var body: some View { Group { Section(header: Text("Instances")) { ForEach(instances) { instance in Group { NavigationLink(instance.longDescription) { AccountsSettingsView(instanceID: instance.id) } } #if os(iOS) .swipeActions(edge: .trailing, allowsFullSwipe: false) { removeInstanceButton(instance) } .buttonStyle(.plain) #else .contextMenu { removeInstanceButton(instance) } #endif } addInstanceButton } #if os(iOS) .listStyle(.insetGrouped) #endif } .sheet(isPresented: $presentingInstanceForm) { InstanceFormView(savedInstanceID: $savedFormInstanceID) } } private var addInstanceButton: some View { Button("Add Instance...") { presentingInstanceForm = true } } private func removeInstanceButton(_ instance: Instance) -> some View { Button("Remove", role: .destructive) { if accounts.current?.instance == instance { accounts.setCurrent(nil) } InstancesModel.remove(instance) } } } struct InstancesSettingsView_Previews: PreviewProvider { static var previews: some View { VStack { InstancesSettingsView() } .frame(width: 400, height: 270) .environmentObject(InstancesModel()) } }