-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathcontext-mentions.ts
More file actions
406 lines (349 loc) · 12.6 KB
/
context-mentions.ts
File metadata and controls
406 lines (349 loc) · 12.6 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
import { Fzf } from "fzf"
import type { ModeConfig, Command } from "@roo-code/types"
import { mentionRegex } from "@roo/context-mentions"
import { escapeSpaces } from "./path-mentions"
/**
* Gets the description for a mode, prioritizing description > whenToUse > roleDefinition
* and taking only the first line
*/
function getModeDescription(mode: ModeConfig): string {
return (mode.description || mode.whenToUse || mode.roleDefinition).split("\n")[0]
}
export interface SearchResult {
path: string
type: "file" | "folder"
label?: string
}
function getBasename(filepath: string): string {
return filepath.split("/").pop() || filepath
}
export function insertMention(
text: string,
position: number,
value: string,
isSlashCommand: boolean = false,
): { newValue: string; mentionIndex: number } {
// Handle slash command selection (only when explicitly selecting a slash command)
if (isSlashCommand) {
const beforeCursor = text.slice(0, position)
const afterCursor = text.slice(position)
// Find the start of the current line
const currentLineStart = beforeCursor.lastIndexOf("\n") + 1
const beforeLine = text.slice(0, currentLineStart)
// Replace slash command token on the current line (from line start to cursor)
const newValue = beforeLine + value + afterCursor
return {
newValue,
mentionIndex: currentLineStart,
}
}
const beforeCursor = text.slice(0, position)
const afterCursor = text.slice(position)
// Find the position of the last '@' symbol before the cursor
const lastAtIndex = beforeCursor.lastIndexOf("@")
// Process the value - escape spaces if it's a file path
let processedValue = value
if (value && value.startsWith("/")) {
// Only escape if the path contains spaces that aren't already escaped
if (value.includes(" ") && !value.includes("\\ ")) {
processedValue = escapeSpaces(value)
}
}
let newValue: string
let mentionIndex: number
if (lastAtIndex !== -1) {
// If there's an '@' symbol, replace everything after it with the new mention
const beforeMention = text.slice(0, lastAtIndex)
// Only replace if afterCursor is all alphanumerical
// This is required to handle languages that don't use space as a word separator (chinese, japanese, korean, etc)
const afterCursorContent = /^[a-zA-Z0-9\s]*$/.test(afterCursor)
? afterCursor.replace(/^[^\s]*/, "")
: afterCursor
newValue = beforeMention + "@" + processedValue + " " + afterCursorContent
mentionIndex = lastAtIndex
} else {
// If there's no '@' symbol, insert the mention at the cursor position
newValue = beforeCursor + "@" + processedValue + " " + afterCursor
mentionIndex = position
}
return { newValue, mentionIndex }
}
export function removeMention(text: string, position: number): { newText: string; newPosition: number } {
const beforeCursor = text.slice(0, position)
const afterCursor = text.slice(position)
// Check if we're at the end of a mention
const matchEnd = beforeCursor.match(new RegExp(mentionRegex.source + "$"))
if (matchEnd) {
// If we're at the end of a mention, remove it
// Remove the mention and the first space that follows it
const mentionLength = matchEnd[0].length
// Remove the mention and one space after it if it exists
const newText = text.slice(0, position - mentionLength) + afterCursor.replace(/^\s/, "")
const newPosition = position - mentionLength
return { newText, newPosition }
}
// If we're not at the end of a mention, just return the original text and position
return { newText: text, newPosition: position }
}
export enum ContextMenuOptionType {
OpenedFile = "openedFile",
File = "file",
Folder = "folder",
Problems = "problems",
Terminal = "terminal",
URL = "url",
Git = "git",
NoResults = "noResults",
Mode = "mode", // Add mode type
Command = "command", // Add command type
SectionHeader = "sectionHeader", // Add section header type
}
export interface ContextMenuQueryItem {
type: ContextMenuOptionType
value?: string
label?: string
description?: string
icon?: string
slashCommand?: string
secondaryText?: string
argumentHint?: string
}
export function getContextMenuOptions(
query: string,
selectedType: ContextMenuOptionType | null = null,
queryItems: ContextMenuQueryItem[],
dynamicSearchResults: SearchResult[] = [],
modes?: ModeConfig[],
commands?: Command[],
): ContextMenuQueryItem[] {
// Handle slash commands for modes and commands
// Only process as slash command if the query itself starts with "/" (meaning we're typing a slash command)
if (query.startsWith("/")) {
const slashQuery = query.slice(1)
const results: ContextMenuQueryItem[] = []
// Add command suggestions first (prioritize commands at the top)
if (commands?.length) {
// Create searchable strings array for fzf
const searchableCommands = commands.map((command) => ({
original: command,
searchStr: command.name,
}))
// Initialize fzf instance for fuzzy search
const fzf = new Fzf(searchableCommands, {
selector: (item) => item.searchStr,
})
// Get fuzzy matching commands
const matchingCommands = slashQuery
? fzf.find(slashQuery).map((result) => ({
type: ContextMenuOptionType.Command,
value: result.item.original.name,
slashCommand: `/${result.item.original.name}`,
description: result.item.original.description,
argumentHint: result.item.original.argumentHint,
}))
: commands.map((command) => ({
type: ContextMenuOptionType.Command,
value: command.name,
slashCommand: `/${command.name}`,
description: command.description,
argumentHint: command.argumentHint,
}))
if (matchingCommands.length > 0) {
results.push({
type: ContextMenuOptionType.SectionHeader,
label: "Commands",
})
results.push(...matchingCommands)
}
}
// Add mode suggestions second
if (modes?.length) {
// Create searchable strings array for fzf
const searchableItems = modes.map((mode) => ({
original: mode,
searchStr: mode.name,
}))
// Initialize fzf instance for fuzzy search
const fzf = new Fzf(searchableItems, {
selector: (item) => item.searchStr,
})
// Get fuzzy matching items
const matchingModes = slashQuery
? fzf.find(slashQuery).map((result) => ({
type: ContextMenuOptionType.Mode,
value: result.item.original.slug,
slashCommand: `/${result.item.original.slug}`,
description: getModeDescription(result.item.original),
}))
: modes.map((mode) => ({
type: ContextMenuOptionType.Mode,
value: mode.slug,
slashCommand: `/${mode.slug}`,
description: getModeDescription(mode),
}))
if (matchingModes.length > 0) {
results.push({
type: ContextMenuOptionType.SectionHeader,
label: "Modes",
})
results.push(...matchingModes)
}
}
return results.length > 0 ? results : [{ type: ContextMenuOptionType.NoResults }]
}
const workingChanges: ContextMenuQueryItem = {
type: ContextMenuOptionType.Git,
value: "git-changes",
label: "Working changes",
description: "Current uncommitted changes",
icon: "$(git-commit)",
}
if (query === "") {
if (selectedType === ContextMenuOptionType.File) {
const files = queryItems
.filter(
(item) =>
item.type === ContextMenuOptionType.File || item.type === ContextMenuOptionType.OpenedFile,
)
.map((item) => ({
type: item.type,
value: item.value,
}))
return files.length > 0 ? files : [{ type: ContextMenuOptionType.NoResults }]
}
if (selectedType === ContextMenuOptionType.Folder) {
const folders = queryItems
.filter((item) => item.type === ContextMenuOptionType.Folder)
.map((item) => ({ type: ContextMenuOptionType.Folder, value: item.value }))
return folders.length > 0 ? folders : [{ type: ContextMenuOptionType.NoResults }]
}
if (selectedType === ContextMenuOptionType.Git) {
const commits = queryItems.filter((item) => item.type === ContextMenuOptionType.Git)
return commits.length > 0 ? [workingChanges, ...commits] : [workingChanges]
}
return [
{ type: ContextMenuOptionType.Problems },
{ type: ContextMenuOptionType.Terminal },
{ type: ContextMenuOptionType.URL },
{ type: ContextMenuOptionType.Folder },
{ type: ContextMenuOptionType.File },
{ type: ContextMenuOptionType.Git },
]
}
const lowerQuery = query.toLowerCase()
const suggestions: ContextMenuQueryItem[] = []
// Check for top-level option matches
if ("git".startsWith(lowerQuery)) {
suggestions.push({
type: ContextMenuOptionType.Git,
label: "Git Commits",
description: "Search repository history",
icon: "$(git-commit)",
})
} else if ("git-changes".startsWith(lowerQuery)) {
suggestions.push(workingChanges)
}
if ("problems".startsWith(lowerQuery)) {
suggestions.push({ type: ContextMenuOptionType.Problems })
}
if ("terminal".startsWith(lowerQuery)) {
suggestions.push({ type: ContextMenuOptionType.Terminal })
}
if (query.startsWith("http")) {
suggestions.push({ type: ContextMenuOptionType.URL, value: query })
}
// Add exact SHA matches to suggestions
if (/^[a-f0-9]{7,40}$/i.test(lowerQuery)) {
const exactMatches = queryItems.filter(
(item) => item.type === ContextMenuOptionType.Git && item.value?.toLowerCase() === lowerQuery,
)
if (exactMatches.length > 0) {
suggestions.push(...exactMatches)
} else {
// If no exact match but valid SHA format, add as option
suggestions.push({
type: ContextMenuOptionType.Git,
value: lowerQuery,
label: `Commit ${lowerQuery}`,
description: "Git commit hash",
icon: "$(git-commit)",
})
}
}
const searchableItems = queryItems.map((item) => ({
original: item,
searchStr: [item.value, item.label, item.description].filter(Boolean).join(" "),
}))
// Initialize fzf instance for fuzzy search
const fzf = new Fzf(searchableItems, {
selector: (item) => item.searchStr,
})
// Get fuzzy matching items
const matchingItems = query ? fzf.find(query).map((result) => result.item.original) : []
// Separate matches by type
const openedFileMatches = matchingItems.filter((item) => item.type === ContextMenuOptionType.OpenedFile)
const gitMatches = matchingItems.filter((item) => item.type === ContextMenuOptionType.Git)
// Convert search results to queryItems format
const searchResultItems = dynamicSearchResults.map((result) => {
// Ensure paths start with / for consistency
const formattedPath = result.path.startsWith("/") ? result.path : `/${result.path}`
// For display purposes, we don't escape spaces in the label or description
const displayPath = formattedPath
const displayName = result.label || getBasename(result.path)
// We don't need to escape spaces here because the insertMention function
// will handle that when the user selects a suggestion
return {
type: result.type === "folder" ? ContextMenuOptionType.Folder : ContextMenuOptionType.File,
value: formattedPath,
label: displayName,
description: displayPath,
}
})
const allItems = [...suggestions, ...openedFileMatches, ...searchResultItems, ...gitMatches]
// Remove duplicates - normalize paths by ensuring all have leading slashes
const seen = new Set()
const deduped = allItems.filter((item) => {
// Normalize paths for deduplication by ensuring leading slashes
const normalizedValue = item.value
let key = ""
if (
item.type === ContextMenuOptionType.File ||
item.type === ContextMenuOptionType.Folder ||
item.type === ContextMenuOptionType.OpenedFile
) {
key = normalizedValue!
} else {
key = `${item.type}-${normalizedValue}`
}
if (seen.has(key)) return false
seen.add(key)
return true
})
return deduped.length > 0 ? deduped : [{ type: ContextMenuOptionType.NoResults }]
}
export function shouldShowContextMenu(text: string, position: number): boolean {
const beforeCursor = text.slice(0, position)
// Check if we're in a slash command context on the current line
const currentLineStart = beforeCursor.lastIndexOf("\n") + 1
const currentLineBefore = beforeCursor.slice(currentLineStart)
if (currentLineBefore.startsWith("/") && !currentLineBefore.includes(" ")) {
return true
}
// Check for @ mention context
const atIndex = beforeCursor.lastIndexOf("@")
if (atIndex === -1) {
return false
}
const textAfterAt = beforeCursor.slice(atIndex + 1)
// Check if there's any unescaped whitespace after the '@'
// We need to check for whitespace that isn't preceded by a backslash
// Using a negative lookbehind to ensure the space isn't escaped
const hasUnescapedSpace = /(?<!\\)\s/.test(textAfterAt)
if (hasUnescapedSpace) return false
// Don't show the menu if it's clearly a URL
if (textAfterAt.toLowerCase().startsWith("http")) {
return false
}
// Show menu in all other cases
return true
}