-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathFileSelectionSection.swift
More file actions
213 lines (182 loc) · 6.42 KB
/
FileSelectionSection.swift
File metadata and controls
213 lines (182 loc) · 6.42 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
import ComposableArchitecture
import ConversationServiceProvider
import LanguageServerProtocol
import SharedUIComponents
import SwiftUI
// MARK: - File Selection Section
struct FileSelectionSection: View {
let store: StoreOf<Chat>
let round: CodeReviewRound
let changedFileUris: [DocumentUri]
@Binding var selectedFileUris: [DocumentUri]
@AppStorage(\.chatFontSize) private var chatFontSize
var body: some View {
VStack(alignment: .leading, spacing: 8) {
FileSelectionHeader(fileCount: selectedFileUris.count)
.frame(maxWidth: .infinity, alignment: .leading)
FileSelectionList(
store: store,
fileUris: changedFileUris,
reviewStatus: round.status,
selectedFileUris: $selectedFileUris
)
if round.status == .waitForConfirmation {
FileSelectionActions(
store: store,
roundId: round.id,
selectedFileUris: selectedFileUris
)
}
}
.padding(12)
.background(CodeReviewCardBackground())
}
}
// MARK: - File Selection Components
private struct FileSelectionHeader: View {
let fileCount: Int
@AppStorage(\.chatFontSize) private var chatFontSize
var body: some View {
HStack(alignment: .top, spacing: 6) {
Image("Sparkle")
.resizable()
.frame(width: 16, height: 16)
Text("You’ve selected following \(fileCount) file(s) with code changes. Review them or unselect any files you don't need, then click Continue.")
.font(.system(size: chatFontSize))
.multilineTextAlignment(.leading)
}
}
}
private struct FileSelectionActions: View {
let store: StoreOf<Chat>
let roundId: String
let selectedFileUris: [DocumentUri]
var body: some View {
HStack(spacing: 4) {
Button("Cancel") {
store.send(.codeReview(.cancel(id: roundId)))
}
.buttonStyle(.bordered)
.controlSize(.large)
Button("Continue") {
store.send(.codeReview(.accept(id: roundId, selectedFiles: selectedFileUris)))
}
.buttonStyle(.borderedProminent)
.controlSize(.large)
}
}
}
// MARK: - File Selection List
private struct FileSelectionList: View {
let store: StoreOf<Chat>
let fileUris: [DocumentUri]
let reviewStatus: CodeReviewRound.Status
@State private var isExpanded = false
@Binding var selectedFileUris: [DocumentUri]
@AppStorage(\.chatFontSize) private var chatFontSize
private static let defaultVisibleFileCount = 5
private var hasMoreFiles: Bool {
fileUris.count > Self.defaultVisibleFileCount
}
var body: some View {
let visibleFileUris = Array(fileUris.prefix(Self.defaultVisibleFileCount))
let additionalFileUris = Array(fileUris.dropFirst(Self.defaultVisibleFileCount))
WithPerceptionTracking {
VStack(alignment: .leading, spacing: 4) {
FileToggleList(
fileUris: visibleFileUris,
reviewStatus: reviewStatus,
selectedFileUris: $selectedFileUris
)
if hasMoreFiles {
if !isExpanded {
ExpandFilesButton(isExpanded: $isExpanded)
}
if isExpanded {
FileToggleList(
fileUris: additionalFileUris,
reviewStatus: reviewStatus,
selectedFileUris: $selectedFileUris
)
}
}
}
}
.frame(alignment: .leading)
}
}
private struct ExpandFilesButton: View {
@Binding var isExpanded: Bool
@AppStorage(\.chatFontSize) private var chatFontSize
var body: some View {
HStack(spacing: 2) {
Image("chevron.down")
.resizable()
.frame(width: 16, height: 16)
Button(action: { isExpanded = true }) {
Text("Show more")
.font(.system(size: chatFontSize))
.underline()
.lineSpacing(20)
}
.buttonStyle(PlainButtonStyle())
}
.foregroundColor(.blue)
}
}
private struct FileToggleList: View {
let fileUris: [DocumentUri]
let reviewStatus: CodeReviewRound.Status
@Binding var selectedFileUris: [DocumentUri]
var body: some View {
ForEach(fileUris, id: \.self) { fileUri in
FileSelectionRow(
fileUri: fileUri,
reviewStatus: reviewStatus,
isSelected: createSelectionBinding(for: fileUri)
)
}
}
private func createSelectionBinding(for fileUri: DocumentUri) -> Binding<Bool> {
Binding<Bool>(
get: { selectedFileUris.contains(fileUri) },
set: { isSelected in
if isSelected {
if !selectedFileUris.contains(fileUri) {
selectedFileUris.append(fileUri)
}
} else {
selectedFileUris.removeAll { $0 == fileUri }
}
}
)
}
}
private struct FileSelectionRow: View {
let fileUri: DocumentUri
let reviewStatus: CodeReviewRound.Status
@Binding var isSelected: Bool
private var fileURL: URL? {
URL(string: fileUri)
}
private var isInteractionEnabled: Bool {
reviewStatus == .waitForConfirmation
}
var body: some View {
HStack {
Toggle(isOn: $isSelected) {
HStack(spacing: 8) {
drawFileIcon(fileURL)
.resizable()
.scaledToFit()
.frame(width: 16, height: 16)
Text(fileURL?.lastPathComponent ?? fileUri)
.lineLimit(1)
.truncationMode(.middle)
}
}
.toggleStyle(CheckboxToggleStyle())
.disabled(!isInteractionEnabled)
}
}
}