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) => 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([]); // 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(0); const [items, setItems] = React.useState(props.items); const inputRef = React.useRef(null); const [inputBoxHeight, setInputBoxHeight] = useState( 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(null); const ulRef = React.useRef(null); const showAbove = () => { return ( (divRef.current?.getBoundingClientRect().top || Number.MAX_SAFE_INTEGER) > UlMaxHeight ); }; useImperativeHandle(ref, () => downshiftProps, [downshiftProps]); const contextItemsDivRef = React.useRef(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 ( <>
{props.selectedContextItems.map((item, idx) => { return ( 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 ? ( { props.onToggleAddContext(); }} > Highlight code section ) : ( { 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(); } }} > ))}
{props.selectedContextItems.length === 0 && (downshiftProps.inputValue?.startsWith("/edit") || (focused && metaKeyPressed && downshiftProps.inputValue?.length > 0)) && (
Inserting at cursor
)} ); }); export default ComboBox;