import type { NextPage } from "next"; import React, { MutableRefObject } from "react"; import { CommandInterface } from "../../lib/commands"; import styles from "../../styles/REPL/REPLInput.module.css"; interface REPLInputParams { historyCallback: CallableFunction; historyClear: CallableFunction; inputRef: MutableRefObject; modalManipulation: { setModalVisible: CallableFunction; setModalProject: CallableFunction; } } const REPLInput: NextPage = ({historyCallback, historyClear, inputRef, modalManipulation}) => { const typed = React.createRef(); const completion = React.createRef(); const [currentCmd, setCurrentCmd] = React.useState([]); const [justTabbed, setJustTabbed] = React.useState(0); const cmdIf = new CommandInterface(modalManipulation); const clearInput = (inputRef: HTMLInputElement) => { inputRef.value = ""; if(typed.current) typed.current.innerHTML = ""; if(completion.current) completion.current.innerHTML = ""; }; const replinOnChange = (e: React.FormEvent) => { const input = (e.target as HTMLInputElement); const currentInput = input.value.toLowerCase(); // Force lowercase input.value = currentInput; if (currentInput.includes(" ")) { // Command already typed input.maxLength = 524288; // Default value if (typed.current) typed.current.innerHTML = ""; if (completion.current) completion.current.innerHTML = ""; setCurrentCmd([]); return; } else { input.maxLength = 20; // Get completion hint const suggest = CommandInterface.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 keyEvent = (e: React.KeyboardEvent) => { const input = (e.target as HTMLInputElement); if (e.key === "Tab" && currentCmd.length !== 0) { e.preventDefault(); input.value = currentCmd[justTabbed % currentCmd.length]; if(typed.current) typed.current.innerHTML = currentCmd[justTabbed % currentCmd.length]; if(completion.current) completion.current.innerHTML = ""; setJustTabbed(justTabbed + 1); return false; } else setJustTabbed(0); if (e.key === "Enter") { e.preventDefault(); const command = (e.target as HTMLInputElement).value; if (command === "clear") { clearInput(input); historyClear(); return false; } const result = cmdIf.executeCommand(command); clearInput(input); historyCallback(result); return false; } if (e.key === "d" && e.ctrlKey) { e.preventDefault(); const result = cmdIf.executeCommand("exit"); clearInput(input); historyCallback(result); return false; } if (e.key === "l" && e.ctrlKey) { e.preventDefault(); clearInput(input); historyClear(); return false; } if ((e.key === "c" || e.key === "u") && e.ctrlKey) { e.preventDefault(); clearInput(input); return false; } }; return
} className={styles.in} type={"text"} onChange={replinOnChange} onKeyDown={keyEvent} spellCheck={"false"} autoFocus maxLength={20} />
; }; export default REPLInput;