TerminalHomepage/js/main.js

210 lines
7.0 KiB
JavaScript
Raw Normal View History

2022-05-27 16:13:33 +00:00
const pretext = "root@baipyr.us:~# ";
2023-01-13 11:37:25 +00:00
// Initiating variables
const length = pretext.length+1;
let startPosition = length;
2022-05-27 16:13:33 +00:00
let cursorPosition = 0;
2023-01-12 14:10:13 +00:00
let cursorYOffset = 7;
2023-01-13 11:57:46 +00:00
let history = {index: 0, list: []};
2022-05-27 16:13:33 +00:00
2023-01-13 11:37:25 +00:00
// Initiating constants
const tbDiv = document.getElementById("textbox");
const textIn = document.getElementById("input");
const textCur = document.getElementById("current");
const cursor = document.getElementById("cursor");
2023-01-13 11:37:25 +00:00
// Initial cursor offset
2023-01-12 14:10:13 +00:00
cursor.style.transform = `translate(${length-1}ch,${2.222*7-0.4}ch)`;
2023-01-13 11:37:25 +00:00
// Handle user input
textIn.oninput = () => {
2023-01-13 06:27:13 +00:00
const text = textCur.textContent;
2023-01-13 11:37:25 +00:00
// If cursor at end of text
2023-01-13 06:27:13 +00:00
if (cursorPosition === text.length)
textCur.textContent += textIn.value;
else {
2023-01-13 11:37:25 +00:00
// Insert input at cursor position
2023-01-13 06:27:13 +00:00
const left = text.substring(0, cursorPosition);
const right = text.substring(cursorPosition, text.length);
textCur.textContent = left + textIn.value + right;
}
2023-01-13 11:37:25 +00:00
// Increment by input length
2023-01-13 06:27:13 +00:00
cursorPosition += textIn.value.length;
textIn.value = "";
updateCursor();
};
textIn.focus();
2023-01-13 11:37:25 +00:00
// If no ranged selection was made, focus on input field
document.addEventListener("selectionchange", e => {
if (e.target !== textIn) {
const selection = window.getSelection();
if (selection.type === "Caret")
textIn.focus();
}
2022-05-27 16:13:33 +00:00
});
document.addEventListener("keydown", e => {
const text = textCur.textContent;
2022-05-27 16:13:33 +00:00
switch (e.key) {
case "Backspace":
// Ein Zeichen nach links löschen
2023-01-13 06:27:13 +00:00
if (cursorPosition === 0)
2022-05-27 16:13:33 +00:00
return;
2023-01-13 06:27:13 +00:00
if (cursorPosition <= textCur.textContent.length-1) {
const a = text.substring(0, cursorPosition-1);
const b = text.substring(cursorPosition, text.length);
textCur.textContent=a+b;
2022-05-27 16:13:33 +00:00
} else
textCur.textContent = text.substring(0,text.length-1);
2022-05-27 16:13:33 +00:00
cursorPosition--;
updateCursor();
2022-05-27 16:13:33 +00:00
break;
case "ArrowLeft":
// Ein Zeichen nach links
2023-01-13 06:27:13 +00:00
if (cursorPosition > 0) {
2022-05-27 16:13:33 +00:00
cursorPosition--;
updateCursor();
}
2022-05-27 16:13:33 +00:00
break;
case "ArrowRight":
// Ein Zeichen nach reckts
2023-01-13 06:27:13 +00:00
if (cursorPosition < textCur.textContent.length) {
2022-05-27 16:13:33 +00:00
cursorPosition++;
updateCursor();
}
2022-05-27 16:13:33 +00:00
break;
case "Delete":
// Ein Zeichen nach rechts löschen
2023-01-13 06:27:13 +00:00
if (cursorPosition >= textCur.textContent.length)
return;
if (cursorPosition === 0 && textCur.textContent.length === 0)
2022-05-27 16:13:33 +00:00
return;
2023-01-13 06:27:13 +00:00
const a = text.substring(0, cursorPosition);
const b = text.substring(cursorPosition+1, text.length);
textCur.textContent=a+b;
2022-05-27 16:13:33 +00:00
break;
case "Enter":
// Befehl absenden / Zeilenumbruch
tbDiv.removeChild(textIn);
tbDiv.removeChild(textCur);
2022-05-27 16:13:33 +00:00
2023-01-13 11:57:46 +00:00
const inputSet = new Set(text.split(''));
if (text !== "" || inputSet.has(" ") && inputSet.size === 1) {
history.list.push(text);
history.index = history.list.length;
}
// Fix current input to page
tbDiv.appendChild(createText(text));
tbDiv.innerHTML += `<br>`;
2023-01-13 11:37:25 +00:00
// Run command and return output
let commandOutput = runCommand(text);
if (commandOutput !== "") {
2023-01-13 11:37:25 +00:00
// If output is given, display it as text with formatting
tbDiv.append(createText(commandOutput, false))
tbDiv.innerHTML += `<br>`;
2023-01-13 11:37:25 +00:00
// Offset cursor by at least one line, and as many more as there are line breaks
cursorYOffset += commandOutput.split("<br>").length;
}
2023-01-13 11:37:25 +00:00
// Add new pretext to terminal
tbDiv.innerHTML += pretext;
2023-01-13 11:37:25 +00:00
// Add elements on top of div
tbDiv.appendChild(textCur);
tbDiv.appendChild(textIn);
2023-01-13 11:37:25 +00:00
// Reset variables
textCur.textContent = "";
2023-01-13 06:27:13 +00:00
cursorPosition = 0;
2022-06-06 14:56:20 +00:00
cursorYOffset++;
updateCursor();
2022-05-27 16:13:33 +00:00
break;
case "ArrowUp":
// Einen Befehl zurück in der History
2023-01-13 11:57:46 +00:00
if (history.index > 0) {
history.index--;
textCur.textContent = history.list[history.index];
cursorPosition = textCur.textContent.length;
}
updateCursor();
2022-05-27 16:13:33 +00:00
break;
case "ArrowDown":
// Einen Befehl nach vorne in der History
2023-01-13 11:57:46 +00:00
if (history.index < history.list.length-1) {
history.index++;
textCur.textContent = history.list[history.index];
cursorPosition = textCur.textContent.length;
} else {
history.index++;
textCur.textContent = "";
cursorPosition = 0;
}
updateCursor();
2022-05-27 16:13:33 +00:00
break;
case "Tab":
// Autocomplete
break;
}
});
2023-01-13 11:37:25 +00:00
// Create an 'a' element with input string as its contents
function createText(str, safe=true) {
const link = document.createElement("a");
link.style.color = "lightgrey";
2023-01-13 12:05:59 +00:00
link.style.whiteSpace = "pre";
2023-01-13 11:37:25 +00:00
// No "HTML injection"
if (safe)
link.textContent = str;
// "Anything goes" and keep formatting
2023-01-13 12:05:59 +00:00
else
2023-01-13 11:37:25 +00:00
link.innerHTML = str;
return link;
}
2023-01-13 11:37:25 +00:00
// Run input as command if possible
function runCommand(input) {
2023-01-16 06:15:33 +00:00
// Return on no input
if (input === "")
return "";
let output = "";
2023-01-16 06:15:33 +00:00
const lowerIn = input.toLowerCase();
2023-01-13 11:37:25 +00:00
// Go through properties of window
for (const func in window) {
const splits = func.split("cmd_");
2023-01-13 11:37:25 +00:00
// If property is prefixed with 'cmd_' (a 'command', so an executable function)
if (splits.length === 2) {
const name = splits[1];
2023-01-16 06:15:33 +00:00
const lowerNm = name.toLowerCase();
2023-01-13 11:37:25 +00:00
// If command is called without parameters
2023-01-16 06:15:33 +00:00
if (lowerIn === lowerNm) {
output = window[func]();
break;
2023-01-13 11:37:25 +00:00
// If command is called with parameters
2023-01-16 06:15:33 +00:00
} else if (lowerIn.startsWith(lowerNm + " ")) {
2023-01-13 11:37:25 +00:00
// Parameters always follow the command name after first space
const params = input.split(" ").filter((e,i)=>i!==0);
output = window[func](params);
break;
}
}
}
2023-01-16 06:15:33 +00:00
// Standard output:
2023-01-16 10:03:24 +00:00
if (output === "" && !lowerIn.startsWith("clear"))
2023-01-16 06:15:33 +00:00
output = `${input.split(" ")[0]}: command not found`;
2023-01-13 11:37:25 +00:00
// Return command output
return output;
}
2023-01-13 11:37:25 +00:00
// Update cursor position based on coordinates
function updateCursor() {
let cursor = document.getElementById("cursor");
2023-01-13 06:27:13 +00:00
cursor.style.transform = `translate(${startPosition+cursorPosition-1}ch, ${2.222*cursorYOffset-0.4}ch)`;
}
2023-01-13 11:37:25 +00:00
// Toggle cursor visibility
2022-05-27 16:13:33 +00:00
setInterval(()=>{
cursor.style.opacity = !parseInt(cursor.style.opacity)+0;
2022-05-27 16:13:33 +00:00
},1000);