forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWidgetDataSource.swift
More file actions
67 lines (64 loc) · 2.49 KB
/
WidgetDataSource.swift
File metadata and controls
67 lines (64 loc) · 2.49 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
import ActiveApplicationMonitor
import AppActivator
import AppKit
import ChatService
import ComposableArchitecture
import Foundation
import GitHubCopilotService
import ChatAPIService
import PromptToCodeService
import SuggestionBasic
import SuggestionWidget
@MainActor
final class WidgetDataSource {}
extension WidgetDataSource: SuggestionWidgetDataSource {
func suggestionForFile(at url: URL) async -> CodeSuggestionProvider? {
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.rawValue,
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()
NSWorkspace.activatePreviousActiveXcode()
}
},
onAcceptSuggestionTapped: {
Task {
let handler = PseudoCommandHandler()
await handler.acceptSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
},
onDismissSuggestionTapped: {
Task {
let handler = PseudoCommandHandler()
await handler.dismissSuggestion()
NSWorkspace.activatePreviousActiveXcode()
}
}
)
}
}
return nil
}
}