-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathRunInTerminalToolView.swift
More file actions
173 lines (158 loc) · 6.43 KB
/
RunInTerminalToolView.swift
File metadata and controls
173 lines (158 loc) · 6.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
import SwiftUI
import XcodeInspector
import ConversationServiceProvider
import ComposableArchitecture
import Terminal
import SharedUIComponents
struct RunInTerminalToolView: View {
let tool: AgentToolCall
let command: String?
let explanation: String?
let isBackground: Bool?
let chat: StoreOf<Chat>
private var title: String = "Run command in terminal"
@AppStorage(\.codeBackgroundColorLight) var codeBackgroundColorLight
@AppStorage(\.codeForegroundColorLight) var codeForegroundColorLight
@AppStorage(\.codeBackgroundColorDark) var codeBackgroundColorDark
@AppStorage(\.codeForegroundColorDark) var codeForegroundColorDark
@AppStorage(\.chatFontSize) var chatFontSize
@Environment(\.colorScheme) var colorScheme
init(tool: AgentToolCall, chat: StoreOf<Chat>) {
self.tool = tool
self.chat = chat
if let input = tool.invokeParams?.input as? [String: AnyCodable] {
self.command = input["command"]?.value as? String
self.explanation = input["explanation"]?.value as? String
self.isBackground = input["isBackground"]?.value as? Bool
self.title = (isBackground != nil && isBackground!) ? "Run command in background terminal" : "Run command in terminal"
} else {
self.command = nil
self.explanation = nil
self.isBackground = nil
}
}
var terminalSession: TerminalSession? {
return TerminalSessionManager.shared.getSession(for: tool.id)
}
var statusIcon: some View {
Group {
switch tool.status {
case .running:
ProgressView()
.controlSize(.small)
.scaleEffect(0.7)
case .completed:
Image(systemName: "checkmark")
.foregroundColor(.green.opacity(0.5))
case .error:
Image(systemName: "xmark.circle")
.foregroundColor(.red.opacity(0.5))
case .cancelled:
Image(systemName: "slash.circle")
.foregroundColor(.gray.opacity(0.5))
case .waitForConfirmation:
EmptyView()
case .accepted:
EmptyView()
}
}
}
var body: some View {
WithPerceptionTracking {
if tool.status == .waitForConfirmation || terminalSession != nil {
VStack {
HStack {
Image("Terminal")
.resizable()
.scaledToFit()
.scaledFrame(width: 16, height: 16)
Text(self.title)
.scaledFont(size: chatFontSize, weight: .semibold)
.foregroundStyle(.primary)
.background(Color.clear)
.frame(maxWidth: .infinity, alignment: .leading)
}
toolView
}
.scaledPadding(8)
.cornerRadius(8)
.overlay(
RoundedRectangle(cornerRadius: 8)
.stroke(Color.gray.opacity(0.2), lineWidth: 1)
)
} else {
toolView
}
}
}
var codeBackgroundColor: Color {
if colorScheme == .light, let color = codeBackgroundColorLight.value {
return color.swiftUIColor
} else if let color = codeBackgroundColorDark.value {
return color.swiftUIColor
}
return Color(nsColor: .textBackgroundColor).opacity(0.7)
}
var codeForegroundColor: Color {
if colorScheme == .light, let color = codeForegroundColorLight.value {
return color.swiftUIColor
} else if let color = codeForegroundColorDark.value {
return color.swiftUIColor
}
return Color(nsColor: .textColor)
}
var toolView: some View {
WithPerceptionTracking {
VStack {
if command != nil {
HStack(spacing: 4) {
statusIcon
.scaledFrame(width: 16, height: 16)
Text(command!)
.lineLimit(nil)
.textSelection(.enabled)
.scaledFont(size: chatFontSize, design: .monospaced)
.scaledPadding(8)
.frame(maxWidth: .infinity, alignment: .leading)
.fixedSize(horizontal: false, vertical: true)
.foregroundStyle(codeForegroundColor)
.background(codeBackgroundColor)
.clipShape(RoundedRectangle(cornerRadius: 6))
.overlay {
RoundedRectangle(cornerRadius: 6).stroke(Color.primary.opacity(0.05), lineWidth: 1)
}
}
} else {
Text("Invalid parameter in the toolcall for runInTerminal")
}
if let terminalSession = terminalSession {
XTermView(
terminalSession: terminalSession,
onTerminalInput: terminalSession.handleTerminalInput
)
.scaledFrame(minHeight: 200, maxHeight: 400)
} else if tool.status == .waitForConfirmation {
ThemedMarkdownText(text: explanation ?? "", chat: chat)
.frame(maxWidth: .infinity, alignment: .leading)
HStack {
Button(action: {
chat.send(.toolCallCancelled(tool.id))
}) {
Text("Skip")
.scaledFont(.body)
}
Button(action: {
chat.send(.toolCallAccepted(tool.id))
}) {
Text("Allow")
.scaledFont(.body)
}
.buttonStyle(BorderedProminentButtonStyle())
}
.frame(maxWidth: .infinity, alignment: .leading)
.scaledPadding(.top, 4)
}
}
}
}
}