forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWidgetDataSource.swift
More file actions
68 lines (65 loc) · 2.61 KB
/
WidgetDataSource.swift
File metadata and controls
68 lines (65 loc) · 2.61 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
import ActiveApplicationMonitor
import ChatService
import ComposableArchitecture
import Foundation
import GitHubCopilotService
import OpenAIService
import PromptToCodeService
import SuggestionModel
import SuggestionWidget
@MainActor
final class WidgetDataSource {}
extension WidgetDataSource: SuggestionWidgetDataSource {
func suggestionForFile(at url: URL) async -> SuggestionProvider? {
for workspace in Service.shared.workspacePool.workspaces.values {
if let filespace = workspace.filespaces[url],
let suggestion = filespace.presentingSuggestion
{
return .init(
code: suggestion.text,
language: filespace.language,
startLineIndex: suggestion.position.line,
suggestionCount: filespace.suggestions.count,
currentSuggestionIndex: filespace.suggestionIndex,
onSelectPreviousSuggestionTapped: {
Task {
let handler = PseudoCommandHandler()
await handler.presentPreviousSuggestion()
}
},
onSelectNextSuggestionTapped: {
Task {
let handler = PseudoCommandHandler()
await handler.presentNextSuggestion()
}
},
onRejectSuggestionTapped: {
Task {
let handler = PseudoCommandHandler()
await handler.rejectSuggestions()
if let app = ActiveApplicationMonitor.shared.previousApp,
app.isXcode
{
try await Task.sleep(nanoseconds: 200_000_000)
app.activate()
}
}
},
onAcceptSuggestionTapped: {
Task {
let handler = PseudoCommandHandler()
await handler.acceptSuggestion()
if let app = ActiveApplicationMonitor.shared.previousApp,
app.isXcode
{
try await Task.sleep(nanoseconds: 200_000_000)
app.activate()
}
}
}
)
}
}
return nil
}
}