forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPromptToCodePanel.swift
More file actions
290 lines (250 loc) · 11.3 KB
/
Copy pathPromptToCodePanel.swift
File metadata and controls
290 lines (250 loc) · 11.3 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
import AppKit
import ComposableArchitecture
import CustomAsyncAlgorithms
import Dependencies
import Foundation
import Preferences
import PromptToCodeBasic
import PromptToCodeCustomization
import PromptToCodeService
import SuggestionBasic
@Reducer
public struct PromptToCodePanel {
@ObservableState
public struct State: Identifiable {
public enum FocusField: Equatable {
case textField
}
@Shared public var promptToCodeState: PromptToCodeState
public var id: URL { promptToCodeState.source.documentURL }
public var indentSize: Int
public var usesTabsForIndentation: Bool
public var commandName: String?
public var isContinuous: Bool
public var focusedField: FocusField? = .textField
public var filename: String {
promptToCodeState.source.documentURL.lastPathComponent
}
public var canRevert: Bool { !promptToCodeState.history.isEmpty }
public var generateDescriptionRequirement: Bool
public var hasEnded = false
public var snippetPanels: IdentifiedArrayOf<PromptToCodeSnippetPanel.State> {
get {
IdentifiedArrayOf(
uniqueElements: promptToCodeState.snippets.reversed().map {
PromptToCodeSnippetPanel.State(snippet: $0)
}
)
}
set {
promptToCodeState.snippets = IdentifiedArrayOf(
uniqueElements: newValue.map(\.snippet).reversed()
)
}
}
public init(
promptToCodeState: Shared<PromptToCodeState>,
indentSize: Int,
usesTabsForIndentation: Bool,
commandName: String? = nil,
isContinuous: Bool = false,
generateDescriptionRequirement: Bool = UserDefaults.shared
.value(for: \.promptToCodeGenerateDescription)
) {
_promptToCodeState = promptToCodeState
self.isContinuous = isContinuous
self.indentSize = indentSize
self.usesTabsForIndentation = usesTabsForIndentation
self.generateDescriptionRequirement = generateDescriptionRequirement
self.commandName = commandName
focusedField = .textField
}
}
public enum Action: BindableAction {
case binding(BindingAction<State>)
case focusOnTextField
case selectionRangeToggleTapped
case modifyCodeButtonTapped
case revertButtonTapped
case stopRespondingButtonTapped
case modifyCodeFinished
case modifyCodeCancelled
case cancelButtonTapped
case acceptButtonTapped
case acceptAndContinueButtonTapped
case appendNewLineToPromptButtonTapped
case snippetPanel(IdentifiedActionOf<PromptToCodeSnippetPanel>)
}
@Dependency(\.commandHandler) var commandHandler
@Dependency(\.promptToCodeService) var promptToCodeService
@Dependency(\.activateThisApp) var activateThisApp
@Dependency(\.activatePreviousActiveXcode) var activatePreviousActiveXcode
enum CancellationKey: Hashable {
case modifyCode(State.ID)
}
public var body: some ReducerOf<Self> {
BindingReducer()
Reduce { state, action in
switch action {
case .binding:
return .none
case .snippetPanel:
return .none
case .focusOnTextField:
state.focusedField = .textField
return .none
case .selectionRangeToggleTapped:
state.promptToCodeState.isAttachedToTarget.toggle()
return .none
case .modifyCodeButtonTapped:
guard !state.promptToCodeState.isGenerating else { return .none }
let copiedState = state
state.promptToCodeState.isGenerating = true
state.promptToCodeState.pushHistory()
let snippets = state.promptToCodeState.snippets
return .run { send in
do {
_ = try await withThrowingTaskGroup(of: Void.self) { group in
for snippet in snippets {
group.addTask {
let stream = try await promptToCodeService.modifyCode(
code: snippet.originalCode,
requirement: copiedState.promptToCodeState.instruction,
source: .init(
language: copiedState.promptToCodeState.source.language,
documentURL: copiedState.promptToCodeState.source
.documentURL,
projectRootURL: copiedState.promptToCodeState.source
.projectRootURL,
content: copiedState.promptToCodeState.source.content,
lines: copiedState.promptToCodeState.source.lines,
range: snippet.attachedRange
),
isDetached: !copiedState.promptToCodeState
.isAttachedToTarget,
extraSystemPrompt: copiedState.promptToCodeState
.extraSystemPrompt,
generateDescriptionRequirement: copiedState
.generateDescriptionRequirement
).timedDebounce(for: 0.2)
do {
for try await fragment in stream {
try Task.checkCancellation()
await send(.snippetPanel(.element(
id: snippet.id,
action: .modifyCodeChunkReceived(
code: fragment.code,
description: fragment.description
)
)))
}
} catch is CancellationError {
throw CancellationError()
} catch {
try Task.checkCancellation()
if (error as NSError).code == NSURLErrorCancelled {
await send(.snippetPanel(.element(
id: snippet.id,
action: .modifyCodeFailed(error: "Cancelled")
)))
return
}
await send(.snippetPanel(.element(
id: snippet.id,
action: .modifyCodeFailed(
error: error
.localizedDescription
)
)))
}
}
}
try await group.waitForAll()
}
await send(.modifyCodeFinished)
} catch is CancellationError {
try Task.checkCancellation()
await send(.modifyCodeCancelled)
} catch {
await send(.modifyCodeFinished)
}
}.cancellable(id: CancellationKey.modifyCode(state.id), cancelInFlight: true)
case .revertButtonTapped:
state.promptToCodeState.popHistory()
return .none
case .stopRespondingButtonTapped:
state.promptToCodeState.isGenerating = false
promptToCodeService.stopResponding()
return .cancel(id: CancellationKey.modifyCode(state.id))
case .modifyCodeFinished:
state.promptToCodeState.instruction = ""
state.promptToCodeState.isGenerating = false
if state.promptToCodeState.snippets.allSatisfy({ snippet in
snippet.modifiedCode.isEmpty && snippet.description.isEmpty
}) {
// if both code and description are empty, we treat it as failed
return .run { send in
await send(.revertButtonTapped)
}
}
return .none
case .modifyCodeCancelled:
state.promptToCodeState.isGenerating = false
return .none
case .cancelButtonTapped:
promptToCodeService.stopResponding()
return .cancel(id: CancellationKey.modifyCode(state.id))
case .acceptButtonTapped:
state.hasEnded = true
return .run { _ in
await commandHandler.acceptPromptToCode()
activatePreviousActiveXcode()
}
case .acceptAndContinueButtonTapped:
return .run { _ in
await commandHandler.acceptPromptToCode()
activateThisApp()
}
case .appendNewLineToPromptButtonTapped:
state.promptToCodeState.instruction += "\n"
return .none
}
}
Reduce { _, _ in .none }.forEach(\.snippetPanels, action: \.snippetPanel) {
PromptToCodeSnippetPanel()
}
}
}
@Reducer
public struct PromptToCodeSnippetPanel {
@ObservableState
public struct State: Identifiable {
public var id: UUID { snippet.id }
var snippet: PromptToCodeSnippet
}
public enum Action {
case modifyCodeFinished
case modifyCodeChunkReceived(code: String, description: String)
case modifyCodeFailed(error: String)
case copyCodeButtonTapped
}
public var body: some ReducerOf<Self> {
Reduce { state, action in
switch action {
case .modifyCodeFinished:
return .none
case let .modifyCodeChunkReceived(code, description):
state.snippet.modifiedCode = code
state.snippet.description = description
return .none
case let .modifyCodeFailed(error):
state.snippet.error = error
return .none
case .copyCodeButtonTapped:
NSPasteboard.general.clearContents()
NSPasteboard.general.setString(state.snippet.modifiedCode, forType: .string)
return .none
}
}
}
}