-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathChatPanelFeature.swift
More file actions
297 lines (258 loc) · 10.7 KB
/
ChatPanelFeature.swift
File metadata and controls
297 lines (258 loc) · 10.7 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
import ActiveApplicationMonitor
import AppKit
import ChatTab
import ComposableArchitecture
import GitHubCopilotService
import SwiftUI
public enum ChatTabBuilderCollection: Equatable {
case folder(title: String, kinds: [ChatTabKind])
case kind(ChatTabKind)
}
public struct ChatTabKind: Equatable {
public var builder: any ChatTabBuilder
var title: String { builder.title }
public init(_ builder: any ChatTabBuilder) {
self.builder = builder
}
public static func == (lhs: Self, rhs: Self) -> Bool {
lhs.title == rhs.title
}
}
@Reducer
public struct ChatPanelFeature {
public struct ChatTabGroup: Equatable {
public var tabInfo: IdentifiedArray<String, ChatTabInfo>
public var tabCollection: [ChatTabBuilderCollection]
public var selectedTabId: String?
public var selectedTabInfo: ChatTabInfo? {
guard let id = selectedTabId else { return tabInfo.first }
return tabInfo[id: id]
}
init(
tabInfo: IdentifiedArray<String, ChatTabInfo> = [],
tabCollection: [ChatTabBuilderCollection] = [],
selectedTabId: String? = nil
) {
self.tabInfo = tabInfo
self.tabCollection = tabCollection
self.selectedTabId = selectedTabId
}
}
@ObservableState
public struct State: Equatable {
public var chatTabGroup = ChatTabGroup()
var colorScheme: ColorScheme = .light
public internal(set) var isPanelDisplayed = false
var isDetached = false
var isFullScreen = false
}
public enum Action: Equatable {
// Window
case hideButtonClicked
case closeActiveTabClicked
case toggleChatPanelDetachedButtonClicked
case detachChatPanel
case attachChatPanel
case enterFullScreen
case exitFullScreen
case presentChatPanel(forceDetach: Bool)
// Tabs
case updateChatTabInfo(IdentifiedArray<String, ChatTabInfo>)
case createNewTapButtonHovered
case closeTabButtonClicked(id: String)
case createNewTapButtonClicked(kind: ChatTabKind?)
case tabClicked(id: String)
case appendAndSelectTab(ChatTabInfo)
case switchToNextTab
case switchToPreviousTab
case moveChatTab(from: Int, to: Int)
case focusActiveChatTab
case chatTab(id: String, action: ChatTabItem.Action)
}
@Dependency(\.suggestionWidgetControllerDependency) var suggestionWidgetControllerDependency
@Dependency(\.xcodeInspector) var xcodeInspector
@Dependency(\.activatePreviousActiveXcode) var activatePreviouslyActiveXcode
@Dependency(\.activateThisApp) var activateExtensionService
@Dependency(\.chatTabBuilderCollection) var chatTabBuilderCollection
@MainActor func toggleFullScreen() {
let window = suggestionWidgetControllerDependency.windowsController?.windows
.chatPanelWindow
window?.toggleFullScreen(nil)
}
public var body: some ReducerOf<Self> {
Reduce { state, action in
switch action {
case .hideButtonClicked:
state.isPanelDisplayed = false
if state.isFullScreen {
return .run { _ in
await MainActor.run { toggleFullScreen() }
activatePreviouslyActiveXcode()
}
}
return .run { _ in
activatePreviouslyActiveXcode()
}
case .closeActiveTabClicked:
if let id = state.chatTabGroup.selectedTabId {
return .run { send in
await send(.closeTabButtonClicked(id: id))
}
}
state.isPanelDisplayed = false
return .none
case .toggleChatPanelDetachedButtonClicked:
if state.isFullScreen, state.isDetached {
return .run { send in
await send(.attachChatPanel)
}
}
state.isDetached.toggle()
return .none
case .detachChatPanel:
state.isDetached = true
return .none
case .attachChatPanel:
if state.isFullScreen {
return .run { send in
await MainActor.run { toggleFullScreen() }
try await Task.sleep(nanoseconds: 1_000_000_000)
await send(.attachChatPanel)
}
}
state.isDetached = false
return .none
case .enterFullScreen:
state.isFullScreen = true
return .run { send in
await send(.detachChatPanel)
}
case .exitFullScreen:
state.isFullScreen = false
return .none
case let .presentChatPanel(forceDetach):
if forceDetach {
state.isDetached = true
}
state.isPanelDisplayed = true
return .run { send in
activateExtensionService()
await send(.focusActiveChatTab)
}
case let .updateChatTabInfo(chatTabInfo):
let previousSelectedIndex = state.chatTabGroup.tabInfo
.firstIndex(where: { $0.id == state.chatTabGroup.selectedTabId })
state.chatTabGroup.tabInfo = chatTabInfo
if !chatTabInfo.contains(where: { $0.id == state.chatTabGroup.selectedTabId }) {
if let previousSelectedIndex {
let proposedSelectedIndex = previousSelectedIndex - 1
if proposedSelectedIndex >= 0,
proposedSelectedIndex < chatTabInfo.endIndex
{
state.chatTabGroup.selectedTabId = chatTabInfo[proposedSelectedIndex].id
} else {
state.chatTabGroup.selectedTabId = chatTabInfo.first?.id
}
} else {
state.chatTabGroup.selectedTabId = nil
}
}
return .none
case let .closeTabButtonClicked(id):
let firstIndex = state.chatTabGroup.tabInfo.firstIndex { $0.id == id }
let nextIndex = {
guard let firstIndex else { return 0 }
let nextIndex = firstIndex - 1
return max(nextIndex, 0)
}()
state.chatTabGroup.tabInfo.removeAll { $0.id == id }
if state.chatTabGroup.tabInfo.isEmpty {
state.isPanelDisplayed = false
}
if nextIndex < state.chatTabGroup.tabInfo.count {
state.chatTabGroup.selectedTabId = state.chatTabGroup.tabInfo[nextIndex].id
} else {
state.chatTabGroup.selectedTabId = nil
}
return .none
case .createNewTapButtonHovered:
state.chatTabGroup.tabCollection = chatTabBuilderCollection()
return .none
case .createNewTapButtonClicked:
return .none // handled elsewhere
case let .tabClicked(id):
guard state.chatTabGroup.tabInfo.contains(where: { $0.id == id }) else {
state.chatTabGroup.selectedTabId = nil
return .none
}
state.chatTabGroup.selectedTabId = id
return .run { send in
await send(.focusActiveChatTab)
}
case let .appendAndSelectTab(tab):
guard !state.chatTabGroup.tabInfo.contains(where: { $0.id == tab.id })
else { return .none }
state.chatTabGroup.tabInfo.append(tab)
state.chatTabGroup.selectedTabId = tab.id
return .run { send in
await send(.focusActiveChatTab)
}
case .switchToNextTab:
let selectedId = state.chatTabGroup.selectedTabId
guard let index = state.chatTabGroup.tabInfo
.firstIndex(where: { $0.id == selectedId })
else { return .none }
let nextIndex = index + 1
if nextIndex >= state.chatTabGroup.tabInfo.endIndex {
return .none
}
let targetId = state.chatTabGroup.tabInfo[nextIndex].id
state.chatTabGroup.selectedTabId = targetId
return .run { send in
await send(.focusActiveChatTab)
}
case .switchToPreviousTab:
let selectedId = state.chatTabGroup.selectedTabId
guard let index = state.chatTabGroup.tabInfo
.firstIndex(where: { $0.id == selectedId })
else { return .none }
let previousIndex = index - 1
if previousIndex < 0 || previousIndex >= state.chatTabGroup.tabInfo.endIndex {
return .none
}
let targetId = state.chatTabGroup.tabInfo[previousIndex].id
state.chatTabGroup.selectedTabId = targetId
return .run { send in
await send(.focusActiveChatTab)
}
case let .moveChatTab(from, to):
guard from >= 0, from < state.chatTabGroup.tabInfo.endIndex, to >= 0,
to <= state.chatTabGroup.tabInfo.endIndex
else {
return .none
}
let tab = state.chatTabGroup.tabInfo[from]
state.chatTabGroup.tabInfo.remove(at: from)
state.chatTabGroup.tabInfo.insert(tab, at: to)
return .none
case .focusActiveChatTab:
guard FeatureFlagNotifierImpl.shared.featureFlags.chat else {
return .none
}
let id = state.chatTabGroup.selectedTabInfo?.id
guard let id else { return .none }
return .run { send in
await send(.chatTab(id: id, action: .focus))
}
case let .chatTab(id, .close):
return .run { send in
await send(.closeTabButtonClicked(id: id))
}
case .chatTab:
return .none
}
}.forEach(\.chatTabGroup.tabInfo, action: /Action.chatTab) {
ChatTabItem()
}
}
}