forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWidgetWindowsController.swift
More file actions
1345 lines (1200 loc) · 51 KB
/
WidgetWindowsController.swift
File metadata and controls
1345 lines (1200 loc) · 51 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
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import AppKit
import AsyncAlgorithms
import ChatTab
import Combine
import ComposableArchitecture
import Dependencies
import Foundation
import SwiftUI
import XcodeInspector
import AXHelper
actor WidgetWindowsController: NSObject {
let userDefaultsObservers = WidgetUserDefaultsObservers()
var xcodeInspector: XcodeInspector { .shared }
nonisolated let windows: WidgetWindows
nonisolated let store: StoreOf<WidgetFeature>
nonisolated let chatTabPool: ChatTabPool
var currentApplicationProcessIdentifier: pid_t?
weak var currentXcodeApp: XcodeAppInstanceInspector?
weak var previousXcodeApp: XcodeAppInstanceInspector?
var cancellable: Set<AnyCancellable> = []
var observeToAppTask: Task<Void, Error>?
var observeToFocusedEditorTask: Task<Void, Error>?
var updateWindowOpacityTask: Task<Void, Error>?
var lastUpdateWindowOpacityTime = Date(timeIntervalSince1970: 0)
var updateWindowLocationTask: Task<Void, Error>?
var lastUpdateWindowLocationTime = Date(timeIntervalSince1970: 0)
var beatingCompletionPanelTask: Task<Void, Error>?
deinit {
userDefaultsObservers.presentationModeChangeObserver.onChange = {}
observeToAppTask?.cancel()
observeToFocusedEditorTask?.cancel()
}
init(store: StoreOf<WidgetFeature>, chatTabPool: ChatTabPool) {
self.store = store
self.chatTabPool = chatTabPool
windows = .init(store: store, chatTabPool: chatTabPool)
super.init()
windows.controller = self
}
@MainActor func send(_ action: WidgetFeature.Action) {
store.send(action)
}
func start() {
cancellable.removeAll()
xcodeInspector.$activeApplication.sink { [weak self] app in
guard let app else { return }
Task { [weak self] in await self?.activate(app) }
}.store(in: &cancellable)
xcodeInspector.$focusedEditor.sink { [weak self] editor in
Task { @MainActor [weak self] in
self?.store.send(.fixErrorPanel(.onFocusedEditorChanged(editor)))
self?.store.send(.panel(.agentConfigurationWidget(.onFocusedEditorChanged(editor))))
}
guard let editor else { return }
Task { [weak self] in await self?.observe(toEditor: editor) }
}.store(in: &cancellable)
xcodeInspector.$completionPanel.sink { [weak self] newValue in
Task { [weak self] in
await self?.handleCompletionPanelChange(isDisplaying: newValue != nil)
}
}.store(in: &cancellable)
xcodeInspector.$activeDocumentURL.sink { [weak self] url in
Task { [weak self] in
await self?.updateCodeReviewWindowLocation(.onActiveDocumentURLChanged)
_ = await MainActor.run { [weak self] in
self?.store.send(.codeReviewPanel(.onActiveDocumentURLChanged(url)))
}
}
}.store(in: &cancellable)
userDefaultsObservers.presentationModeChangeObserver.onChange = { [weak self] in
Task { [weak self] in
await self?.updateWindowLocation(animated: false, immediately: false)
await self?.send(.updateColorScheme)
}
}
// Observe state change of code review
setupCodeReviewPanelObservers()
// Observe state change of fix error
setupFixErrorPanelObservers()
// Observer state change for NES
setupNESSuggestionPanelObservers()
// Observe feature flags
setupFeatureFlagObservers()
}
private func setupCodeReviewPanelObservers() {
Task { @MainActor in
let currentIndexPublisher = store.publisher
.map(\.codeReviewPanelState.currentIndex)
.removeDuplicates()
.sink { [weak self] _ in
Task { [weak self] in
await self?.updateCodeReviewWindowLocation(.onCurrentReviewIndexChanged)
}
}
let isPanelDisplayedPublisher = store.publisher
.map(\.codeReviewPanelState.isPanelDisplayed)
.removeDuplicates()
.sink { [weak self] isPanelDisplayed in
Task { [weak self] in
await self?.updateCodeReviewWindowLocation(.onIsPanelDisplayedChanged(isPanelDisplayed))
}
}
await self.storeCancellables([currentIndexPublisher, isPanelDisplayedPublisher])
}
}
func storeCancellables(_ newCancellables: [AnyCancellable]) {
for cancellable in newCancellables {
self.cancellable.insert(cancellable)
}
}
}
// MARK: - Observation
private extension WidgetWindowsController {
func activate(_ app: AppInstanceInspector) {
Task {
if app.isXcode {
updateWindowLocation(animated: false, immediately: true)
updateWindowOpacity(immediately: false)
if let xcodeApp = app as? XcodeAppInstanceInspector {
previousXcodeApp = currentXcodeApp ?? xcodeApp
currentXcodeApp = xcodeApp
}
} else {
updateWindowOpacity(immediately: true)
updateWindowLocation(animated: false, immediately: false)
await hideSuggestionPanelWindow()
}
await adjustChatPanelWindowLevel()
await updateFixErrorPanelWindowLocation()
}
guard currentApplicationProcessIdentifier != app.processIdentifier else { return }
currentApplicationProcessIdentifier = app.processIdentifier
observe(toApp: app)
}
func observe(toApp app: AppInstanceInspector) {
guard let app = app as? XcodeAppInstanceInspector else { return }
let notifications = app.axNotifications
observeToAppTask?.cancel()
observeToAppTask = Task {
await windows.orderFront()
for await notification in await notifications.notifications() {
try Task.checkCancellation()
/// Hide the widgets before switching to another window/editor
/// so the transition looks better.
func hideWidgetForTransitions() async {
let newDocumentURL = await xcodeInspector.safe.realtimeActiveDocumentURL
let documentURL = await MainActor
.run { store.withState { $0.focusingDocumentURL } }
if documentURL != newDocumentURL {
await send(.panel(.removeDisplayedContent))
await hidePanelWindows()
}
await send(.updateFocusingDocumentURL)
}
func removeContent() async {
await send(.panel(.removeDisplayedContent))
}
func updateWidgetsAndNotifyChangeOfEditor(immediately: Bool) async {
await send(.panel(.switchToAnotherEditorAndUpdateContent))
updateWindowLocation(animated: false, immediately: immediately)
updateWindowOpacity(immediately: immediately)
}
func updateWidgets(immediately: Bool) async {
updateWindowLocation(animated: false, immediately: immediately)
updateWindowOpacity(immediately: immediately)
}
switch notification.kind {
case .focusedWindowChanged, .focusedUIElementChanged:
await hideWidgetForTransitions()
await updateWidgetsAndNotifyChangeOfEditor(immediately: true)
case .applicationActivated:
await updateWidgetsAndNotifyChangeOfEditor(immediately: false)
case .mainWindowChanged:
await updateWidgetsAndNotifyChangeOfEditor(immediately: false)
case .windowMiniaturized, .windowDeminiaturized:
await updateWidgets(immediately: false)
await updateCodeReviewWindowLocation(.onXcodeAppNotification(notification))
case .resized,
.moved,
.windowMoved,
.windowResized:
await updateWidgets(immediately: false)
await updateAttachedChatWindowLocation(notification)
await updateCodeReviewWindowLocation(.onXcodeAppNotification(notification))
case .created, .uiElementDestroyed, .xcodeCompletionPanelChanged,
.applicationDeactivated:
continue
case .titleChanged:
continue
}
}
}
}
func observe(toEditor editor: SourceEditor) {
observeToFocusedEditorTask?.cancel()
observeToFocusedEditorTask = Task {
let selectionRangeChange = await editor.axNotifications.notifications()
.filter { $0.kind == .selectedTextChanged }
let scroll = await editor.axNotifications.notifications()
.filter { $0.kind == .scrollPositionChanged }
let valueChange = await editor.axNotifications.notifications()
.filter { $0.kind == .valueChanged }
if #available(macOS 13.0, *) {
for await notification in merge(
scroll,
selectionRangeChange.debounce(for: Duration.milliseconds(0)),
valueChange.debounce(for: Duration.milliseconds(100))
) {
guard await xcodeInspector.safe.latestActiveXcode != nil else { return }
try Task.checkCancellation()
// for better looking
if notification.kind == .scrollPositionChanged {
await hideSuggestionPanelWindow()
}
updateWindowLocation(animated: false, immediately: false)
updateWindowOpacity(immediately: false)
await updateCodeReviewWindowLocation(.onSourceEditorNotification(notification))
await handleFixErrorEditorNotification(notification: notification)
}
} else {
for await notification in merge(selectionRangeChange, scroll, valueChange) {
guard await xcodeInspector.safe.latestActiveXcode != nil else { return }
try Task.checkCancellation()
// for better looking
if notification.kind == .scrollPositionChanged {
await hideSuggestionPanelWindow()
}
updateWindowLocation(animated: false, immediately: false)
updateWindowOpacity(immediately: false)
await updateCodeReviewWindowLocation(.onSourceEditorNotification(notification))
await handleFixErrorEditorNotification(notification: notification)
}
}
}
}
func handleCompletionPanelChange(isDisplaying: Bool) {
beatingCompletionPanelTask?.cancel()
beatingCompletionPanelTask = Task {
if !isDisplaying {
// 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: 400_000_000)
}
updateWindowLocation(animated: false, immediately: false)
updateWindowOpacity(immediately: false)
}
}
}
// MARK: - Window Updating
extension WidgetWindowsController {
@MainActor
func hidePanelWindows() {
windows.sharedPanelWindow.alphaValue = 0
windows.suggestionPanelWindow.alphaValue = 0
}
@MainActor
func hideSuggestionPanelWindow() {
windows.suggestionPanelWindow.alphaValue = 0
send(.panel(.hidePanel(.suggestion)))
}
@MainActor
func hideCodeReviewWindow() {
windows.codeReviewPanelWindow.alphaValue = 0
windows.codeReviewPanelWindow.setIsVisible(false)
}
@MainActor
func displayCodeReviewWindow() {
windows.codeReviewPanelWindow.setIsVisible(true)
windows.codeReviewPanelWindow.alphaValue = 1
windows.codeReviewPanelWindow.orderFrontRegardless()
}
func generateWidgetLocation(_ state: WidgetFeature.State) -> WidgetLocation {
// Default location when no active application/window
var defaultLocation = generateDefaultLocation()
if let application = xcodeInspector.latestActiveXcode?.appElement {
if let focusElement = xcodeInspector.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)
let nesPanelLocation: WidgetLocation.NESPanelLocation? = NESPanelLocationStrategy.getNESPanelLocation(maybeEditor: parent, state: state)
let locationTrigger: WidgetLocation.LocationTrigger = .sourceEditor
let agentConfigurationWidgetLocation = AgentConfigurationWidgetLocationStrategy.getAgentConfigurationWidgetLocation(
maybeEditor: parent, screen: screen
)
switch positionMode {
case .fixedToBottom:
var result = UpdateLocationStrategy.FixedToBottom().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen
)
result.setNESSuggestionPanelLocation(nesPanelLocation)
result.setLocationTrigger(locationTrigger)
result.setAgentConfigurationWidgetLocation(agentConfigurationWidgetLocation)
switch suggestionMode {
case .nearbyTextCursor:
result.suggestionPanelLocation = UpdateLocationStrategy
.NearbyTextCursor()
.framesForSuggestionWindow(
editorFrame: frame, mainScreen: screen,
activeScreen: firstScreen,
editor: focusElement,
completionPanel: xcodeInspector.completionPanel
)
default:
break
}
return result
case .alignToTextCursor:
var result = UpdateLocationStrategy.AlignToTextCursor().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen,
editor: focusElement
)
result.setNESSuggestionPanelLocation(nesPanelLocation)
result.setLocationTrigger(locationTrigger)
result.setAgentConfigurationWidgetLocation(agentConfigurationWidgetLocation)
switch suggestionMode {
case .nearbyTextCursor:
result.suggestionPanelLocation = UpdateLocationStrategy
.NearbyTextCursor()
.framesForSuggestionWindow(
editorFrame: frame, mainScreen: screen,
activeScreen: firstScreen,
editor: focusElement,
completionPanel: xcodeInspector.completionPanel
)
default:
break
}
return result
}
} else if var window = application.focusedWindow,
var frame = application.focusedWindow?.rect,
!window.isXcodeMenuBar,
frame.size.height > 300,
let screen = NSScreen.screens.first(where: { $0.frame.origin == .zero }),
let firstScreen = NSScreen.main
{
if window.isXcodeOpenQuickly
|| window.isXcodeAlert
{
// fallback to use workspace window
guard let workspaceWindow = application.windows
.first(where: { $0.isXcodeWorkspaceWindow }),
let rect = workspaceWindow.rect
else {
defaultLocation.setLocationTrigger(.otherApp)
return defaultLocation
}
window = workspaceWindow
frame = rect
}
var expendedSize = CGSize.zero
if window.isXcodeWorkspaceWindow {
// 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
expendedSize.width = (Style.widgetPadding * 2 + Style.widgetWidth) / 2
expendedSize.height += Style.widgetPadding
}
var result = UpdateLocationStrategy.FixedToBottom().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen,
preferredInsideEditorMinWidth: 9_999_999_999, // never
editorFrameExpendedSize: expendedSize
)
result.setLocationTrigger(.xcodeWorkspaceWindow)
return result
}
}
return defaultLocation
}
// Generate a default location when no workspace is opened
private func generateDefaultLocation() -> WidgetLocation {
let chatPanelFrame = UpdateLocationStrategy.getChatPanelFrame()
return WidgetLocation(
widgetFrame: .zero,
tabFrame: .zero,
defaultPanelLocation: .init(
frame: chatPanelFrame,
alignPanelTop: false
),
suggestionPanelLocation: nil,
nesSuggestionPanelLocation: nil
)
}
func updatePanelState(_ location: WidgetLocation) async {
await send(.updatePanelStateToMatch(location))
await send(.updateNESSuggestionPanelStateToMatch(location))
await send(.updateAgentConfigurationWidgetStateToMatch(location))
}
func updateWindowOpacity(immediately: Bool) {
let shouldDebounce = !immediately &&
!(Date().timeIntervalSince(lastUpdateWindowOpacityTime) > 3)
lastUpdateWindowOpacityTime = Date()
updateWindowOpacityTask?.cancel()
let task = Task {
if shouldDebounce {
try await Task.sleep(nanoseconds: 200_000_000)
}
try Task.checkCancellation()
let xcodeInspector = self.xcodeInspector
let activeApp = await xcodeInspector.safe.activeApplication
let latestActiveXcode = await xcodeInspector.safe.latestActiveXcode
let previousActiveApplication = xcodeInspector.previousActiveApplication
await MainActor.run {
let state = store.withState { $0 }
let isChatPanelDetached = state.chatPanelState.isDetached
// Check if the user has requested to display the panel, regardless of workspace state
let isPanelDisplayed = state.chatPanelState.isPanelDisplayed
// Keep the chat panel visible even when there's no workspace/tabs if it's explicitly displayed
// This ensures the login screen remains visible
let shouldShowChatPanel = isPanelDisplayed || (
state.chatPanelState.currentChatWorkspace != nil &&
!state.chatPanelState.currentChatWorkspace!.tabInfo.isEmpty
)
if let activeApp, activeApp.isXcode {
let application = activeApp.appElement
/// We need this to hide the windows when Xcode is minimized.
let noFocus = application.focusedWindow == nil
windows.sharedPanelWindow.alphaValue = noFocus ? 0 : 1
send(.panel(noFocus ? .hidePanel(.suggestion) : .showPanel(.suggestion)))
windows.suggestionPanelWindow.alphaValue = noFocus ? 0 : 1
send(.panel(noFocus ? .hidePanel(.nes) : .showPanel(.nes)))
applyOpacityForNESWindows(by: noFocus)
send(.panel(noFocus ? .hidePanel(.agentConfiguration) : .showPanel(.agentConfiguration)))
applyOpacityForAgentConfigurationWidget(by: noFocus)
windows.nesNotificationWindow.alphaValue = noFocus ? 0 : 1
windows.widgetWindow.alphaValue = noFocus ? 0 : 1
windows.toastWindow.alphaValue = noFocus ? 0 : 1
if isChatPanelDetached {
windows.chatPanelWindow.isWindowHidden = !shouldShowChatPanel
} else {
windows.chatPanelWindow.isWindowHidden = noFocus
}
} else if let activeApp, activeApp.isExtensionService {
let noFocus = {
guard let xcode = latestActiveXcode else { return true }
if let window = xcode.appElement.focusedWindow,
window.role == "AXWindow"
{
return false
}
return true
}()
let previousAppIsXcode = previousActiveApplication?.isXcode ?? false
send(.panel(noFocus ? .hidePanel(.suggestion) : .showPanel(.suggestion)))
windows.sharedPanelWindow.alphaValue = noFocus ? 0 : 1
send(.panel(noFocus ? .hidePanel(.nes) : .showPanel(.nes)))
applyOpacityForNESWindows(by: noFocus)
send(.panel(noFocus ? .hidePanel(.agentConfiguration) : .showPanel(.agentConfiguration)))
applyOpacityForAgentConfigurationWidget(by: noFocus)
windows.nesNotificationWindow.alphaValue = noFocus ? 0 : 1
windows.suggestionPanelWindow.alphaValue = noFocus ? 0 : 1
windows.widgetWindow.alphaValue = if noFocus {
0
} else if previousAppIsXcode {
1
} else {
0
}
windows.toastWindow.alphaValue = noFocus ? 0 : 1
if isChatPanelDetached {
windows.chatPanelWindow.isWindowHidden = !shouldShowChatPanel
} else {
windows.chatPanelWindow.isWindowHidden = noFocus && !windows
.chatPanelWindow.isKeyWindow
}
} else {
windows.sharedPanelWindow.alphaValue = 0
windows.suggestionPanelWindow.alphaValue = 0
windows.nesMenuWindow.alphaValue = 0
windows.nesDiffWindow.alphaValue = 0
applyOpacityForAgentConfigurationWidget()
windows.nesNotificationWindow.alphaValue = 0
windows.widgetWindow.alphaValue = 0
windows.toastWindow.alphaValue = 0
if !isChatPanelDetached {
windows.chatPanelWindow.isWindowHidden = true
}
}
}
}
updateWindowOpacityTask = task
}
@MainActor
func updateAttachedChatWindowLocation(_ notif: XcodeAppInstanceInspector.AXNotification? = nil) async {
guard let currentXcodeApp = (await currentXcodeApp),
let currentFocusedWindow = currentXcodeApp.appElement.focusedWindow,
let currentXcodeScreen = currentXcodeApp.appScreen,
let currentXcodeRect = currentFocusedWindow.rect,
let notif = notif
else { return }
guard let sourceEditor = await xcodeInspector.safe.focusedEditor,
sourceEditor.realtimeWorkspaceURL != nil
else { return }
if let previousXcodeApp = (await previousXcodeApp),
currentXcodeApp.processIdentifier == previousXcodeApp.processIdentifier {
if currentFocusedWindow.isFullScreen == true {
return
}
}
let isAttachedToXcodeEnabled = UserDefaults.shared.value(for: \.autoAttachChatToXcode)
guard isAttachedToXcodeEnabled else { return }
guard notif.element.isXcodeWorkspaceWindow else { return }
let state = store.withState { $0 }
if state.chatPanelState.isPanelDisplayed && !windows.chatPanelWindow.isWindowHidden {
var frame = UpdateLocationStrategy.getAttachedChatPanelFrame(
NSScreen.main ?? NSScreen.screens.first!,
workspaceWindowElement: notif.element
)
let screenMaxX = currentXcodeScreen.visibleFrame.maxX
if screenMaxX - currentXcodeRect.maxX < Style.minChatPanelWidth
{
if let previousXcodeRect = (await previousXcodeApp?.appElement.focusedWindow?.rect),
screenMaxX - previousXcodeRect.maxX < Style.minChatPanelWidth
{
let isSameScreen = currentXcodeScreen.visibleFrame.intersects(windows.chatPanelWindow.frame)
// Only update y and height
frame = .init(
x: isSameScreen ? windows.chatPanelWindow.frame.minX : frame.minX,
y: frame.minY,
width: isSameScreen ? windows.chatPanelWindow.frame.width : frame.width,
height: frame.height
)
}
}
windows.chatPanelWindow.setFrame(frame, display: true, animate: true)
await adjustChatPanelWindowLevel()
}
}
func updateWindowLocation(
animated: Bool,
immediately: Bool,
function: StaticString = #function,
line: UInt = #line
) {
@Sendable @MainActor
func update() async {
let state = store.withState { $0 }
let isChatPanelDetached = state.chatPanelState.isDetached
let widgetLocation = await generateWidgetLocation(state)
await updatePanelState(widgetLocation)
windows.widgetWindow.setFrame(
widgetLocation.widgetFrame,
display: false,
animate: animated
)
windows.toastWindow.setFrame(
widgetLocation.defaultPanelLocation.frame,
display: false,
animate: animated
)
windows.sharedPanelWindow.setFrame(
widgetLocation.defaultPanelLocation.frame,
display: false,
animate: animated
)
if let suggestionPanelLocation = widgetLocation.suggestionPanelLocation {
windows.suggestionPanelWindow.setFrame(
suggestionPanelLocation.frame,
display: false,
animate: animated
)
}
if let nesPanelLocation = widgetLocation.nesSuggestionPanelLocation {
windows.nesMenuWindow.setFrame(
nesPanelLocation.menuFrame,
display: false,
animate: animated
)
await updateNESDiffWindowFrame(
nesPanelLocation,
animated: animated,
trigger: widgetLocation.locationTrigger
)
await updateNESNotificationWindowFrame(nesPanelLocation, animated: animated)
}
if let agentConfigurationWidgetLocation = widgetLocation.agentConfigurationWidgetLocation {
windows.agentConfigurationWidgetWindow.setFrame(
agentConfigurationWidgetLocation.getWidgetFrame(windows.agentConfigurationWidgetWindow.frame),
display: false,
animate: animated
)
}
let isAttachedToXcodeEnabled = UserDefaults.shared.value(for: \.autoAttachChatToXcode)
if isAttachedToXcodeEnabled {
// update in `updateAttachedChatWindowLocation`
} else if isChatPanelDetached {
// don't update it!
} else {
windows.chatPanelWindow.setFrame(
widgetLocation.defaultPanelLocation.frame,
display: false,
animate: animated
)
}
await adjustChatPanelWindowLevel()
await updateFixErrorPanelWindowLocation()
}
let now = Date()
let shouldThrottle = !immediately &&
!(now.timeIntervalSince(lastUpdateWindowLocationTime) > 3)
updateWindowLocationTask?.cancel()
let interval: TimeInterval = 0.05
if shouldThrottle {
let delay = max(
0,
interval - now.timeIntervalSince(lastUpdateWindowLocationTime)
)
updateWindowLocationTask = Task {
try await Task.sleep(nanoseconds: UInt64(delay * 1_000_000_000))
try Task.checkCancellation()
await update()
}
} else {
Task {
await update()
}
}
lastUpdateWindowLocationTime = Date()
}
@MainActor
func adjustChatPanelWindowLevel() async {
let window = windows.chatPanelWindow
let disableFloatOnTopWhenTheChatPanelIsDetached = UserDefaults.shared
.value(for: \.disableFloatOnTopWhenTheChatPanelIsDetached)
guard disableFloatOnTopWhenTheChatPanelIsDetached else {
window.setFloatOnTop(true)
return
}
let state = store.withState { $0 }
let isChatPanelDetached = state.chatPanelState.isDetached
guard isChatPanelDetached else {
window.setFloatOnTop(true)
return
}
let floatOnTopWhenOverlapsXcode = UserDefaults.shared
.value(for: \.keepFloatOnTopIfChatPanelAndXcodeOverlaps)
let latestApp = await xcodeInspector.safe.activeApplication
let latestAppIsXcodeOrExtension = if let latestApp {
latestApp.isXcode || latestApp.isExtensionService
} else {
false
}
if !floatOnTopWhenOverlapsXcode || !latestAppIsXcodeOrExtension {
window.setFloatOnTop(false)
} else {
guard let xcode = await xcodeInspector.safe.latestActiveXcode else { return }
let windowElements = xcode.appElement.windows
let overlap = windowElements.contains {
if let position = $0.position, let size = $0.size {
let rect = CGRect(
x: position.x,
y: position.y,
width: size.width,
height: size.height
)
return rect.intersects(window.frame)
}
return false
}
window.setFloatOnTop(overlap)
}
}
}
// MARK: - Code Review
extension WidgetWindowsController {
enum CodeReviewLocationTrigger {
case onXcodeAppNotification(XcodeAppInstanceInspector.AXNotification) // resized, moved
case onSourceEditorNotification(SourceEditor.AXNotification) // scroll, valueChange
case onActiveDocumentURLChanged
case onCurrentReviewIndexChanged
case onIsPanelDisplayedChanged(Bool)
static let relevantXcodeAppNotificationKind: [XcodeAppInstanceInspector.AXNotificationKind] =
[
.windowMiniaturized,
.windowDeminiaturized,
.resized,
.moved,
.windowMoved,
.windowResized
]
static let relevantSourceEditorNotificationKind: [SourceEditor.AXNotificationKind] =
[.scrollPositionChanged, .valueChanged]
var isRelevant: Bool {
switch self {
case .onActiveDocumentURLChanged, .onCurrentReviewIndexChanged, .onIsPanelDisplayedChanged: return true
case let .onSourceEditorNotification(notif):
return Self.relevantSourceEditorNotificationKind.contains(where: { $0 == notif.kind })
case let .onXcodeAppNotification(notif):
return Self.relevantXcodeAppNotificationKind.contains(where: { $0 == notif.kind })
}
}
var shouldScroll: Bool {
switch self {
case .onCurrentReviewIndexChanged: return true
default: return false
}
}
}
@MainActor
func updateCodeReviewWindowLocation(_ trigger: CodeReviewLocationTrigger) async {
guard trigger.isRelevant else { return }
if case .onIsPanelDisplayedChanged(let isPanelDisplayed) = trigger, !isPanelDisplayed {
hideCodeReviewWindow()
return
}
var sourceEditorElement: AXUIElement?
switch trigger {
case .onXcodeAppNotification(let notif):
sourceEditorElement = notif.element.retrieveSourceEditor()
case .onSourceEditorNotification(_),
.onActiveDocumentURLChanged,
.onCurrentReviewIndexChanged,
.onIsPanelDisplayedChanged:
sourceEditorElement = await xcodeInspector.safe.focusedEditor?.element
}
guard let sourceEditorElement = sourceEditorElement
else {
hideCodeReviewWindow()
return
}
await _updateCodeReviewWindowLocation(
sourceEditorElement,
shouldScroll: trigger.shouldScroll
)
}
@MainActor
func _updateCodeReviewWindowLocation(_ sourceEditorElement: AXUIElement, shouldScroll: Bool = false) async {
// Get the current index and comment from the store state
let state = store.withState { $0.codeReviewPanelState }
guard state.isPanelDisplayed,
let comment = state.currentSelectedComment,
await currentXcodeApp?.realtimeDocumentURL?.absoluteString == comment.uri,
let reviewWindowFittingSize = windows.codeReviewPanelWindow.contentView?.fittingSize
else {
hideCodeReviewWindow()
return
}
guard let originalContent = state.originalContent,
let screen = NSScreen.screens.first(where: { $0.frame.origin == .zero }),
let scrollViewRect = sourceEditorElement.parent?.rect,
let scrollScreenFrame = sourceEditorElement.parent?.maxIntersectionScreen?.frame,
let currentContent: String = try? sourceEditorElement.copyValue(key: kAXValueAttribute)
else { return }
let result = CodeReviewLocationStrategy.getCurrentLineFrame(
editor: sourceEditorElement,
currentContent: currentContent,
comment: comment,
originalContent: originalContent)
guard let lineNumber = result.lineNumber, let lineFrame = result.lineFrame
else { return }
// The line should be visible
guard lineFrame.width > 0, lineFrame.height > 0,
scrollViewRect.contains(lineFrame)
else {
if shouldScroll {
AXHelper
.scrollSourceEditorToLine(
lineNumber,
content: currentContent,
focusedElement: sourceEditorElement
)
} else {
hideCodeReviewWindow()
}
return
}
// Position the code review window near the target line
var reviewWindowFrame = windows.codeReviewPanelWindow.frame
reviewWindowFrame.origin.x = scrollViewRect.maxX - reviewWindowFrame.width
reviewWindowFrame.origin.y = screen.frame.maxY - lineFrame.maxY + screen.frame.minY - reviewWindowFrame.height
windows.codeReviewPanelWindow.setFrame(reviewWindowFrame, display: true, animate: true)
displayCodeReviewWindow()
}
}
// MARK: - NSWindowDelegate
extension WidgetWindowsController: NSWindowDelegate {
nonisolated
func windowWillMove(_ notification: Notification) {
guard let window = notification.object as? NSWindow else { return }
Task { @MainActor in
guard window === windows.chatPanelWindow else { return }
await Task.yield()
store.send(.chatPanel(.detachChatPanel))
}
}
nonisolated
func windowDidMove(_ notification: Notification) {
guard let window = notification.object as? NSWindow else { return }
Task { @MainActor in
guard window === windows.chatPanelWindow else { return }
await Task.yield()
await adjustChatPanelWindowLevel()
}
}
nonisolated
func windowWillEnterFullScreen(_ notification: Notification) {
guard let window = notification.object as? NSWindow else { return }
Task { @MainActor in
guard window === windows.chatPanelWindow else { return }
await Task.yield()
store.send(.chatPanel(.enterFullScreen))
}
}
nonisolated
func windowWillExitFullScreen(_ notification: Notification) {
guard let window = notification.object as? NSWindow else { return }
Task { @MainActor in
guard window === windows.chatPanelWindow else { return }
await Task.yield()
store.send(.chatPanel(.exitFullScreen))
}
}
}
// MARK: - Windows
public final class WidgetWindows {
let store: StoreOf<WidgetFeature>
let chatTabPool: ChatTabPool
weak var controller: WidgetWindowsController?
let cursorPositionTracker = CursorPositionTracker()
// you should make these window `.transient` so they never show up in the mission control.
@MainActor
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
}()
@MainActor
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 = .floating
it.collectionBehavior = [.fullScreenAuxiliary, .transient, .canJoinAllSpaces]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: WidgetView(