import { CompletionContext, CompletionResult, useEffect, useRef, useState, } from "../deps.ts"; import { FilterOption } from "../types.ts"; import { FunctionalComponent } from "https://esm.sh/v99/preact@10.11.3/src/index"; import { FeatherProps } from "https://esm.sh/v99/preact-feather@4.2.1/dist/types"; import { MiniEditor } from "./mini_editor.tsx"; import { fuzzySearchAndSort } from "./fuse_search.ts"; export function FilterList({ placeholder, options, label, onSelect, onKeyPress, completer, vimMode, darkMode, allowNew = false, helpText = "", completePrefix, icon: Icon, newHint, }: { placeholder: string; options: FilterOption[]; label: string; onKeyPress?: (key: string, currentText: string) => void; onSelect: (option: FilterOption | undefined) => void; vimMode: boolean; darkMode: boolean; completer: (context: CompletionContext) => Promise; allowNew?: boolean; completePrefix?: string; helpText: string; newHint?: string; icon?: FunctionalComponent; }) { const [text, setText] = useState(""); const [matchingOptions, setMatchingOptions] = useState( fuzzySearchAndSort(options, ""), ); const [selectedOption, setSelectionOption] = useState(0); const selectedElementRef = useRef(null); function updateFilter(originalPhrase: string) { const results = fuzzySearchAndSort(options, originalPhrase); const foundExactMatch = !!results.find((result) => result.name === originalPhrase ); if (allowNew && !foundExactMatch && originalPhrase) { results.splice(1, 0, { name: originalPhrase, hint: newHint, }); } setMatchingOptions(results); setSelectionOption(0); } useEffect(() => { updateFilter(text); }, [options, text]); useEffect(() => { function closer() { console.log("Invoking closer"); onSelect(undefined); } document.addEventListener("click", closer); return () => { document.removeEventListener("click", closer); }; }, []); const returnEl = (
{ // Allow tapping/clicking the header without closing it e.stopPropagation(); }} > { onSelect(matchingOptions[selectedOption]); return true; }} onEscape={() => { onSelect(undefined); }} onChange={(text) => { setText(text); }} onKeyUp={(view, e) => { // This event is triggered after the key has been processed by CM already if (onKeyPress) { onKeyPress(e.key, view.state.sliceDoc()); } return false; }} onKeyDown={(view, e) => { switch (e.key) { case "ArrowUp": setSelectionOption(Math.max(0, selectedOption - 1)); return true; case "ArrowDown": setSelectionOption( Math.min(matchingOptions.length - 1, selectedOption + 1), ); return true; case "PageUp": setSelectionOption(Math.max(0, selectedOption - 5)); return true; case "PageDown": setSelectionOption(Math.max(0, selectedOption + 5)); return true; case "Home": setSelectionOption(0); return true; case "End": setSelectionOption(matchingOptions.length - 1); return true; case " ": { const text = view.state.sliceDoc(); if (completePrefix && text === "") { setText(completePrefix); // updateFilter(completePrefix); return true; } break; } } return false; }} />
{matchingOptions && matchingOptions.length > 0 ? matchingOptions.map((option, idx) => (
{ setSelectionOption(idx); }} onClick={(e) => { e.stopPropagation(); onSelect(option); }} > {Icon && ( )} ", "")! // : escapeHtml(option.name), // }} > {option.name} {option.hint && {option.hint}}
)) : null}
); useEffect(() => { selectedElementRef.current?.scrollIntoView({ block: "nearest", }); }); return returnEl; }