mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-21 00:48:36 +03:00
61 lines
2.2 KiB
Swift
61 lines
2.2 KiB
Swift
import SwiftUI
|
|
|
|
protocol ConfigurationErrorsViewModel: ObservableObject {
|
|
var errors: [String] { get set }
|
|
}
|
|
|
|
struct ConfigurationErrorsView<ViewModel: ConfigurationErrorsViewModel>: View {
|
|
@ObservedObject var model: ViewModel
|
|
|
|
var body: some View {
|
|
VStack {
|
|
HStack {
|
|
Image(systemName: "exclamationmark.triangle.fill")
|
|
.foregroundColor(.yellow)
|
|
.font(.system(size: 52))
|
|
.padding()
|
|
.frame(alignment: .center)
|
|
|
|
Text("""
|
|
^[\(model.errors.count) error(s) were](inflect: true) found while loading the configuration. \
|
|
Please review the errors below and reload your configuration or ignore the erroneous lines.
|
|
""")
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
.padding()
|
|
}
|
|
|
|
GeometryReader { geo in
|
|
ScrollView {
|
|
VStack(alignment: .leading) {
|
|
ForEach(model.errors, id: \.self) { error in
|
|
Text(error)
|
|
.lineLimit(nil)
|
|
.font(.system(size: 12).monospaced())
|
|
.textSelection(.enabled)
|
|
.frame(maxWidth: .infinity, alignment: .topLeading)
|
|
}
|
|
|
|
Spacer()
|
|
}
|
|
.padding(.all)
|
|
.frame(minHeight: geo.size.height)
|
|
.background(Color(.controlBackgroundColor))
|
|
}
|
|
}
|
|
|
|
HStack {
|
|
Spacer()
|
|
Button("Ignore") { model.errors = [] }
|
|
Button("Reload Configuration") { reloadConfig() }
|
|
}
|
|
.padding([.bottom, .trailing])
|
|
}
|
|
.frame(minWidth: 480, maxWidth: 960, minHeight: 270)
|
|
}
|
|
|
|
private func reloadConfig() {
|
|
guard let delegate = NSApplication.shared.delegate as? AppDelegate else { return }
|
|
delegate.reloadConfig(nil)
|
|
}
|
|
}
|