forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSuggestionWidgetController.swift
More file actions
438 lines (398 loc) · 15.9 KB
/
SuggestionWidgetController.swift
File metadata and controls
438 lines (398 loc) · 15.9 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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
import ActiveApplicationMonitor
import AppKit
import AsyncAlgorithms
import AXNotificationStream
import Environment
import Preferences
import SwiftUI
@MainActor
public final class SuggestionWidgetController {
class UserDefaultsObserver: NSObject {
var onChange: (() -> Void)?
override func observeValue(
forKeyPath keyPath: String?,
of object: Any?,
change: [NSKeyValueChangeKey: Any]?,
context: UnsafeMutableRawPointer?
) {
onChange?()
}
}
private lazy var widgetWindow = {
let it = NSWindow(
contentRect: .zero,
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .floating
it.hasShadow = true
it.contentView = NSHostingView(
rootView: WidgetView(
viewModel: widgetViewModel,
panelViewModel: suggestionPanelViewModel
)
)
it.setIsVisible(true)
return it
}()
private lazy var panelWindow = {
let it = CanBecomeKeyWindow(
contentRect: .zero,
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .floating
it.hasShadow = false
it.contentView = NSHostingView(
rootView: SuggestionPanelView(viewModel: suggestionPanelViewModel)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { [suggestionPanelViewModel] in
if case .chat = suggestionPanelViewModel.content { return false }
return false
}
return it
}()
let widgetViewModel = WidgetViewModel()
let suggestionPanelViewModel = SuggestionPanelViewModel()
private var presentationModeChangeObserver = UserDefaultsObserver()
private var colorSchemeChangeObserver = UserDefaultsObserver()
private var windowChangeObservationTask: Task<Void, Error>?
private var activeApplicationMonitorTask: Task<Void, Error>?
private var sourceEditorMonitorTask: Task<Void, Error>?
private var suggestionForFiles: [URL: Suggestion] = [:]
private var currentFileURL: URL?
private var colorScheme: ColorScheme = .light
public var onAcceptButtonTapped: (() -> Void)? {
get { suggestionPanelViewModel.onAcceptButtonTapped }
set { suggestionPanelViewModel.onAcceptButtonTapped = newValue }
}
public var onRejectButtonTapped: (() -> Void)? {
get { suggestionPanelViewModel.onRejectButtonTapped }
set { suggestionPanelViewModel.onRejectButtonTapped = newValue }
}
public var onPreviousButtonTapped: (() -> Void)? {
get { suggestionPanelViewModel.onPreviousButtonTapped }
set { suggestionPanelViewModel.onPreviousButtonTapped = newValue }
}
public var onNextButtonTapped: (() -> Void)? {
get { suggestionPanelViewModel.onNextButtonTapped }
set { suggestionPanelViewModel.onNextButtonTapped = newValue }
}
enum Suggestion {
case code(
String,
language: String,
startLineIndex: Int,
currentSuggestionIndex: Int,
suggestionCount: Int
)
case chat(ChatRoom)
}
public nonisolated init() {
Task { @MainActor in
activeApplicationMonitorTask = Task { [weak self] in
var previousApp: NSRunningApplication?
for await app in ActiveApplicationMonitor.createStream() {
guard let self else { return }
try Task.checkCancellation()
defer { previousApp = app }
if let app = ActiveApplicationMonitor.activeXcode {
if app != previousApp {
windowChangeObservationTask?.cancel()
windowChangeObservationTask = nil
self.observeXcodeWindowChangeIfNeeded(app)
}
self.updateWindowLocation()
} else {
if ActiveApplicationMonitor.activeApplication?.bundleIdentifier != Bundle.main.bundleIdentifier {
self.widgetWindow.alphaValue = 0
self.panelWindow.alphaValue = 0
}
}
}
}
}
Task { @MainActor in
presentationModeChangeObserver.onChange = { [weak self] in
guard let self else { return }
self.updateWindowLocation()
}
UserDefaults.shared.addObserver(
presentationModeChangeObserver,
forKeyPath: UserDefaultPreferenceKeys().suggestionPresentationMode.key,
options: .new,
context: nil
)
}
Task { @MainActor in
let updateColorScheme = { @MainActor [weak self] in
guard let self else { return }
let widgetColorScheme = UserDefaults.shared.value(for: \.widgetColorScheme)
let systemColorScheme: ColorScheme = NSApp.effectiveAppearance.name == .darkAqua
? .dark
: .light
self.colorScheme = {
switch (widgetColorScheme, systemColorScheme) {
case (.system, .dark), (.dark, _):
return .dark
case (.system, .light), (.light, _):
return .light
case (.system, _):
return .light
}
}()
self.suggestionPanelViewModel.colorScheme = self.colorScheme
Task {
await self.updateSuggestionsForActiveEditor()
}
}
updateColorScheme()
colorSchemeChangeObserver.onChange = {
updateColorScheme()
}
UserDefaults.shared.addObserver(
colorSchemeChangeObserver,
forKeyPath: UserDefaultPreferenceKeys().widgetColorScheme.key,
options: .new,
context: nil
)
UserDefaults.standard.addObserver(
colorSchemeChangeObserver,
forKeyPath: "AppleInterfaceStyle",
options: .new,
context: nil
)
}
}
}
// MARK: - Handle Events
public extension SuggestionWidgetController {
func suggestCode(
_ code: String,
language: String,
startLineIndex: Int,
fileURL: URL,
currentSuggestionIndex: Int,
suggestionCount: Int
) {
if fileURL == currentFileURL || currentFileURL == nil {
suggestionPanelViewModel.content = .suggestion(.init(
startLineIndex: startLineIndex,
code: highlighted(
code: code,
language: language,
brightMode: colorScheme == .light
),
suggestionCount: suggestionCount,
currentSuggestionIndex: currentSuggestionIndex
))
suggestionPanelViewModel.isPanelDisplayed = true
}
widgetViewModel.isProcessing = false
suggestionForFiles[fileURL] = .code(
code,
language: language,
startLineIndex: startLineIndex,
currentSuggestionIndex: currentSuggestionIndex,
suggestionCount: suggestionCount
)
}
func discardSuggestion(fileURL: URL) {
suggestionForFiles[fileURL] = nil
if fileURL == currentFileURL || currentFileURL == nil {
suggestionPanelViewModel.content = .empty
suggestionPanelViewModel.isPanelDisplayed = false
}
widgetViewModel.isProcessing = false
}
func markAsProcessing(_ isProcessing: Bool) {
widgetViewModel.isProcessing = isProcessing
}
func presentError(_ errorDescription: String) {
suggestionPanelViewModel.content = .error(errorDescription)
widgetViewModel.isProcessing = false
suggestionPanelViewModel.isPanelDisplayed = true
}
func presentChatRoom(_ chatRoom: ChatRoom, fileURL: URL) {
suggestionPanelViewModel.content = .chat(chatRoom)
widgetViewModel.isProcessing = false
suggestionPanelViewModel.isPanelDisplayed = true
suggestionForFiles[fileURL] = .chat(chatRoom)
}
}
// MARK: - Private
extension SuggestionWidgetController {
private func observeXcodeWindowChangeIfNeeded(_ app: NSRunningApplication) {
guard windowChangeObservationTask == nil else { return }
observeEditorChangeIfNeeded(app)
windowChangeObservationTask = Task { [weak self] in
let notifications = AXNotificationStream(
app: app,
notificationNames:
kAXMovedNotification,
kAXResizedNotification,
kAXMainWindowChangedNotification,
kAXFocusedWindowChangedNotification,
kAXFocusedUIElementChangedNotification
)
for await notification in notifications {
guard let self else { return }
try Task.checkCancellation()
self.updateWindowLocation(animated: false)
panelWindow.orderFront(nil)
widgetWindow.orderFront(nil)
if notification.name == kAXFocusedUIElementChangedNotification {
sourceEditorMonitorTask?.cancel()
sourceEditorMonitorTask = nil
observeEditorChangeIfNeeded(app)
guard let fileURL = try? await Environment.fetchCurrentFileURL() else {
suggestionPanelViewModel.content = .empty
continue
}
guard fileURL != currentFileURL else { continue }
currentFileURL = fileURL
await updateSuggestionsForActiveEditor(fileURL: fileURL)
}
}
}
}
private func observeEditorChangeIfNeeded(_ app: NSRunningApplication) {
guard sourceEditorMonitorTask == nil else { return }
let appElement = AXUIElementCreateApplication(app.processIdentifier)
if let focusedElement = appElement.focusedElement,
focusedElement.description == "Source Editor",
let scrollView = focusedElement.parent,
let scrollBar = scrollView.verticalScrollBar
{
sourceEditorMonitorTask = Task { [weak self] in
let selectionRangeChange = AXNotificationStream(
app: app,
element: focusedElement,
notificationNames: kAXSelectedTextChangedNotification
)
let scroll = AXNotificationStream(
app: app,
element: scrollBar, notificationNames: kAXValueChangedNotification
)
if #available(macOS 13.0, *) {
for await _ in merge(
selectionRangeChange.debounce(for: Duration.milliseconds(500)),
scroll
) {
guard let self else { return }
try Task.checkCancellation()
let mode = UserDefaults.shared.value(for: \.suggestionWidgetPositionMode)
if mode != .alignToTextCursor { break }
self.updateWindowLocation(animated: false)
}
} else {
for await _ in merge(selectionRangeChange, scroll) {
guard let self else { return }
try Task.checkCancellation()
let mode = UserDefaults.shared.value(for: \.suggestionWidgetPositionMode)
if mode != .alignToTextCursor { break }
self.updateWindowLocation(animated: false)
}
}
}
}
}
/// Update the window location.
///
/// - note: It's possible to get the scroll view's position by getting position on the focus
/// element.
private func updateWindowLocation(animated: Bool = false) {
func hide() {
panelWindow.alphaValue = 0
widgetWindow.alphaValue = 0
}
guard UserDefaults.shared.value(for: \.suggestionPresentationMode) == .floatingWidget
else {
hide()
return
}
if let xcode = ActiveApplicationMonitor.activeXcode {
let application = AXUIElementCreateApplication(xcode.processIdentifier)
if let focusElement = application.focusedElement,
focusElement.description == "Source Editor",
let parent = focusElement.parent,
let frame = parent.rect,
let screen = NSScreen.main,
let firstScreen = NSScreen.screens.first
{
let mode = UserDefaults.shared.value(for: \.suggestionWidgetPositionMode)
switch mode {
case .fixedToBottom:
let result = UpdateLocationStrategy.FixedToBottom().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen
)
widgetWindow.setFrame(result.widgetFrame, display: false, animate: animated)
panelWindow.setFrame(result.panelFrame, display: false, animate: animated)
suggestionPanelViewModel.alignTopToAnchor = result.alignPanelTopToAnchor
case .alignToTextCursor:
let result = UpdateLocationStrategy.AlignToTextCursor().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen,
editor: focusElement
)
widgetWindow.setFrame(result.widgetFrame, display: false, animate: animated)
panelWindow.setFrame(result.panelFrame, display: false, animate: animated)
suggestionPanelViewModel.alignTopToAnchor = result.alignPanelTopToAnchor
}
panelWindow.alphaValue = 1
widgetWindow.alphaValue = 1
return
}
}
hide()
}
private func updateSuggestionsForActiveEditor(fileURL: URL? = nil) async {
guard let fileURL = await {
if let fileURL { return fileURL }
return try? await Environment.fetchCurrentFileURL()
}(),
let suggestion = suggestionForFiles[fileURL]
else {
suggestionPanelViewModel.content = .empty
return
}
switch suggestion {
case let .code(
code,
language,
startLineIndex,
currentSuggestionIndex,
suggestionCount
):
suggestionPanelViewModel.content = .suggestion(.init(
startLineIndex: startLineIndex,
code: highlighted(
code: code,
language: language,
brightMode: colorScheme == .light
),
suggestionCount: suggestionCount,
currentSuggestionIndex: currentSuggestionIndex
))
case let .chat(chatRoom):
suggestionPanelViewModel.content = .chat(chatRoom)
}
}
}
class CanBecomeKeyWindow: NSWindow {
var canBecomeKeyChecker: () -> Bool = { true }
override var canBecomeKey: Bool { canBecomeKeyChecker() }
override var canBecomeMain: Bool { canBecomeKeyChecker() }
}