forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeBlockSuggestionPanel.swift
More file actions
318 lines (291 loc) · 11.5 KB
/
CodeBlockSuggestionPanel.swift
File metadata and controls
318 lines (291 loc) · 11.5 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
import Combine
import CommandHandler
import Dependencies
import Perception
import SharedUIComponents
import SuggestionBasic
import SwiftUI
import XcodeInspector
public struct PresentingCodeSuggestion: Equatable {
public var code: String
public var language: String
public var startLineIndex: Int
public var suggestionCount: Int
public var currentSuggestionIndex: Int
public init(
code: String,
language: String,
startLineIndex: Int,
suggestionCount: Int,
currentSuggestionIndex: Int
) {
self.code = code
self.language = language
self.startLineIndex = startLineIndex
self.suggestionCount = suggestionCount
self.currentSuggestionIndex = currentSuggestionIndex
}
}
struct CodeBlockSuggestionPanel: View {
let suggestion: PresentingCodeSuggestion
@Environment(TextCursorTracker.self) var textCursorTracker
@Environment(\.colorScheme) var colorScheme
@AppStorage(\.suggestionCodeFont) var codeFont
@AppStorage(\.suggestionDisplayCompactMode) var suggestionDisplayCompactMode
@AppStorage(\.suggestionPresentationMode) var suggestionPresentationMode
@AppStorage(\.hideCommonPrecedingSpacesInSuggestion) var hideCommonPrecedingSpaces
@AppStorage(\.syncSuggestionHighlightTheme) var syncHighlightTheme
@AppStorage(\.codeForegroundColorLight) var codeForegroundColorLight
@AppStorage(\.codeForegroundColorDark) var codeForegroundColorDark
@AppStorage(\.codeBackgroundColorLight) var codeBackgroundColorLight
@AppStorage(\.codeBackgroundColorDark) var codeBackgroundColorDark
struct ToolBar: View {
@Dependency(\.commandHandler) var commandHandler
let suggestion: PresentingCodeSuggestion
var body: some View {
WithPerceptionTracking {
HStack {
Button(action: {
Task {
await commandHandler.presentPreviousSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
}) {
Image(systemName: "chevron.left")
}.buttonStyle(.plain)
Text(
"\(suggestion.currentSuggestionIndex + 1) / \(suggestion.suggestionCount)"
)
.monospacedDigit()
Button(action: {
Task {
await commandHandler.presentNextSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
}) {
Image(systemName: "chevron.right")
}.buttonStyle(.plain)
Spacer()
Button(action: {
Task {
await commandHandler.dismissSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
}) {
Text("Dismiss").foregroundStyle(.tertiary).padding(.trailing, 4)
}.buttonStyle(.plain)
Button(action: {
Task {
await commandHandler.rejectSuggestions()
NSWorkspace.activatePreviousActiveXcode()
}
}) {
Text("Reject")
}.buttonStyle(CommandButtonStyle(color: .gray))
Button(action: {
Task {
await commandHandler.acceptSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
}) {
Text("Accept")
}.buttonStyle(CommandButtonStyle(color: .accentColor))
}
.padding()
.foregroundColor(.secondary)
.background(.regularMaterial)
}
}
}
struct CompactToolBar: View {
@Dependency(\.commandHandler) var commandHandler
let suggestion: PresentingCodeSuggestion
var body: some View {
WithPerceptionTracking {
HStack {
Button(action: {
Task {
await commandHandler.presentPreviousSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
}) {
Image(systemName: "chevron.left")
}.buttonStyle(.plain)
Text(
"\(suggestion.currentSuggestionIndex + 1) / \(suggestion.suggestionCount)"
)
.monospacedDigit()
Button(action: {
Task {
await commandHandler.presentNextSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
}) {
Image(systemName: "chevron.right")
}.buttonStyle(.plain)
Spacer()
Button(action: {
Task {
await commandHandler.dismissSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
}) {
Image(systemName: "xmark")
}.buttonStyle(.plain)
}
.padding(4)
.font(.caption)
.foregroundColor(.secondary)
.background(.regularMaterial)
}
}
}
var body: some View {
WithPerceptionTracking {
VStack(spacing: 0) {
CustomScrollView {
WithPerceptionTracking {
let diffResult = Self.diff(
suggestion: suggestion,
textCursorTracker: textCursorTracker
)
AsyncCodeBlock(
code: suggestion.code,
language: suggestion.language,
startLineIndex: suggestion.startLineIndex,
scenario: "suggestion",
font: codeFont.value.nsFont,
droppingLeadingSpaces: hideCommonPrecedingSpaces,
proposedForegroundColor: {
if syncHighlightTheme {
if colorScheme == .light,
let color = codeForegroundColorLight.value?.swiftUIColor
{
return color
} else if let color = codeForegroundColorDark.value?
.swiftUIColor
{
return color
}
}
return nil
}(),
dimmedCharacterCount: 0
)
.frame(maxWidth: .infinity)
.background({ () -> Color in
if syncHighlightTheme {
if colorScheme == .light,
let color = codeBackgroundColorLight.value?.swiftUIColor
{
return color
} else if let color = codeBackgroundColorDark.value?.swiftUIColor {
return color
}
}
return Color.contentBackground
}())
}
}
if suggestionDisplayCompactMode {
CompactToolBar(suggestion: suggestion)
} else {
ToolBar(suggestion: suggestion)
}
}
.xcodeStyleFrame(cornerRadius: {
switch suggestionPresentationMode {
case .nearbyTextCursor: 6
case .floatingWidget: nil
}
}())
}
}
struct DiffResult {
var dimmedRanges: [Range<String.Index>]
var mutatedRanges: [Range<String.Index>]
var deletedRanges: [Range<String.Index>]
}
@MainActor
static func diff(
suggestion: PresentingCodeSuggestion,
textCursorTracker: TextCursorTracker
) -> DiffResult {
let typedContentCount = suggestion.startLineIndex == textCursorTracker.cursorPosition.line
? textCursorTracker.cursorPosition.character
: 0
return .init(dimmedRanges: [], mutatedRanges: [], deletedRanges: [])
}
}
// MARK: - Previews
#Preview("Code Block Suggestion Panel") {
CodeBlockSuggestionPanel(suggestion: PresentingCodeSuggestion(
code: """
LazyVGrid(columns: [GridItem(.fixed(30)), GridItem(.flexible())]) {
ForEach(0..<viewModel.suggestion.count, id: \\.self) { index in // lkjaskldjalksjdlkasjdlkajslkdjas
Text(viewModel.suggestion[index])
.frame(maxWidth: .infinity, alignment: .leading)
.multilineTextAlignment(.leading)
}
""",
language: "swift",
startLineIndex: 8,
suggestionCount: 2,
currentSuggestionIndex: 0
), suggestionDisplayCompactMode: .init(
wrappedValue: false,
"suggestionDisplayCompactMode",
store: {
let userDefault =
UserDefaults(suiteName: "CodeBlockSuggestionPanel_CompactToolBar_Preview")
userDefault?.set(false, for: \.suggestionDisplayCompactMode)
return userDefault!
}()
))
.frame(width: 450, height: 400)
.padding()
}
#Preview("Code Block Suggestion Panel Compact Mode") {
CodeBlockSuggestionPanel(suggestion: PresentingCodeSuggestion(
code: """
LazyVGrid(columns: [GridItem(.fixed(30)), GridItem(.flexible())]) {
ForEach(0..<viewModel.suggestion.count, id: \\.self) { index in // lkjaskldjalksjdlkasjdlkajslkdjas
Text(viewModel.suggestion[index])
.frame(maxWidth: .infinity, alignment: .leading)
.multilineTextAlignment(.leading)
}
""",
language: "swift",
startLineIndex: 8,
suggestionCount: 2,
currentSuggestionIndex: 0
), suggestionDisplayCompactMode: .init(
wrappedValue: true,
"suggestionDisplayCompactMode",
store: {
let userDefault =
UserDefaults(suiteName: "CodeBlockSuggestionPanel_CompactToolBar_Preview")
userDefault?.set(true, for: \.suggestionDisplayCompactMode)
return userDefault!
}()
))
.preferredColorScheme(.light)
.frame(width: 450, height: 400)
.padding()
}
#Preview("Code Block Suggestion Panel Highlight ObjC") {
CodeBlockSuggestionPanel(suggestion: PresentingCodeSuggestion(
code: """
- (void)addSubview:(UIView *)view {
[self addSubview:view];
}
""",
language: "objective-c",
startLineIndex: 8,
suggestionCount: 2,
currentSuggestionIndex: 0
))
.preferredColorScheme(.light)
.frame(width: 450, height: 400)
.padding()
}