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
793 lines (708 loc) · 28.9 KB
/
WidgetWindowsController.swift
File metadata and controls
793 lines (708 loc) · 28.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
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
import AppKit
import AsyncAlgorithms
import ChatTab
import Combine
import ComposableArchitecture
import Dependencies
import Foundation
import SwiftUI
import XcodeInspector
actor WidgetWindowsController: NSObject {
let userDefaultsObservers = WidgetUserDefaultsObservers()
var xcodeInspector: XcodeInspector { .shared }
let windows: WidgetWindows
let store: StoreOf<WidgetFeature>
let chatTabPool: ChatTabPool
var currentApplicationProcessIdentifier: pid_t?
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
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)
userDefaultsObservers.presentationModeChangeObserver.onChange = { [weak self] in
Task { [weak self] in
await self?.updateWindowLocation(animated: false, immediately: false)
await self?.send(.updateColorScheme)
}
}
}
}
// 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()
}
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 .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(
scroll,
selectionRangeChange.debounce(for: Duration.milliseconds(0))
) {
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)
}
} else {
for await notification in merge(selectionRangeChange, scroll) {
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)
}
}
}
}
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))
}
func generateWidgetLocation() -> WidgetLocation? {
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)
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.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.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
}
var expendedSize = CGSize.zero
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
expendedSize.width = (Style.widgetPadding * 2 + Style.widgetWidth) / 2
expendedSize.height += Style.widgetPadding
}
return UpdateLocationStrategy.FixedToBottom().framesForWindows(
editorFrame: frame,
mainScreen: screen,
activeScreen: firstScreen,
preferredInsideEditorMinWidth: 9_999_999_999, // never
editorFrameExpendedSize: expendedSize
)
}
}
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.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
let hasChat = 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 : .showPanel))
windows.suggestionPanelWindow.alphaValue = noFocus ? 0 : 1
windows.widgetWindow.alphaValue = noFocus ? 0 : 1
windows.toastWindow.alphaValue = noFocus ? 0 : 1
if isChatPanelDetached {
windows.chatPanelWindow.isWindowHidden = !hasChat
} 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 : .showPanel))
windows.sharedPanelWindow.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 = !hasChat
} else {
windows.chatPanelWindow.isWindowHidden = noFocus && !windows
.chatPanelWindow.isKeyWindow
}
} else {
windows.sharedPanelWindow.alphaValue = 0
windows.suggestionPanelWindow.alphaValue = 0
windows.widgetWindow.alphaValue = 0
windows.toastWindow.alphaValue = 0
if !isChatPanelDetached {
windows.chatPanelWindow.isWindowHidden = true
}
}
}
}
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.defaultPanelLocation.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()
}
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 disableFloatOnTopWhenTheChatPanelIsDetached = UserDefaults.shared
.value(for: \.disableFloatOnTopWhenTheChatPanelIsDetached)
let window = windows.chatPanelWindow
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: - 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(
store: store.scope(
state: \._internalCircularWidgetState,
action: \.circularWidget
)
)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { false }
return it
}()
@MainActor
lazy var sharedPanelWindow = {
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 = widgetLevel(2)
it.collectionBehavior = [.fullScreenAuxiliary, .transient, .canJoinAllSpaces]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: SharedPanelView(
store: store.scope(
state: \.panelState,
action: \.panel
).scope(
state: \.sharedPanelState,
action: \.sharedPanel
)
).environment(cursorPositionTracker)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { [store] in
store.withState { state in
state.panelState.sharedPanelState.content.promptToCode != nil
}
}
return it
}()
@MainActor
lazy var suggestionPanelWindow = {
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 = widgetLevel(2)
it.collectionBehavior = [.fullScreenAuxiliary, .transient, .canJoinAllSpaces]
it.hasShadow = false
it.contentView = NSHostingView(
rootView: SuggestionPanelView(
store: store.scope(
state: \.panelState,
action: \.panel
).scope(
state: \.suggestionPanelState,
action: \.suggestionPanel
)
).environment(cursorPositionTracker)
)
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.delegate = controller
it.isWindowHidden = true
return it
}()
@MainActor
lazy var toastWindow = {
let it = CanBecomeKeyWindow(
contentRect: .zero,
styleMask: [.borderless],
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = true
it.backgroundColor = .clear
it.level = widgetLevel(0)
it.collectionBehavior = [.fullScreenAuxiliary, .transient, .canJoinAllSpaces]
it.hasShadow = false
it.contentView = NSHostingView(
rootView: ToastPanelView(store: store.scope(
state: \.toastPanel,
action: \.toastPanel
))
)
it.setIsVisible(true)
it.ignoresMouseEvents = true
it.canBecomeKeyChecker = { false }
return it
}()
init(
store: StoreOf<WidgetFeature>,
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 {
chatPanelWindow.orderFrontRegardless()
}
}
}
// MARK: - Window Subclasses
class CanBecomeKeyWindow: NSWindow {
var canBecomeKeyChecker: () -> Bool = { true }
override var canBecomeKey: Bool { canBecomeKeyChecker() }
override var canBecomeMain: Bool { canBecomeKeyChecker() }
}
func widgetLevel(_ addition: Int) -> NSWindow.Level {
let minimumWidgetLevel: Int
minimumWidgetLevel = NSWindow.Level.floating.rawValue
return .init(minimumWidgetLevel + addition)
}