-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathPromptToCode.swift
More file actions
276 lines (242 loc) · 10 KB
/
PromptToCode.swift
File metadata and controls
276 lines (242 loc) · 10 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
import AppKit
import ComposableArchitecture
import CustomAsyncAlgorithms
import Dependencies
import Foundation
import PromptToCodeService
import SuggestionBasic
public struct PromptToCodeAcceptHandlerDependencyKey: DependencyKey {
public static let liveValue: (PromptToCode.State) -> Void = { _ in
assertionFailure("Please provide a handler")
}
public static let previewValue: (PromptToCode.State) -> Void = { _ in
print("Accept Prompt to Code")
}
}
public extension DependencyValues {
var promptToCodeAcceptHandler: (PromptToCode.State) -> Void {
get { self[PromptToCodeAcceptHandlerDependencyKey.self] }
set { self[PromptToCodeAcceptHandlerDependencyKey.self] = newValue }
}
}
@Reducer
public struct PromptToCode {
@ObservableState
public struct State: Equatable, Identifiable {
public indirect enum HistoryNode: Equatable {
case empty
case node(code: String, description: String, previous: HistoryNode)
mutating func enqueue(code: String, description: String) {
let current = self
self = .node(code: code, description: description, previous: current)
}
mutating func pop() -> (code: String, description: String)? {
switch self {
case .empty:
return nil
case let .node(code, description, previous):
self = previous
return (code, description)
}
}
}
public enum FocusField: Equatable {
case textField
}
public var id: URL { documentURL }
public var history: HistoryNode
public var code: String
public var isResponding: Bool
public var description: String
public var error: String?
public var selectionRange: CursorRange?
public var language: CodeLanguage
public var indentSize: Int
public var usesTabsForIndentation: Bool
public var projectRootURL: URL
public var documentURL: URL
public var allCode: String
public var allLines: [String]
public var extraSystemPrompt: String?
public var generateDescriptionRequirement: Bool?
public var commandName: String?
public var prompt: String
public var isContinuous: Bool
public var isAttachedToSelectionRange: Bool
public var focusedField: FocusField? = .textField
public var filename: String { documentURL.lastPathComponent }
public var canRevert: Bool { history != .empty }
public init(
code: String,
prompt: String,
language: CodeLanguage,
indentSize: Int,
usesTabsForIndentation: Bool,
projectRootURL: URL,
documentURL: URL,
allCode: String,
allLines: [String],
commandName: String? = nil,
description: String = "",
isResponding: Bool = false,
isAttachedToSelectionRange: Bool = true,
error: String? = nil,
history: HistoryNode = .empty,
isContinuous: Bool = false,
selectionRange: CursorRange? = nil,
extraSystemPrompt: String? = nil,
generateDescriptionRequirement: Bool? = nil
) {
self.history = history
self.code = code
self.prompt = prompt
self.isResponding = isResponding
self.description = description
self.error = error
self.isContinuous = isContinuous
self.selectionRange = selectionRange
self.language = language
self.indentSize = indentSize
self.usesTabsForIndentation = usesTabsForIndentation
self.projectRootURL = projectRootURL
self.documentURL = documentURL
self.allCode = allCode
self.allLines = allLines
self.extraSystemPrompt = extraSystemPrompt
self.generateDescriptionRequirement = generateDescriptionRequirement
self.isAttachedToSelectionRange = isAttachedToSelectionRange
self.commandName = commandName
if selectionRange?.isEmpty ?? true {
self.isAttachedToSelectionRange = false
}
}
}
public enum Action: Equatable, BindableAction {
case binding(BindingAction<State>)
case focusOnTextField
case selectionRangeToggleTapped
case modifyCodeButtonTapped
case revertButtonTapped
case stopRespondingButtonTapped
case modifyCodeFinished
case modifyCodeChunkReceived(code: String, description: String)
case modifyCodeFailed(error: String)
case modifyCodeCancelled
case cancelButtonTapped
case acceptButtonTapped
case copyCodeButtonTapped
case appendNewLineToPromptButtonTapped
}
@Dependency(\.promptToCodeService) var promptToCodeService
@Dependency(\.promptToCodeAcceptHandler) var promptToCodeAcceptHandler
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 .focusOnTextField:
state.focusedField = .textField
return .none
case .selectionRangeToggleTapped:
state.isAttachedToSelectionRange.toggle()
return .none
case .modifyCodeButtonTapped:
guard !state.isResponding else { return .none }
let copiedState = state
state.history.enqueue(code: state.code, description: state.description)
state.isResponding = true
state.code = ""
state.description = ""
state.error = nil
return .run { send in
do {
let stream = try await promptToCodeService.modifyCode(
code: copiedState.code,
requirement: copiedState.prompt,
source: .init(
language: copiedState.language,
documentURL: copiedState.documentURL,
projectRootURL: copiedState.projectRootURL,
content: copiedState.allCode,
lines: copiedState.allLines,
range: copiedState.selectionRange ?? .outOfScope
),
isDetached: !copiedState.isAttachedToSelectionRange,
extraSystemPrompt: copiedState.extraSystemPrompt,
generateDescriptionRequirement: copiedState
.generateDescriptionRequirement
).timedDebounce(for: 0.2)
for try await fragment in stream {
try Task.checkCancellation()
await send(.modifyCodeChunkReceived(
code: fragment.code,
description: fragment.description
))
}
try Task.checkCancellation()
await send(.modifyCodeFinished)
} catch is CancellationError {
try Task.checkCancellation()
await send(.modifyCodeCancelled)
} catch {
try Task.checkCancellation()
if (error as NSError).code == NSURLErrorCancelled {
await send(.modifyCodeCancelled)
return
}
await send(.modifyCodeFailed(error: error.localizedDescription))
}
}.cancellable(id: CancellationKey.modifyCode(state.id), cancelInFlight: true)
case .revertButtonTapped:
guard let (code, description) = state.history.pop() else { return .none }
state.code = code
state.description = description
return .none
case .stopRespondingButtonTapped:
state.isResponding = false
promptToCodeService.stopResponding()
return .cancel(id: CancellationKey.modifyCode(state.id))
case let .modifyCodeChunkReceived(code, description):
state.code = code
state.description = description
return .none
case .modifyCodeFinished:
state.prompt = ""
state.isResponding = false
if state.code.isEmpty, state.description.isEmpty {
// if both code and description are empty, we treat it as failed
return .run { send in
await send(.revertButtonTapped)
}
}
return .none
case let .modifyCodeFailed(error):
state.error = error
state.isResponding = false
return .run { send in
await send(.revertButtonTapped)
}
case .modifyCodeCancelled:
state.isResponding = false
return .none
case .cancelButtonTapped:
promptToCodeService.stopResponding()
return .none
case .acceptButtonTapped:
promptToCodeAcceptHandler(state)
return .none
case .copyCodeButtonTapped:
NSPasteboard.general.clearContents()
NSPasteboard.general.setString(state.code, forType: .string)
return .none
case .appendNewLineToPromptButtonTapped:
state.prompt += "\n"
return .none
}
}
}
}