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
200 lines (184 loc) · 7.59 KB
/
SuggestionWidgetController.swift
File metadata and controls
200 lines (184 loc) · 7.59 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
import ActiveApplicationMonitor
import AppKit
import AXNotificationStream
import Environment
import SwiftUI
@MainActor
public final class SuggestionWidgetController {
private lazy var widgetWindow = {
let it = NSWindow(
contentRect: .zero,
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .statusBar
it.contentView = NSHostingView(
rootView: WidgetView(
viewModel: widgetViewModel,
panelViewModel: suggestionPanelViewModel
)
)
it.setIsVisible(true)
return it
}()
private lazy var panelWindow = {
let it = NSWindow(
contentRect: .zero,
styleMask: .borderless,
backing: .buffered,
defer: false
)
it.isReleasedWhenClosed = false
it.isOpaque = false
it.backgroundColor = .clear
it.level = .statusBar
it.contentView = NSHostingView(
rootView: SuggestionPanelView(viewModel: suggestionPanelViewModel)
)
it.setIsVisible(true)
return it
}()
let widgetViewModel = WidgetViewModel()
let suggestionPanelViewModel = SuggestionPanelViewModel()
private var windowChangeObservationTask: Task<Void, Error>?
private var activeApplicationMonitorTask: Task<Void, Error>?
private var xcode: NSRunningApplication?
private var suggestionForFiles: [URL: Suggestion] = [:]
enum Suggestion {
case code([String], startLineIndex: Int)
}
public nonisolated init() {
Task { @MainActor in
activeApplicationMonitorTask = Task { [weak self] in
var previousApp: NSRunningApplication?
for await app in ActiveApplicationMonitor.createStream() {
guard let self else { return }
try Task.checkCancellation()
defer { previousApp = app }
if let app = ActiveApplicationMonitor.activeXcode {
if app != previousApp {
windowChangeObservationTask?.cancel()
windowChangeObservationTask = nil
self.observeXcodeWindowChangeIfNeeded(app)
}
self.updateWindowLocation()
} else {
panelWindow.alphaValue = 0
widgetWindow.alphaValue = 0
}
}
}
}
}
public func suggestCode(_ code: String, startLineIndex: Int, fileURL: URL) {
withAnimation(.easeInOut(duration: 0.2)) {
suggestionPanelViewModel.suggestion = code.split(separator: "\n").map(String.init)
suggestionPanelViewModel.startLineIndex = startLineIndex
suggestionPanelViewModel.isPanelDisplayed = true
suggestionForFiles[fileURL] = .code(
suggestionPanelViewModel.suggestion,
startLineIndex: startLineIndex
)
widgetViewModel.isProcessing = false
}
}
public func discardSuggestion(fileURL: URL) {
withAnimation(.easeInOut(duration: 0.2)) {
suggestionForFiles[fileURL] = nil
suggestionPanelViewModel.suggestion = []
suggestionPanelViewModel.startLineIndex = 0
suggestionPanelViewModel.isPanelDisplayed = false
widgetViewModel.isProcessing = false
}
}
public func markAsProcessing(_ isProcessing: Bool) {
widgetViewModel.isProcessing = isProcessing
}
private func observeXcodeWindowChangeIfNeeded(_ app: NSRunningApplication) {
xcode = app
guard windowChangeObservationTask == nil else { return }
windowChangeObservationTask = Task { [weak self] in
let notifications = AXNotificationStream(
app: app,
notificationNames:
kAXMovedNotification,
kAXResizedNotification,
kAXMainWindowChangedNotification,
kAXFocusedWindowChangedNotification,
kAXFocusedUIElementChangedNotification
)
for await notification in notifications {
guard let self else { return }
try Task.checkCancellation()
self.updateWindowLocation()
if notification.name == kAXFocusedUIElementChangedNotification {
guard let fileURL = try? await Environment.fetchCurrentFileURL(),
let suggestion = suggestionForFiles[fileURL]
else {
suggestionPanelViewModel.suggestion = []
continue
}
switch suggestion {
case let .code(code, startLineIndex):
suggestionPanelViewModel.suggestion = code
suggestionPanelViewModel.startLineIndex = startLineIndex
}
}
}
}
}
/// Update the window location.
///
/// - note: It's possible to get the scroll view's postion by getting position on the focus
/// element.
private func updateWindowLocation() {
if let xcode {
let application = AXUIElementCreateApplication(xcode.processIdentifier)
if let focusElement: AXUIElement = try? application
.copyValue(key: kAXFocusedUIElementAttribute),
let focusElementType: String = try? focusElement
.copyValue(key: kAXDescriptionAttribute),
focusElementType == "Source Editor",
let parent: AXUIElement = try? focusElement.copyValue(key: kAXParentAttribute),
let positionValue: AXValue = try? parent
.copyValue(key: kAXPositionAttribute),
let sizeValue: AXValue = try? parent
.copyValue(key: kAXSizeAttribute)
{
var position: CGPoint = .zero
let foundPosition = AXValueGetValue(positionValue, .cgPoint, &position)
var size: CGSize = .zero
let foundSize = AXValueGetValue(sizeValue, .cgSize, &size)
let screen = NSScreen.screens.first
let frame = CGRect(origin: position, size: size)
if foundSize, foundPosition, let screen {
let anchorFrame = CGRect(
x: frame.maxX - 4 - 30,
y: screen.frame.height - frame.minY - 30 - 4,
width: 30,
height: 30
)
widgetWindow.setFrame(anchorFrame, display: false)
let proposedPanelX = anchorFrame.maxX + 8
let putPanelToTheRight = screen.frame.maxX > proposedPanelX + 450
let panelFrame = CGRect(
x: putPanelToTheRight ? proposedPanelX : anchorFrame.maxX - 450,
y: putPanelToTheRight ? anchorFrame.minY - 300 + 30 : anchorFrame.minY - 300 - 4,
width: 450,
height: 300
)
panelWindow.setFrame(panelFrame, display: false)
panelWindow.alphaValue = 1
widgetWindow.alphaValue = 1
return
}
}
}
panelWindow.alphaValue = 0
widgetWindow.alphaValue = 0
}
}