-
-
Notifications
You must be signed in to change notification settings - Fork 426
Expand file tree
/
Copy pathWidgetWindowsController.swift
More file actions
954 lines (848 loc) · 33 KB
/
WidgetWindowsController.swift
File metadata and controls
954 lines (848 loc) · 33 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
import AppKit
import AsyncAlgorithms
import ChatTab
import ComposableArchitecture
import Dependencies
import Foundation
import SharedUIComponents
import SwiftNavigation
import SwiftUI
import XcodeInspector
#warning("""
TODO: This part is too messy, consider breaking it up, let each window handle their own things
""")
actor WidgetWindowsController: NSObject {
let userDefaultsObservers = WidgetUserDefaultsObservers()
var xcodeInspector: XcodeInspector { .shared }
nonisolated let windows: WidgetWindows
nonisolated let store: StoreOf<Widget>
nonisolated let chatTabPool: ChatTabPool
var currentApplicationProcessIdentifier: pid_t?
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>?
var updateWindowStateTask: Task<Void, Error>?
deinit {
userDefaultsObservers.presentationModeChangeObserver.onChange = {}
observeToAppTask?.cancel()
observeToFocusedEditorTask?.cancel()
updateWindowStateTask?.cancel()
}
init(store: StoreOf<Widget>, chatTabPool: ChatTabPool) {
self.store = store
self.chatTabPool = chatTabPool
windows = .init(store: store, chatTabPool: chatTabPool)
super.init()
windows.controller = self
}
@MainActor func send(_ action: Widget.Action) {
store.send(action)
}
func start() {
Task { [xcodeInspector] in
await observe { [weak self] in
if let app = xcodeInspector.activeApplication {
Task {
await self?.activate(app)
}
}
}
await observe { [weak self] in
if let editor = xcodeInspector.focusedEditor {
Task {
await self?.observe(toEditor: editor)
}
}
}
await observe { [weak self] in
let isDisplaying = xcodeInspector.completionPanel != nil
Task {
await self?.handleCompletionPanelChange(isDisplaying: isDisplaying)
}
}
}
userDefaultsObservers.presentationModeChangeObserver.onChange = { [weak self] in
Task { [weak self] in
await self?.updateWindowLocation(animated: false, immediately: false)
await self?.send(.updateColorScheme)
}
}
updateWindowStateTask = Task { [weak self] in
if let self { await handleSpaceChange() }
await withThrowingTaskGroup(of: Void.self) { [weak self] group in
// active space did change
_ = group.addTaskUnlessCancelled { [weak self] in
let sequence = NSWorkspace.shared.notificationCenter
.notifications(named: NSWorkspace.activeSpaceDidChangeNotification)
for await _ in sequence {
guard let self else { return }
try Task.checkCancellation()
await handleSpaceChange()
}
}
}
}
Task { @MainActor in
windows.chatPanelWindow.isPanelDisplayed = false
}
}
}
// MARK: - Observation
private extension WidgetWindowsController {
func activate(_ app: AppInstanceInspector) {
Task {
if app.isXcode {
updateWindowLocation(animated: false, immediately: true)
updateWindowOpacity(immediately: false)
} else {
updateWindowOpacity(immediately: true)
updateWindowLocation(animated: false, immediately: false)
await hideSuggestionPanelWindow()
}
await adjustChatPanelWindowLevel()
await adjustModificationPanelLevel()
}
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()
/// Hide the widgets before switching to another window/editor
/// so the transition looks better.
func hideWidgetForTransitions() async {
let newDocumentURL = xcodeInspector.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)
}
await updateWidgetsAndNotifyChangeOfEditor(immediately: true)
for await notification in await notifications.notifications() {
try Task.checkCancellation()
switch notification.kind {
case .focusedWindowChanged:
await handleSpaceChange()
await hideWidgetForTransitions()
await updateWidgetsAndNotifyChangeOfEditor(immediately: true)
case .focusedUIElementChanged:
await hideWidgetForTransitions()
await updateWidgetsAndNotifyChangeOfEditor(immediately: true)
case .applicationActivated:
await removeContent()
await updateWidgetsAndNotifyChangeOfEditor(immediately: false)
case .mainWindowChanged:
await removeContent()
await updateWidgetsAndNotifyChangeOfEditor(immediately: false)
case .moved,
.resized,
.windowMoved,
.windowResized,
.windowMiniaturized,
.windowDeminiaturized:
await updateWidgets(immediately: false)
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 }
if #available(macOS 13.0, *) {
for await notification in merge(
selectionRangeChange.debounce(for: Duration.milliseconds(500)),
scroll
) {
guard await xcodeInspector.latestActiveXcode != nil else { return }
try Task.checkCancellation()
// for better looking
if notification.kind == .scrollPositionChanged {
await hideSuggestionPanelWindow()
}
updateWindowLocation(animated: false, immediately: false)
updateWindowOpacity(immediately: false)
}
} else {
for await notification in merge(selectionRangeChange, scroll) {
guard await xcodeInspector.latestActiveXcode != nil else { return }
try Task.checkCancellation()
// for better looking
if notification.kind == .scrollPositionChanged {
await hideSuggestionPanelWindow()
}
updateWindowLocation(animated: false, immediately: false)
updateWindowOpacity(immediately: false)
}
}
}
}
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
}
func generateWidgetLocation() async -> WidgetLocation? {
if let application = await xcodeInspector.latestActiveXcode?.appElement {
if let window = application.focusedWindow,
let windowFrame = window.rect,
let focusElement = await xcodeInspector.focusedEditor?.element,
let parent = focusElement.parent,
let frame = parent.rect,
let screen = NSScreen.screens.first(
where: { $0.frame.origin == .zero }
) ?? NSScreen.main,
let windowContainingScreen = NSScreen.screens.first(where: {
let flippedScreenFrame = $0.frame.flipped(relativeTo: screen.frame)
return flippedScreenFrame.contains(frame.origin)
})
{
let positionMode = UserDefaults.shared
.value(for: \.suggestionWidgetPositionMode)
let suggestionMode = UserDefaults.shared
.value(for: \.suggestionPresentationMode)
switch positionMode {
case .fixedToBottom:
var result = UpdateLocationStrategy.FixedToBottom().framesForWindows(
windowFrame: windowFrame,
editorFrame: frame,
mainScreen: screen,
activeScreen: windowContainingScreen
)
switch suggestionMode {
case .nearbyTextCursor:
result.suggestionPanelLocation = UpdateLocationStrategy
.NearbyTextCursor()
.framesForSuggestionWindow(
editorFrame: frame,
mainScreen: screen,
activeScreen: windowContainingScreen,
editor: focusElement,
completionPanel: await xcodeInspector.completionPanel
)
default:
break
}
return result
case .alignToTextCursor:
var result = UpdateLocationStrategy.AlignToTextCursor().framesForWindows(
windowFrame: windowFrame,
editorFrame: frame,
mainScreen: screen,
activeScreen: windowContainingScreen,
editor: focusElement
)
switch suggestionMode {
case .nearbyTextCursor:
result.suggestionPanelLocation = UpdateLocationStrategy
.NearbyTextCursor()
.framesForSuggestionWindow(
editorFrame: frame, mainScreen: screen,
activeScreen: windowContainingScreen,
editor: focusElement,
completionPanel: await xcodeInspector.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,
sharedPanelLocation: .init(frame: .zero, alignPanelTop: false),
defaultPanelLocation: .init(frame: .zero, alignPanelTop: false)
)
}
window = workspaceWindow
frame = rect
}
return UpdateLocationStrategy.FixedToBottom().framesForWindows(
windowFrame: frame,
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen,
preferredInsideEditorMinWidth: 9_999_999_999, // never
editorFrameExpendedSize: .zero
)
}
}
return nil
}
func updatePanelState(_ location: WidgetLocation) async {
await send(.updatePanelStateToMatch(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.activeApplication
let latestActiveXcode = await xcodeInspector.latestActiveXcode
let previousActiveApplication = await xcodeInspector.previousActiveApplication
await MainActor.run {
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 = 1
windows.suggestionPanelWindow.alphaValue = noFocus ? 0 : 1
windows.widgetWindow.alphaValue = noFocus ? 0 : 1
windows.toastWindow.alphaValue = noFocus ? 0 : 1
} 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
windows.sharedPanelWindow.alphaValue = 1
windows.suggestionPanelWindow.alphaValue = noFocus ? 0 : 1
windows.widgetWindow.alphaValue = if noFocus {
0
} else if previousAppIsXcode {
if windows.chatPanelWindow.isFullscreen,
windows.chatPanelWindow.isOnActiveSpace
{
0
} else {
1
}
} else {
0
}
windows.toastWindow.alphaValue = noFocus ? 0 : 1
} else {
windows.sharedPanelWindow.alphaValue = 1
windows.suggestionPanelWindow.alphaValue = 0
windows.widgetWindow.alphaValue = 0
windows.toastWindow.alphaValue = 0
}
}
}
updateWindowOpacityTask = task
}
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
guard let widgetLocation = await generateWidgetLocation() else { return }
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.sharedPanelLocation.frame,
display: false,
animate: animated
)
if let suggestionPanelLocation = widgetLocation.suggestionPanelLocation {
windows.suggestionPanelWindow.setFrame(
suggestionPanelLocation.frame,
display: false,
animate: animated
)
}
if isChatPanelDetached {
// don't update it!
} else {
windows.chatPanelWindow.setFrame(
widgetLocation.defaultPanelLocation.frame,
display: false,
animate: animated
)
}
await adjustChatPanelWindowLevel()
await adjustModificationPanelLevel()
}
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 * 500_000_000))
try Task.checkCancellation()
await update()
}
} else {
Task {
await update()
}
}
lastUpdateWindowLocationTime = Date()
}
@MainActor
func adjustModificationPanelLevel() async {
let window = windows.sharedPanelWindow
let latestApp = await xcodeInspector.activeApplication
let latestAppIsXcodeOrExtension = if let latestApp {
latestApp.isXcode || latestApp.isExtensionService
} else {
false
}
window.setFloatOnTop(latestAppIsXcodeOrExtension)
}
@MainActor
func adjustChatPanelWindowLevel() async {
let flowOnTopOption = UserDefaults.shared
.value(for: \.chatPanelFloatOnTopOption)
let disableFloatOnTopWhenTheChatPanelIsDetached = UserDefaults.shared
.value(for: \.disableFloatOnTopWhenTheChatPanelIsDetached)
let window = windows.chatPanelWindow
if flowOnTopOption == .never {
window.setFloatOnTop(false)
return
}
let state = store.withState { $0 }
let isChatPanelDetached = state.chatPanelState.isDetached
let floatOnTopWhenOverlapsXcode = UserDefaults.shared
.value(for: \.keepFloatOnTopIfChatPanelAndXcodeOverlaps)
let latestApp = await xcodeInspector.activeApplication
let latestAppIsXcodeOrExtension = if let latestApp {
latestApp.isXcode || latestApp.isExtensionService
} else {
false
}
async let overlap: Bool = { @MainActor in
guard let xcode = await xcodeInspector.latestActiveXcode else { return false }
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
}
return overlap
}()
if latestAppIsXcodeOrExtension {
if floatOnTopWhenOverlapsXcode {
let overlap = await overlap
window.setFloatOnTop(overlap)
} else {
if disableFloatOnTopWhenTheChatPanelIsDetached, isChatPanelDetached {
window.setFloatOnTop(false)
} else {
window.setFloatOnTop(true)
}
}
} else {
if floatOnTopWhenOverlapsXcode {
let overlap = await overlap
window.setFloatOnTop(overlap)
} else {
switch flowOnTopOption {
case .onTopWhenXcodeIsActive:
window.setFloatOnTop(false)
case .alwaysOnTop:
window.setFloatOnTop(true)
case .never:
window.setFloatOnTop(false)
}
}
}
}
@MainActor
func handleSpaceChange() async {
let activeXcode = XcodeInspector.shared.activeXcode
let xcode = activeXcode?.appElement
let isXcodeActive = xcode?.isFrontmost ?? false
[
windows.sharedPanelWindow,
windows.suggestionPanelWindow,
windows.widgetWindow,
windows.toastWindow,
].forEach {
if isXcodeActive {
$0.moveToActiveSpace()
}
}
if isXcodeActive, !windows.chatPanelWindow.isDetached {
windows.chatPanelWindow.moveToActiveSpace()
}
if windows.fullscreenDetector.isOnActiveSpace, xcode?.focusedWindow != nil {
windows.orderFront()
}
}
}
// 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<Widget>
let chatTabPool: ChatTabPool
weak var controller: WidgetWindowsController?
// 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.backgroundColor = .clear
it.collectionBehavior = [.canJoinAllSpaces, .fullScreenAuxiliary, .transient]
it.hasShadow = false
it.setIsVisible(false)
it.canBecomeKeyChecker = { false }
return it
}()
@MainActor
lazy var widgetWindow = {
let it = WidgetWindow(
contentRect: .zero,
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.backgroundColor = .clear
it.level = widgetLevel(0)
it.hasShadow = false
it.contentView = NSHostingView(
rootView: WidgetView(
store: store.scope(
state: \._internalCircularWidgetState,
action: \.circularWidget
)
)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { false }
return it
}()
@MainActor
lazy var sharedPanelWindow = {
let it = WidgetWindow(
contentRect: .init(x: 0, y: 0, width: Style.panelWidth, height: Style.panelHeight),
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.backgroundColor = .clear
it.level = widgetLevel(2)
it.hoveringLevel = widgetLevel(2)
it.hasShadow = false
it.contentView = NSHostingView(
rootView: SharedPanelView(
store: store.scope(
state: \.panelState,
action: \.panel
).scope(
state: \.sharedPanelState,
action: \.sharedPanel
)
).modifierFlagsMonitor()
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { [store] in
store.withState { state in
!state.panelState.sharedPanelState.content.promptToCodeGroup.promptToCodes.isEmpty
}
}
return it
}()
@MainActor
lazy var suggestionPanelWindow = {
let it = WidgetWindow(
contentRect: .init(x: 0, y: 0, width: Style.panelWidth, height: Style.panelHeight),
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.backgroundColor = .clear
it.level = widgetLevel(2)
it.hasShadow = false
it.menu = nil
it.animationBehavior = .utilityWindow
it.contentView = NSHostingView(
rootView: SuggestionPanelView(
store: store.scope(
state: \.panelState,
action: \.panel
).scope(
state: \.suggestionPanelState,
action: \.suggestionPanel
)
)
)
it.canBecomeKeyChecker = { false }
it.setIsVisible(true)
return it
}()
@MainActor
lazy var chatPanelWindow = {
let it = ChatPanelWindow(
store: store.scope(
state: \.chatPanelState,
action: \.chatPanel
),
chatTabPool: chatTabPool,
minimizeWindow: { [weak self] in
self?.store.send(.chatPanel(.hideButtonClicked))
}
)
it.hoveringLevel = widgetLevel(1)
it.delegate = controller
return it
}()
@MainActor
lazy var toastWindow = {
let it = WidgetWindow(
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 = widgetLevel(2)
it.hasShadow = false
it.contentView = NSHostingView(
rootView: ToastPanelView(store: store.scope(
state: \.toastPanel,
action: \.toastPanel
))
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { false }
return it
}()
init(
store: StoreOf<Widget>,
chatTabPool: ChatTabPool
) {
self.store = store
self.chatTabPool = chatTabPool
}
@MainActor
func orderFront() {
widgetWindow.orderFrontRegardless()
toastWindow.orderFrontRegardless()
sharedPanelWindow.orderFrontRegardless()
suggestionPanelWindow.orderFrontRegardless()
if chatPanelWindow.level.rawValue > NSWindow.Level.normal.rawValue,
store.withState({ !$0.chatPanelState.isDetached })
{
chatPanelWindow.orderFrontRegardless()
}
}
}
// MARK: - Window Subclasses
class CanBecomeKeyWindow: NSWindow {
var canBecomeKeyChecker: () -> Bool = { true }
override var canBecomeKey: Bool { canBecomeKeyChecker() }
override var canBecomeMain: Bool { canBecomeKeyChecker() }
}
class WidgetWindow: CanBecomeKeyWindow {
enum State: Equatable {
case normal(fullscreen: Bool)
case switchingSpace
}
var hoveringLevel: NSWindow.Level = widgetLevel(0)
override var isFloatingPanel: Bool { true }
var defaultCollectionBehavior: NSWindow.CollectionBehavior {
[.fullScreenAuxiliary, .transient]
}
var isFullscreen: Bool {
styleMask.contains(.fullScreen)
}
private var state: State? {
didSet {
guard state != oldValue else { return }
switch state {
case .none:
collectionBehavior = defaultCollectionBehavior
case .switchingSpace:
collectionBehavior = defaultCollectionBehavior.union(.moveToActiveSpace)
case .normal:
collectionBehavior = defaultCollectionBehavior
}
}
}
func moveToActiveSpace() {
let previousState = state
state = .switchingSpace
Task { @MainActor in
try await Task.sleep(nanoseconds: 50_000_000)
self.state = previousState
}
}
func setFloatOnTop(_ isFloatOnTop: Bool) {
let targetLevel: NSWindow.Level = isFloatOnTop
? hoveringLevel
: .normal
if targetLevel != level {
orderFrontRegardless()
level = targetLevel
}
}
}
func widgetLevel(_ addition: Int) -> NSWindow.Level {
let minimumWidgetLevel: Int
#if DEBUG
minimumWidgetLevel = NSWindow.Level.floating.rawValue + 1
#else
minimumWidgetLevel = NSWindow.Level.floating.rawValue
#endif
return .init(minimumWidgetLevel + addition)
}
extension CGRect {
func flipped(relativeTo reference: CGRect) -> CGRect {
let flippedOrigin = CGPoint(
x: origin.x,
y: reference.height - origin.y - height
)
return CGRect(origin: flippedOrigin, size: size)
}
func relative(to reference: CGRect) -> CGRect {
let relativeOrigin = CGPoint(
x: origin.x - reference.origin.x,
y: origin.y - reference.origin.y
)
return CGRect(origin: relativeOrigin, size: size)
}
}