import type { NextPage } from "next"; import React, { MutableRefObject } from "react"; import { commandCompletion, executeCommand } from "../../lib/commands"; import styles from "../../styles/REPL/REPLInput.module.css"; interface REPLInputParams { historyCallback: CallableFunction; inputRef: MutableRefObject; } const REPLInput: NextPage = ({historyCallback, inputRef}) => { const typed = React.createRef(); const completion = React.createRef(); const [currentCmd, setCurrentCmd] = React.useState([]); const [justTabbed, setJustTabbed] = React.useState(0); const replinOnChange = (e: React.FormEvent) => { const currentInput = (e.target as HTMLInputElement).value; const suggest = commandCompletion(currentInput); setCurrentCmd(suggest); if (suggest.length === 0) suggest.push(""); if (typed.current) typed.current.innerHTML = currentInput; if (completion.current) completion.current.innerHTML = suggest[0].substring(currentInput.length); }; const tabComplete = (e: React.KeyboardEvent) => { if (e.key === "Tab" && currentCmd.length !== 0) { e.preventDefault(); (e.target as HTMLInputElement).value = currentCmd[justTabbed % currentCmd.length]; if(typed.current) typed.current.innerHTML = currentCmd[justTabbed % currentCmd.length]; if(completion.current) completion.current.innerHTML = ""; setJustTabbed(justTabbed + 1); } else setJustTabbed(0); if (e.key === "Enter") { const result = executeCommand((e.target as HTMLInputElement).value); (e.target as HTMLInputElement).value = ""; if(typed.current) typed.current.innerHTML = ""; if(completion.current) completion.current.innerHTML = ""; historyCallback(result); } return false; }; return
} className={styles.in} type={"text"} onChange={replinOnChange} onKeyDown={tabComplete} spellCheck={"false"} autoFocus />
; }; export default REPLInput;