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
802 lines (736 loc) · 31 KB
/
SuggestionWidgetController.swift
File metadata and controls
802 lines (736 loc) · 31 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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
import ActiveApplicationMonitor
import AppKit
import AsyncAlgorithms
import AXNotificationStream
import Combine
import Environment
import Preferences
import SwiftUI
import UserDefaultsObserver
import XcodeInspector
@MainActor
public final class SuggestionWidgetController: NSObject {
// you should make these window `.transient` so they never show up in the mission control.
private lazy var fullscreenDetector = {
let it = CanBecomeKeyWindow(
contentRect: .zero,
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.collectionBehavior = [.canJoinAllSpaces, .fullScreenAuxiliary, .transient]
it.hasShadow = false
it.setIsVisible(false)
it.canBecomeKeyChecker = { false }
return it
}()
private lazy var widgetWindow = {
let it = CanBecomeKeyWindow(
contentRect: .zero,
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .init(19)
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: WidgetView(
viewModel: widgetViewModel,
panelViewModel: sharedPanelViewModel,
chatWindowViewModel: chatWindowViewModel,
sharedPanelDisplayController: sharedPanelDisplayController,
suggestionPanelDisplayController: suggestionPanelDisplayController,
onOpenChatClicked: { [weak self] in
self?.onOpenChatClicked()
},
onCustomCommandClicked: { [weak self] command in
self?.onCustomCommandClicked(command)
}
)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { false }
return it
}()
private lazy var tabWindow = {
let it = CanBecomeKeyWindow(
contentRect: .zero,
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .init(19)
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: TabView(chatWindowViewModel: chatWindowViewModel)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { false }
return it
}()
private lazy var panelWindow = {
let it = CanBecomeKeyWindow(
contentRect: .init(x: 0, y: 0, width: Style.panelWidth, height: Style.panelHeight),
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .init(NSWindow.Level.floating.rawValue + 1)
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: SharedPanelView(
viewModel: sharedPanelViewModel,
displayController: sharedPanelDisplayController
)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { [sharedPanelViewModel] in
if case .promptToCode = sharedPanelViewModel.content { return true }
return false
}
return it
}()
private lazy var suggestionWindow = {
let it = CanBecomeKeyWindow(
contentRect: .init(x: 0, y: 0, width: Style.panelWidth, height: Style.panelHeight),
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .init(NSWindow.Level.floating.rawValue + 1)
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: SuggestionPanelView(
viewModel: sharedPanelViewModel,
displayController: suggestionPanelDisplayController
)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { [sharedPanelViewModel] in
if case .promptToCode = sharedPanelViewModel.content { return true }
return false
}
return it
}()
private lazy var chatWindow = {
let it = ChatWindow(
contentRect: .zero,
styleMask: [.resizable],
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .floating
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: ChatWindowView(viewModel: chatWindowViewModel)
)
it.setIsVisible(true)
it.delegate = self
return it
}()
let widgetViewModel = WidgetViewModel()
let sharedPanelViewModel = SharedPanelViewModel()
let chatWindowViewModel = ChatWindowViewModel()
let sharedPanelDisplayController = SharedPanelDisplayController()
let suggestionPanelDisplayController = SuggestionPanelDisplayController()
private var presentationModeChangeObserver = UserDefaultsObserver(
object: UserDefaults.shared,
forKeyPaths: [
UserDefaultPreferenceKeys().suggestionPresentationMode.key,
], context: nil
)
private var colorSchemeChangeObserver = UserDefaultsObserver(
object: UserDefaults.shared, forKeyPaths: [
UserDefaultPreferenceKeys().widgetColorScheme.key,
], context: nil
)
private var systemColorSchemeChangeObserver = UserDefaultsObserver(
object: UserDefaults.standard, forKeyPaths: ["AppleInterfaceStyle"], context: nil
)
private var windowChangeObservationTask: Task<Void, Error>?
private var activeApplicationMonitorTask: Task<Void, Error>?
private var sourceEditorMonitorTask: Task<Void, Error>?
private var fullscreenDetectingTask: Task<Void, Error>?
private var currentFileURL: URL?
private var colorScheme: ColorScheme = .light
private var cancellable = Set<AnyCancellable>()
public var onOpenChatClicked: () -> Void = {}
public var onCustomCommandClicked: (CustomCommand) -> Void = { _ in }
public var dataSource: SuggestionWidgetDataSource?
override public nonisolated init() {
super.init()
#warning(
"TODO: A test is initializing this class for unknown reasons, try a better way to avoid this."
)
if ProcessInfo.processInfo.environment["IS_UNIT_TEST"] == "YES" { return }
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
observeXcodeWindowChangeIfNeeded(app)
}
await updateContentForActiveEditor()
updateWindowLocation()
orderFront()
} else {
if ActiveApplicationMonitor.activeApplication?.bundleIdentifier != Bundle
.main.bundleIdentifier
{
self.widgetWindow.alphaValue = 0
self.panelWindow.alphaValue = 0
self.tabWindow.alphaValue = 0
self.suggestionWindow.alphaValue = 0
if !chatWindowViewModel.chatPanelInASeparateWindow {
self.chatWindow.alphaValue = 0
}
}
}
}
}
fullscreenDetectingTask = Task { [weak self] in
let sequence = NSWorkspace.shared.notificationCenter
.notifications(named: NSWorkspace.activeSpaceDidChangeNotification)
_ = self?.fullscreenDetector
for await _ in sequence {
try Task.checkCancellation()
guard let self else { return }
guard let activeXcode = ActiveApplicationMonitor.activeXcode else { continue }
guard fullscreenDetector.isOnActiveSpace else { continue }
let app = AXUIElementCreateApplication(activeXcode.processIdentifier)
if let window = app.focusedWindow, window.isFullScreen {
orderFront()
}
}
}
presentationModeChangeObserver.onChange = { [weak self] in
guard let self else { return }
self.updateWindowLocation()
}
chatWindowViewModel.$chatPanelInASeparateWindow.dropFirst().removeDuplicates()
.sink { [weak self] _ in
guard let self else { return }
Task { @MainActor in
self.updateWindowLocation(animated: true)
}
}.store(in: &cancellable)
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.sharedPanelViewModel.colorScheme = self.colorScheme
self.chatWindowViewModel.colorScheme = self.colorScheme
Task {
await self.updateContentForActiveEditor()
}
}
updateColorScheme()
colorSchemeChangeObserver.onChange = {
updateColorScheme()
}
systemColorSchemeChangeObserver.onChange = {
updateColorScheme()
}
XcodeInspector.shared.$completionPanel.sink { [weak self] newValue in
Task { @MainActor in
if newValue == nil {
// so that the buttons on the suggestion panel could be clicked
// before the completion panel updates the location of the suggestion panel
try await Task.sleep(nanoseconds: 200_000_000)
}
self?.updateWindowLocation()
}
}.store(in: &cancellable)
}
}
func orderFront() {
widgetWindow.orderFrontRegardless()
tabWindow.orderFrontRegardless()
panelWindow.orderFrontRegardless()
suggestionWindow.orderFrontRegardless()
chatWindow.orderFrontRegardless()
}
}
// MARK: - Handle Events
public extension SuggestionWidgetController {
func suggestCode(fileURL: URL) {
Task {
markAsProcessing(true)
defer { markAsProcessing(false) }
if let suggestion = await dataSource?.suggestionForFile(at: fileURL) {
sharedPanelViewModel.content = .suggestion(suggestion)
switch UserDefaults.shared.value(for: \.suggestionPresentationMode) {
case .nearbyTextCursor:
suggestionPanelDisplayController.isPanelDisplayed = true
case .floatingWidget:
sharedPanelDisplayController.isPanelDisplayed = true
}
}
}
}
func discardSuggestion(fileURL: URL) {
Task {
await updateContentForActiveEditor(fileURL: fileURL)
}
}
func markAsProcessing(_ isProcessing: Bool) {
if isProcessing {
widgetViewModel.markIsProcessing()
} else {
widgetViewModel.endIsProcessing()
}
}
func presentError(_ errorDescription: String) {
sharedPanelViewModel.content = .error(errorDescription)
sharedPanelDisplayController.isPanelDisplayed = true
}
func presentChatRoom(fileURL: URL) {
Task {
markAsProcessing(true)
defer { markAsProcessing(false) }
if let chat = await dataSource?.chatForFile(at: fileURL) {
chatWindowViewModel.chat = chat
chatWindowViewModel.isPanelDisplayed = true
if chatWindowViewModel.chatPanelInASeparateWindow {
self.updateWindowLocation()
}
Task { @MainActor in
// looks like we need a delay.
try await Task.sleep(nanoseconds: 150_000_000)
NSApplication.shared.activate(ignoringOtherApps: true)
}
}
}
}
func presentDetachedGlobalChat() {
chatWindowViewModel.chatPanelInASeparateWindow = true
Task {
if let chat = await dataSource?.chatForFile(at: URL(fileURLWithPath: "/")) {
chatWindowViewModel.chat = chat
chatWindowViewModel.isPanelDisplayed = true
if chatWindowViewModel.chatPanelInASeparateWindow {
self.updateWindowLocation()
}
Task { @MainActor in
chatWindow.alphaValue = 1
// looks like we need a delay.
try await Task.sleep(nanoseconds: 150_000_000)
NSApplication.shared.activate(ignoringOtherApps: true)
}
}
}
}
func closeChatRoom(fileURL: URL) {
Task {
await updateContentForActiveEditor(fileURL: fileURL)
}
}
func presentPromptToCode(fileURL: URL) {
Task {
markAsProcessing(true)
defer { markAsProcessing(false) }
if let provider = await dataSource?.promptToCodeForFile(at: fileURL) {
sharedPanelViewModel.content = .promptToCode(provider)
sharedPanelDisplayController.isPanelDisplayed = true
Task { @MainActor in
// looks like we need a delay.
try await Task.sleep(nanoseconds: 150_000_000)
NSApplication.shared.activate(ignoringOtherApps: true)
panelWindow.makeKey()
}
}
}
}
func discardPromptToCode(fileURL: URL) {
Task {
await updateContentForActiveEditor(fileURL: fileURL)
}
}
}
// 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:
kAXApplicationActivatedNotification,
kAXMovedNotification,
kAXResizedNotification,
kAXMainWindowChangedNotification,
kAXFocusedWindowChangedNotification,
kAXFocusedUIElementChangedNotification,
kAXWindowMovedNotification,
kAXWindowResizedNotification,
kAXWindowMiniaturizedNotification,
kAXWindowDeminiaturizedNotification
)
for await notification in notifications {
guard let self else { return }
try Task.checkCancellation()
self.updateWindowLocation(animated: false)
if [
kAXFocusedUIElementChangedNotification,
kAXApplicationActivatedNotification,
].contains(notification.name) {
sourceEditorMonitorTask?.cancel()
sourceEditorMonitorTask = nil
observeEditorChangeIfNeeded(app)
guard let fileURL = try? await Environment.fetchFocusedElementURI() else {
continue
}
guard fileURL != currentFileURL else { continue }
currentFileURL = fileURL
widgetViewModel.currentFileURL = currentFileURL
await updateContentForActiveEditor(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 }
guard ActiveApplicationMonitor.latestXcode != nil else { return }
try Task.checkCancellation()
self.updateWindowLocation(animated: false)
}
} else {
for await _ in merge(selectionRangeChange, scroll) {
guard let self else { return }
guard ActiveApplicationMonitor.latestXcode != nil else { return }
try Task.checkCancellation()
let mode = UserDefaults.shared.value(for: \.suggestionWidgetPositionMode)
if mode != .alignToTextCursor { break }
self.updateWindowLocation(animated: false)
}
}
}
}
}
/// Update the window location and opacity.
private func updateWindowLocation(animated: Bool = false) {
let detachChat = chatWindowViewModel.chatPanelInASeparateWindow
if let widgetLocation = generateWidgetLocation() {
widgetWindow.setFrame(widgetLocation.widgetFrame, display: false, animate: animated)
tabWindow.setFrame(widgetLocation.tabFrame, display: false, animate: animated)
panelWindow.setFrame(
widgetLocation.defaultPanelLocation.frame,
display: false,
animate: animated
)
sharedPanelDisplayController.alignTopToAnchor = widgetLocation.defaultPanelLocation
.alignPanelTop
if let suggestionPanelLocation = widgetLocation.suggestionPanelLocation {
suggestionWindow.setFrame(
suggestionPanelLocation.frame,
display: false,
animate: animated
)
suggestionPanelDisplayController.isPanelOutOfFrame = false
suggestionPanelDisplayController.alignTopToAnchor = suggestionPanelLocation
.alignPanelTop
} else {
suggestionPanelDisplayController.isPanelOutOfFrame = true
}
if detachChat {
if chatWindow.alphaValue == 0 {
chatWindow.setFrame(
widgetLocation.defaultPanelLocation.frame,
display: false,
animate: animated
)
}
} else {
chatWindow.setFrame(
widgetLocation.defaultPanelLocation.frame,
display: false,
animate: animated
)
}
}
if let app = ActiveApplicationMonitor.activeApplication, app.isXcode {
let application = AXUIElementCreateApplication(app.processIdentifier)
/// We need this to hide the windows when Xcode is minimized.
let noFocus = application.focusedWindow == nil
panelWindow.alphaValue = noFocus ? 0 : 1
suggestionWindow.alphaValue = noFocus ? 0 : 1
widgetWindow.alphaValue = noFocus ? 0 : 1
tabWindow.alphaValue = noFocus ? 0 : 1
if detachChat {
chatWindow.alphaValue = chatWindowViewModel.chat != nil ? 1 : 0
} else {
chatWindow.alphaValue = noFocus ? 0 : 1
}
} else if let app = ActiveApplicationMonitor.activeApplication,
app.bundleIdentifier == Bundle.main.bundleIdentifier
{
let noFocus = {
guard let xcode = XcodeInspector.shared.latestActiveXcode else { return true }
if let window = xcode.appElement.focusedWindow, window.role == "AXWindow" {
return false
}
return true
}()
panelWindow.alphaValue = noFocus ? 0 : 1
suggestionWindow.alphaValue = noFocus ? 0 : 1
widgetWindow.alphaValue = noFocus ? 0 : 1
tabWindow.alphaValue = noFocus ? 0 : 1
if detachChat {
chatWindow.alphaValue = chatWindowViewModel.chat != nil ? 1 : 0
} else {
chatWindow.alphaValue = noFocus && !chatWindow.isKeyWindow ? 0 : 1
}
} else {
panelWindow.alphaValue = 0
suggestionWindow.alphaValue = 0
widgetWindow.alphaValue = 0
tabWindow.alphaValue = 0
if !detachChat {
chatWindow.alphaValue = 0
}
}
}
private func updateContentForActiveEditor(fileURL: URL? = nil) async {
guard let fileURL = await {
if let fileURL { return fileURL }
return try? await Environment.fetchCurrentFileURL()
}() else {
sharedPanelViewModel.content = nil
chatWindowViewModel.chat = nil
return
}
if let chat = await dataSource?.chatForFile(at: fileURL) {
if chatWindowViewModel.chat?.id != chat.id {
chatWindowViewModel.chat = chat
}
} else {
chatWindowViewModel.chat = nil
}
if let provider = await dataSource?.promptToCodeForFile(at: fileURL) {
if case let .promptToCode(currentProvider) = sharedPanelViewModel.content,
currentProvider.id == provider.id { return }
sharedPanelViewModel.content = .promptToCode(provider)
} else if let suggestion = await dataSource?.suggestionForFile(at: fileURL) {
sharedPanelViewModel.content = .suggestion(suggestion)
} else {
sharedPanelViewModel.content = nil
}
}
private func generateWidgetLocation() -> WidgetLocation? {
if let application = XcodeInspector.shared.latestActiveXcode?.appElement {
if let focusElement = XcodeInspector.shared.focusedEditor?.element,
let parent = focusElement.parent,
let frame = parent.rect,
let screen = NSScreen.screens.first(where: { $0.frame.origin == .zero }),
let firstScreen = NSScreen.main
{
let positionMode = UserDefaults.shared
.value(for: \.suggestionWidgetPositionMode)
let suggestionMode = UserDefaults.shared
.value(for: \.suggestionPresentationMode)
switch positionMode {
case .fixedToBottom:
var result = UpdateLocationStrategy.FixedToBottom().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen
)
switch suggestionMode {
case .nearbyTextCursor:
result.suggestionPanelLocation = UpdateLocationStrategy
.NearbyTextCursor()
.framesForSuggestionWindow(
editorFrame: frame, mainScreen: screen,
activeScreen: firstScreen,
editor: focusElement,
completionPanel: XcodeInspector.shared.completionPanel
)
default:
break
}
return result
case .alignToTextCursor:
var result = UpdateLocationStrategy.AlignToTextCursor().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen,
editor: focusElement
)
switch suggestionMode {
case .nearbyTextCursor:
result.suggestionPanelLocation = UpdateLocationStrategy
.NearbyTextCursor()
.framesForSuggestionWindow(
editorFrame: frame, mainScreen: screen,
activeScreen: firstScreen,
editor: focusElement,
completionPanel: XcodeInspector.shared.completionPanel
)
default:
break
}
return result
}
} else if var window = application.focusedWindow,
var frame = application.focusedWindow?.rect,
!["menu bar", "menu bar item"].contains(window.description),
frame.size.height > 300,
let screen = NSScreen.screens.first(where: { $0.frame.origin == .zero }),
let firstScreen = NSScreen.main
{
if ["open_quickly"].contains(window.identifier)
|| ["alert"].contains(window.label)
{
// fallback to use workspace window
guard let workspaceWindow = application.windows
.first(where: { $0.identifier == "Xcode.WorkspaceWindow" }),
let rect = workspaceWindow.rect
else {
return WidgetLocation(
widgetFrame: .zero,
tabFrame: .zero,
defaultPanelLocation: .init(frame: .zero, alignPanelTop: false)
)
}
window = workspaceWindow
frame = rect
}
if ["Xcode.WorkspaceWindow"].contains(window.identifier) {
// extra padding to bottom so buttons won't be covered
frame.size.height -= 40
} else {
// move a bit away from the window so buttons won't be covered
frame.origin.x -= Style.widgetPadding + Style.widgetWidth / 2
frame.size.width += Style.widgetPadding * 2 + Style.widgetWidth
}
return UpdateLocationStrategy.FixedToBottom().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen,
preferredInsideEditorMinWidth: 9_999_999_999 // never
)
}
}
return nil
}
}
// MARK: - NSWindowDelegate
extension SuggestionWidgetController: NSWindowDelegate {
public func windowWillMove(_ notification: Notification) {
guard (notification.object as? NSWindow) === chatWindow else { return }
Task { @MainActor in
await Task.yield()
chatWindowViewModel.chatPanelInASeparateWindow = true
}
}
public func windowDidBecomeKey(_ notification: Notification) {
guard (notification.object as? NSWindow) === chatWindow else { return }
let screenFrame = NSScreen.screens.first(where: { $0.frame.origin == .zero })?
.frame ?? .zero
var mouseLocation = NSEvent.mouseLocation
let windowFrame = chatWindow.frame
if mouseLocation.y > windowFrame.maxY - 40,
mouseLocation.y < windowFrame.maxY,
mouseLocation.x > windowFrame.minX,
mouseLocation.x < windowFrame.maxX
{
mouseLocation.y = screenFrame.size.height - mouseLocation.y
if let cgEvent = CGEvent(
mouseEventSource: nil,
mouseType: .leftMouseDown,
mouseCursorPosition: mouseLocation,
mouseButton: .left
),
let event = NSEvent(cgEvent: cgEvent)
{
chatWindow.performDrag(with: event)
}
}
}
}
// MARK: - Window Subclasses
class CanBecomeKeyWindow: NSWindow {
var canBecomeKeyChecker: () -> Bool = { true }
override var canBecomeKey: Bool { canBecomeKeyChecker() }
override var canBecomeMain: Bool { canBecomeKeyChecker() }
}
class ChatWindow: NSWindow {
override var canBecomeKey: Bool { true }
override var canBecomeMain: Bool { true }
override func mouseDown(with event: NSEvent) {
let windowFrame = frame
let currentLocation = event.locationInWindow
if currentLocation.y > windowFrame.size.height - 40,
currentLocation.y < windowFrame.size.height,
currentLocation.x > 0,
currentLocation.x < windowFrame.width
{
performDrag(with: event)
}
}
}