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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
|
import React, {
useContext,
useEffect,
useImperativeHandle,
useState,
} from "react";
import { useCombobox } from "downshift";
import styled from "styled-components";
import {
defaultBorderRadius,
lightGray,
secondaryDark,
vscBackground,
vscForeground,
} from ".";
import PillButton from "./PillButton";
import HeaderButtonWithText from "./HeaderButtonWithText";
import { DocumentPlusIcon } from "@heroicons/react/24/outline";
import { ContextItem } from "../../../schema/FullState";
import { postVscMessage } from "../vscode";
import { GUIClientContext } from "../App";
import { MeiliSearch } from "meilisearch";
import {
setBottomMessage,
setBottomMessageCloseTimeout,
} from "../redux/slices/uiStateSlice";
import { useDispatch } from "react-redux";
const SEARCH_INDEX_NAME = "continue_context_items";
// #region styled components
const mainInputFontSize = 13;
const EmptyPillDiv = styled.div`
padding: 4px;
padding-left: 8px;
padding-right: 8px;
border-radius: ${defaultBorderRadius};
border: 1px dashed ${lightGray};
color: ${lightGray};
background-color: ${vscBackground};
overflow: hidden;
display: flex;
align-items: center;
text-align: center;
cursor: pointer;
font-size: 13px;
&:hover {
background-color: ${lightGray};
color: ${vscBackground};
}
`;
const MainTextInput = styled.textarea`
resize: none;
padding: 8px;
font-size: ${mainInputFontSize}px;
font-family: inherit;
border-radius: ${defaultBorderRadius};
margin: 8px auto;
height: auto;
width: 100%;
background-color: ${secondaryDark};
color: ${vscForeground};
z-index: 1;
border: 1px solid transparent;
&:focus {
outline: 1px solid ${lightGray};
border: 1px solid transparent;
}
&::placeholder {
color: ${lightGray}80;
}
`;
const UlMaxHeight = 300;
const Ul = styled.ul<{
hidden: boolean;
showAbove: boolean;
ulHeightPixels: number;
inputBoxHeight?: string;
}>`
${(props) =>
props.showAbove
? `transform: translateY(-${props.ulHeightPixels + 8}px);`
: `transform: translateY(${5 * mainInputFontSize}px);`}
position: absolute;
background: ${vscBackground};
color: ${vscForeground};
max-height: ${UlMaxHeight}px;
width: calc(100% - 16px);
overflow-y: scroll;
overflow-x: hidden;
padding: 0;
${({ hidden }) => hidden && "display: none;"}
border-radius: ${defaultBorderRadius};
outline: 1px solid ${lightGray};
z-index: 2;
-ms-overflow-style: none;
`;
const Li = styled.li<{
highlighted: boolean;
selected: boolean;
isLastItem: boolean;
}>`
background-color: ${({ highlighted }) =>
highlighted ? lightGray : secondaryDark};
${({ highlighted }) => highlighted && `background: ${vscBackground};`}
${({ selected }) => selected && "font-weight: bold;"}
padding: 0.5rem 0.75rem;
display: flex;
flex-direction: column;
${({ isLastItem }) => isLastItem && "border-bottom: 1px solid gray;"}
/* border-top: 1px solid gray; */
cursor: pointer;
`;
// #endregion
interface ComboBoxProps {
items: { name: string; description: string; id?: string }[];
onInputValueChange: (inputValue: string) => void;
disabled?: boolean;
onEnter: (e: React.KeyboardEvent<HTMLInputElement>) => void;
selectedContextItems: ContextItem[];
onToggleAddContext: () => void;
addingHighlightedCode: boolean;
}
const ComboBox = React.forwardRef((props: ComboBoxProps, ref) => {
const searchClient = new MeiliSearch({ host: "http://127.0.0.1:7700" });
const client = useContext(GUIClientContext);
const dispatch = useDispatch();
const [history, setHistory] = React.useState<string[]>([]);
// The position of the current command you are typing now, so the one that will be appended to history once you press enter
const [positionInHistory, setPositionInHistory] = React.useState<number>(0);
const [items, setItems] = React.useState(props.items);
const inputRef = React.useRef<HTMLInputElement>(null);
const [inputBoxHeight, setInputBoxHeight] = useState<string | undefined>(
undefined
);
// Whether the current input follows an '@' and should be treated as context query
const [currentlyInContextQuery, setCurrentlyInContextQuery] = useState(false);
const { getInputProps, ...downshiftProps } = useCombobox({
onSelectedItemChange: ({ selectedItem }) => {
if (selectedItem?.id) {
// Get the query from the input value
const segs = downshiftProps.inputValue.split("@");
const query = segs[segs.length - 1];
const restOfInput = segs.splice(0, segs.length - 1).join("@");
// Tell server the context item was selected
client?.selectContextItem(selectedItem.id, query);
// Remove the '@' and the context query from the input
if (downshiftProps.inputValue.includes("@")) {
downshiftProps.setInputValue(restOfInput);
}
}
},
onInputValueChange({ inputValue, highlightedIndex }) {
if (!inputValue) {
setItems([]);
return;
}
props.onInputValueChange(inputValue);
if (inputValue.endsWith("@") || currentlyInContextQuery) {
const segs = inputValue?.split("@") || [];
if (segs.length > 1) {
// Get search results and return
setCurrentlyInContextQuery(true);
const providerAndQuery = segs[segs.length - 1] || "";
const [provider, query] = providerAndQuery.split(" ");
searchClient
.index(SEARCH_INDEX_NAME)
.search(providerAndQuery)
.then((res) => {
setItems(
res.hits.map((hit) => {
return {
name: hit.name,
description: hit.description,
id: hit.id,
};
})
);
})
.catch(() => {
// Swallow errors, because this simply is not supported on Windows at the moment
});
return;
} else {
// Exit the '@' context menu
setCurrentlyInContextQuery(false);
setItems;
}
}
setItems(
props.items.filter((item) =>
item.name.toLowerCase().startsWith(inputValue.toLowerCase())
)
);
},
items,
itemToString(item) {
return item ? item.name : "";
},
});
useEffect(() => {
if (downshiftProps.highlightedIndex < 0) {
downshiftProps.setHighlightedIndex(0);
}
}, [downshiftProps.inputValue]);
const divRef = React.useRef<HTMLDivElement>(null);
const ulRef = React.useRef<HTMLUListElement>(null);
const showAbove = () => {
return (
(divRef.current?.getBoundingClientRect().top || Number.MAX_SAFE_INTEGER) >
UlMaxHeight
);
};
useImperativeHandle(ref, () => downshiftProps, [downshiftProps]);
const contextItemsDivRef = React.useRef<HTMLDivElement>(null);
const handleTabPressed = () => {
// Set the focus to the next item in the context items div
if (!contextItemsDivRef.current) {
return;
}
const focusableItems =
contextItemsDivRef.current.querySelectorAll(".pill-button");
const focusableItemsArray = Array.from(focusableItems);
const focusedItemIndex = focusableItemsArray.findIndex(
(item) => item === document.activeElement
);
console.log(focusedItemIndex, focusableItems);
if (focusedItemIndex === focusableItemsArray.length - 1) {
inputRef.current?.focus();
} else if (focusedItemIndex !== -1) {
const nextItem =
focusableItemsArray[
(focusedItemIndex + 1) % focusableItemsArray.length
];
(nextItem as any)?.focus();
} else {
const firstItem = focusableItemsArray[0];
(firstItem as any)?.focus();
}
};
useEffect(() => {
if (typeof window !== "undefined") {
const listener = (e: any) => {
if (e.key === "Tab") {
e.preventDefault();
handleTabPressed();
}
};
window.addEventListener("keydown", listener);
return () => {
window.removeEventListener("keydown", listener);
};
}
}, []);
const [metaKeyPressed, setMetaKeyPressed] = useState(false);
const [focused, setFocused] = useState(false);
useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => {
if (e.key === "Meta") {
setMetaKeyPressed(true);
}
};
const handleKeyUp = (e: KeyboardEvent) => {
if (e.key === "Meta") {
setMetaKeyPressed(false);
}
};
window.addEventListener("keydown", handleKeyDown);
window.addEventListener("keyup", handleKeyUp);
return () => {
window.removeEventListener("keydown", handleKeyDown);
window.removeEventListener("keyup", handleKeyUp);
};
});
useEffect(() => {
if (!inputRef.current) {
return;
}
inputRef.current.focus();
const handler = (event: any) => {
if (event.data.type === "focusContinueInput") {
inputRef.current!.focus();
} else if (event.data.type === "focusContinueInputWithEdit") {
inputRef.current!.focus();
downshiftProps.setInputValue("/edit ");
}
};
window.addEventListener("message", handler);
return () => {
window.removeEventListener("message", handler);
};
}, [inputRef.current]);
return (
<>
<div
className="px-2 flex gap-2 items-center flex-wrap mt-2"
ref={contextItemsDivRef}
>
{props.selectedContextItems.map((item, idx) => {
return (
<PillButton
areMultipleItems={props.selectedContextItems.length > 1}
key={`${item.description.id.item_id}${idx}`}
item={item}
warning={
item.content.length > 4000 && item.editing
? "Editing such a large range may be slow"
: undefined
}
addingHighlightedCode={props.addingHighlightedCode}
index={idx}
onDelete={() => {
client?.deleteContextWithIds([item.description.id]);
inputRef.current?.focus();
}}
/>
);
})}
{props.selectedContextItems.length > 0 &&
(props.addingHighlightedCode ? (
<EmptyPillDiv
onClick={() => {
props.onToggleAddContext();
}}
>
Highlight code section
</EmptyPillDiv>
) : (
<HeaderButtonWithText
text="Add more code to context"
onClick={() => {
props.onToggleAddContext();
}}
className="pill-button focus:outline-none focus:border-red-600 focus:border focus:border-solid"
onKeyDown={(e: KeyboardEvent) => {
e.preventDefault();
if (e.key === "Enter") {
props.onToggleAddContext();
}
}}
>
<DocumentPlusIcon width="1.4em" height="1.4em" />
</HeaderButtonWithText>
))}
</div>
<div className="flex px-2" ref={divRef} hidden={!downshiftProps.isOpen}>
<MainTextInput
disabled={props.disabled}
placeholder={`Ask a question, give instructions, type '/' for slash commands, or '@' to add context`}
{...getInputProps({
onChange: (e) => {
const target = e.target as HTMLTextAreaElement;
// Update the height of the textarea to match the content, up to a max of 200px.
target.style.height = "auto";
target.style.height = `${Math.min(
target.scrollHeight,
300
).toString()}px`;
setInputBoxHeight(target.style.height);
// setShowContextDropdown(target.value.endsWith("@"));
},
onFocus: (e) => {
setFocused(true);
dispatch(setBottomMessage(undefined));
},
onKeyDown: (event) => {
dispatch(setBottomMessage(undefined));
if (event.key === "Enter" && event.shiftKey) {
// Prevent Downshift's default 'Enter' behavior.
(event.nativeEvent as any).preventDownshiftDefault = true;
setCurrentlyInContextQuery(false);
} else if (
event.key === "Enter" &&
(!downshiftProps.isOpen || items.length === 0)
) {
const value = downshiftProps.inputValue;
if (value !== "") {
setPositionInHistory(history.length + 1);
setHistory([...history, value]);
}
// Prevent Downshift's default 'Enter' behavior.
(event.nativeEvent as any).preventDownshiftDefault = true;
if (props.onEnter) props.onEnter(event);
setCurrentlyInContextQuery(false);
} else if (event.key === "Tab" && items.length > 0) {
downshiftProps.setInputValue(items[0].name);
event.preventDefault();
} else if (event.key === "Tab") {
(event.nativeEvent as any).preventDownshiftDefault = true;
} else if (
(event.key === "ArrowUp" || event.key === "ArrowDown") &&
event.currentTarget.value.split("\n").length > 1
) {
(event.nativeEvent as any).preventDownshiftDefault = true;
} else if (event.key === "ArrowUp") {
if (positionInHistory == 0) return;
else if (
positionInHistory == history.length &&
(history.length === 0 ||
history[history.length - 1] !== event.currentTarget.value)
) {
setHistory([...history, event.currentTarget.value]);
}
downshiftProps.setInputValue(history[positionInHistory - 1]);
setPositionInHistory((prev) => prev - 1);
setCurrentlyInContextQuery(false);
} else if (event.key === "ArrowDown") {
if (positionInHistory < history.length) {
downshiftProps.setInputValue(history[positionInHistory + 1]);
}
setPositionInHistory((prev) =>
Math.min(prev + 1, history.length)
);
setCurrentlyInContextQuery(false);
} else if (event.key === "Escape") {
setCurrentlyInContextQuery(false);
if (downshiftProps.isOpen && items.length > 0) {
downshiftProps.closeMenu();
} else {
(event.nativeEvent as any).preventDownshiftDefault = true;
// Remove focus from the input
inputRef.current?.blur();
// Move cursor back over to the editor
postVscMessage("focusEditor", {});
}
}
},
onClick: () => {
dispatch(setBottomMessage(undefined));
},
ref: inputRef,
})}
/>
<Ul
{...downshiftProps.getMenuProps({
ref: ulRef,
})}
showAbove={showAbove()}
ulHeightPixels={ulRef.current?.getBoundingClientRect().height || 0}
hidden={!downshiftProps.isOpen || items.length === 0}
>
{downshiftProps.isOpen &&
items.map((item, index) => (
<Li
style={{ borderTop: index === 0 ? "none" : undefined }}
key={`${item.name}${index}`}
{...downshiftProps.getItemProps({ item, index })}
highlighted={downshiftProps.highlightedIndex === index}
selected={downshiftProps.selectedItem === item}
>
<span>
{item.name}:{" "}
<span style={{ color: lightGray }}>{item.description}</span>
</span>
</Li>
))}
</Ul>
</div>
{props.selectedContextItems.length === 0 &&
(downshiftProps.inputValue?.startsWith("/edit") ||
(focused &&
metaKeyPressed &&
downshiftProps.inputValue?.length > 0)) && (
<div className="text-trueGray-400 pr-4 text-xs text-right">
Inserting at cursor
</div>
)}
</>
);
});
export default ComboBox;
|