New structure and more tabbing

This commit is contained in:
Daniel Kluge 2021-12-15 18:56:32 +01:00
parent b99bdb366c
commit ced2559551
4 changed files with 26 additions and 14 deletions

View File

@ -1,27 +1,30 @@
import type { NextPage } from "next"; import type { NextPage } from "next";
import React from "react"; import React from "react";
import { commandCompletion } from "../lib/commands"; import { commandCompletion } from "../../lib/commands";
import styles from "../styles/REPLInput.module.css"; import styles from "../../styles/REPLInput.module.css";
const REPLInput: NextPage = () => { const REPLInput: NextPage<{historyCallback: CallableFunction}> = ({historyCallback}) => {
const typed = React.createRef<HTMLSpanElement>(); const typed = React.createRef<HTMLSpanElement>();
const completion = React.createRef<HTMLSpanElement>(); const completion = React.createRef<HTMLSpanElement>();
const [currentCmd, setCurrentCmd] = React.useState(""); const [currentCmd, setCurrentCmd] = React.useState<string[]>([]);
const [justTabbed, setJustTabbed] = React.useState<number>(0);
const replinOnChange = (e: React.FormEvent<HTMLInputElement>) => { const replinOnChange = (e: React.FormEvent<HTMLInputElement>) => {
const currentInput = (e.target as HTMLInputElement).value; const currentInput = (e.target as HTMLInputElement).value;
const suggest = commandCompletion(currentInput); const suggest = commandCompletion(currentInput);
setCurrentCmd(suggest); setCurrentCmd(suggest);
if (suggest.length === 0) suggest.push("");
if (typed.current) typed.current.innerHTML = currentInput; if (typed.current) typed.current.innerHTML = currentInput;
if (completion.current) completion.current.innerHTML = suggest.substring(currentInput.length); if (completion.current) completion.current.innerHTML = suggest[0].substring(currentInput.length);
}; };
const tabComplete = (e: React.KeyboardEvent<HTMLInputElement>) => { const tabComplete = (e: React.KeyboardEvent<HTMLInputElement>) => {
if (e.key === "Tab" && currentCmd !== "") { if (e.key === "Tab" && currentCmd.length !== 0) {
e.preventDefault(); e.preventDefault();
(e.target as HTMLInputElement).value = currentCmd; (e.target as HTMLInputElement).value = currentCmd[justTabbed % currentCmd.length];
if(typed.current) typed.current.innerHTML = currentCmd; if(typed.current) typed.current.innerHTML = currentCmd[justTabbed % currentCmd.length];
if(completion.current) completion.current.innerHTML = ""; if(completion.current) completion.current.innerHTML = "";
setJustTabbed(justTabbed + 1);
} }
return false; return false;
}; };

View File

@ -0,0 +1,9 @@
import { useCallback, useState } from "react";
import REPLInput from "./REPLInput";
const REPL = () => {
const [history, manipulateHistory] = useState([]);
return <REPLInput historyCallback={manipulateHistory} />;
};
export default REPL;

View File

@ -1,7 +1,7 @@
const commandList = ["about", "navigate", "external", "help", "ed", "nano"]; const commandList = ["about", "navigate", "external", "help", "ed", "nano"];
export function commandCompletion(input: string): string { export function commandCompletion(input: string): string[] {
if (input === "") return ""; if (input === "") return [];
const candidates = commandList.map((cmd) => [cmd.substring(0, input.length), cmd]).filter((cmd) => cmd[0] === input); const candidates = commandList.filter((cmd) => cmd.substring(0, input.length) === input);
return candidates.length > 0 ? candidates[0][1] : ""; return candidates;
} }

View File

@ -1,9 +1,9 @@
import type { NextPage } from "next"; import type { NextPage } from "next";
import REPLInput from "../components/REPLInput"; import REPL from "../components/REPL";
const Home: NextPage = () => { const Home: NextPage = () => {
return ( return (
<REPLInput /> <REPL />
); );
}; };