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
303 lines (273 loc) · 9.46 KB
/
SuggestionWidgetController.swift
File metadata and controls
303 lines (273 loc) · 9.46 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
import ActiveApplicationMonitor
import AppKit
import AsyncAlgorithms
import AXNotificationStream
import ChatTab
import Combine
import ComposableArchitecture
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 = .floating
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: WidgetView(
store: store.scope(
state: \._circularWidgetState,
action: WidgetFeature.Action.circularWidget
)
)
)
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 = .floating
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: TabView(store: store.scope(
state: \.chatPanelState,
action: WidgetFeature.Action.chatPanel
))
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { false }
return it
}()
private 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 = .init(NSWindow.Level.floating.rawValue + 2)
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: SharedPanelView(
store: store.scope(
state: \.panelState,
action: WidgetFeature.Action.panel
).scope(
state: \.sharedPanelState,
action: PanelFeature.Action.sharedPanel
)
)
)
it.setIsVisible(true)
it.canBecomeKeyChecker = { [store] in
store.withState { state in
state.panelState.sharedPanelState.content.promptToCode != nil
}
}
return it
}()
private 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 = .init(NSWindow.Level.floating.rawValue + 2)
it.collectionBehavior = [.fullScreenAuxiliary, .transient]
it.hasShadow = true
it.contentView = NSHostingView(
rootView: SuggestionPanelView(
store: store.scope(
state: \.panelState,
action: WidgetFeature.Action.panel
).scope(
state: \.suggestionPanelState,
action: PanelFeature.Action.suggestionPanel
)
)
)
it.canBecomeKeyChecker = { false }
it.setIsVisible(true)
return it
}()
private lazy var chatPanelWindow = {
let it = ChatWindow(
contentRect: .zero,
styleMask: [.resizable],
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: ChatWindowView(
store: store.scope(
state: \.chatPanelState,
action: WidgetFeature.Action.chatPanel
)
)
.environment(\.chatTabPool, chatTabPool)
)
it.setIsVisible(true)
it.delegate = self
return it
}()
let store: StoreOf<WidgetFeature>
let viewStore: ViewStoreOf<WidgetFeature>
let chatTabPool: ChatTabPool
private var cancellable = Set<AnyCancellable>()
public let dependency: SuggestionWidgetControllerDependency
public init(
store: StoreOf<WidgetFeature>,
chatTabPool: ChatTabPool,
dependency: SuggestionWidgetControllerDependency
) {
self.dependency = dependency
self.store = store
self.chatTabPool = chatTabPool
viewStore = .init(store, observe: { $0 })
super.init()
if ProcessInfo.processInfo.environment["IS_UNIT_TEST"] == "YES" { return }
dependency.windows.chatPanelWindow = chatPanelWindow
dependency.windows.tabWindow = tabWindow
dependency.windows.sharedPanelWindow = sharedPanelWindow
dependency.windows.suggestionPanelWindow = suggestionPanelWindow
dependency.windows.fullscreenDetector = fullscreenDetector
dependency.windows.widgetWindow = widgetWindow
store.send(.startup)
}
}
// MARK: - Handle Events
public extension SuggestionWidgetController {
func suggestCode() {
store.send(.panel(.presentSuggestion))
}
func discardSuggestion() {
store.send(.panel(.discardSuggestion))
}
func markAsProcessing(_ isProcessing: Bool) {
if isProcessing {
store.send(.circularWidget(.markIsProcessing))
} else {
store.send(.circularWidget(.endIsProcessing))
}
}
func presentError(_ errorDescription: String) {
store.send(.panel(.presentError(errorDescription)))
}
func presentChatRoom() {
store.send(.chatPanel(.presentChatPanel(forceDetach: false)))
}
func presentDetachedGlobalChat() {
store.send(.chatPanel(.presentChatPanel(forceDetach: true)))
}
func closeChatRoom() {
// store.send(.chatPanel(.closeChatPanel))
}
}
// MARK: - NSWindowDelegate
extension SuggestionWidgetController: NSWindowDelegate {
public func windowWillMove(_ notification: Notification) {
guard (notification.object as? NSWindow) === chatPanelWindow else { return }
Task { @MainActor in
await Task.yield()
store.send(.chatPanel(.detachChatPanel))
}
}
public func windowDidBecomeKey(_ notification: Notification) {
guard (notification.object as? NSWindow) === chatPanelWindow else { return }
let screenFrame = NSScreen.screens.first(where: { $0.frame.origin == .zero })?
.frame ?? .zero
var mouseLocation = NSEvent.mouseLocation
let windowFrame = chatPanelWindow.frame
if mouseLocation.y > windowFrame.maxY - 16,
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)
{
chatPanelWindow.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 - 16,
currentLocation.y < windowFrame.size.height,
currentLocation.x > 0,
currentLocation.x < windowFrame.width
{
performDrag(with: event)
}
}
}