mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-20 00:18:53 +03:00
96 lines
3.1 KiB
Swift
96 lines
3.1 KiB
Swift
import SwiftUI
|
|
import GhosttyKit
|
|
|
|
protocol TerminalViewDelegate: AnyObject {
|
|
/// Called when the currently focused surface changed. This can be nil.
|
|
func focusedSurfaceDidChange(to: Ghostty.SurfaceView?)
|
|
|
|
/// The title of the terminal should change.
|
|
func titleDidChange(to: String)
|
|
|
|
/// The cell size changed.
|
|
func cellSizeDidChange(to: NSSize)
|
|
|
|
/// The last surface closed so there are no active surfaces.
|
|
func lastSurfaceDidClose()
|
|
}
|
|
|
|
extension TerminalViewDelegate {
|
|
func focusedSurfaceDidChange(to: Ghostty.SurfaceView?) {}
|
|
func titleDidChange(to: String) {}
|
|
func cellSizeDidChange(to: NSSize) {}
|
|
func lastSurfaceDidClose() {}
|
|
}
|
|
|
|
struct TerminalView: View {
|
|
@ObservedObject var ghostty: Ghostty.AppState
|
|
|
|
// An optional delegate to receive information about terminal changes.
|
|
weak var delegate: TerminalViewDelegate? = nil
|
|
|
|
// This seems like a crutch after switching from SwiftUI to AppKit lifecycle.
|
|
@FocusState private var focused: Bool
|
|
|
|
// Various state values sent back up from the currently focused terminals.
|
|
@FocusedValue(\.ghosttySurfaceView) private var focusedSurface
|
|
@FocusedValue(\.ghosttySurfaceTitle) private var surfaceTitle
|
|
@FocusedValue(\.ghosttySurfaceZoomed) private var zoomedSplit
|
|
@FocusedValue(\.ghosttySurfaceCellSize) private var cellSize
|
|
|
|
// The title for our window
|
|
private var title: String {
|
|
var title = "👻"
|
|
|
|
if let surfaceTitle = surfaceTitle {
|
|
if (surfaceTitle.count > 0) {
|
|
title = surfaceTitle
|
|
}
|
|
}
|
|
|
|
if let zoomedSplit = zoomedSplit {
|
|
if zoomedSplit {
|
|
title = "🔍 " + title
|
|
}
|
|
}
|
|
|
|
return title
|
|
}
|
|
|
|
var body: some View {
|
|
switch ghostty.readiness {
|
|
case .loading:
|
|
Text("Loading")
|
|
case .error:
|
|
ErrorView()
|
|
case .ready:
|
|
VStack(spacing: 0) {
|
|
// If we're running in debug mode we show a warning so that users
|
|
// know that performance will be degraded.
|
|
if (ghostty.info.mode == GHOSTTY_BUILD_MODE_DEBUG) {
|
|
DebugBuildWarningView()
|
|
}
|
|
|
|
Ghostty.TerminalSplit(onClose: onClose, baseConfig: nil)
|
|
.ghosttyApp(ghostty.app!)
|
|
.ghosttyConfig(ghostty.config!)
|
|
.focused($focused)
|
|
.onAppear { self.focused = true }
|
|
.onChange(of: focusedSurface) { newValue in
|
|
self.delegate?.focusedSurfaceDidChange(to: newValue)
|
|
}
|
|
.onChange(of: title) { newValue in
|
|
self.delegate?.titleDidChange(to: newValue)
|
|
}
|
|
.onChange(of: cellSize) { newValue in
|
|
guard let size = newValue else { return }
|
|
self.delegate?.cellSizeDidChange(to: size)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func onClose() {
|
|
self.delegate?.lastSurfaceDidClose()
|
|
}
|
|
}
|