yattee/Shared/Settings/AccountsNavigationLink.swift
2022-12-05 10:13:19 +01:00

36 lines
911 B
Swift

import SwiftUI
struct AccountsNavigationLink: View {
@ObservedObject private var accounts = AccountsModel.shared
var instance: Instance
var body: some View {
NavigationLink(instance.longDescription) {
InstanceSettings(instance: instance)
}
.buttonStyle(.plain)
.contextMenu {
removeInstanceButton(instance)
#if os(tvOS)
Button("Cancel", role: .cancel) {}
#endif
}
}
private func removeInstanceButton(_ instance: Instance) -> some View {
Button {
removeAction(instance)
} label: {
Label("Remove", systemImage: "trash")
}
}
private func removeAction(_ instance: Instance) {
if accounts.current?.instance == instance {
accounts.setCurrent(nil)
}
InstancesModel.shared.remove(instance)
}
}