TerminalHomepage/js/main.js

183 lines
5.9 KiB
JavaScript
Raw Normal View History

2023-01-18 13:35:17 +00:00
let pretext = {
original: "root@baipyr.us:~# ",
current: "root@baipyr.us:~# "
};
2023-01-13 11:37:25 +00:00
// Initiating variables
2023-01-18 13:35:17 +00:00
const length = pretext.current.length+1;
2022-05-27 16:13:33 +00:00
let cursorPosition = 0;
2023-01-12 14:10:13 +00:00
let cursorYOffset = 7;
2023-01-17 18:15:49 +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
});
2023-01-18 07:02:41 +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
2023-01-18 07:02:41 +00:00
outputText({user: text});
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;
2023-01-16 10:08:21 +00:00
} else if (history.index < history.list.length) {
2023-01-13 11:57:46 +00:00
history.index++;
textCur.textContent = "";
cursorPosition = 0;
}
updateCursor();
2022-05-27 16:13:33 +00:00
break;
case "Tab":
// Autocomplete
break;
}
});
2023-01-18 07:02:41 +00:00
function outputText(params) {
const { user, output } = params;
tbDiv.removeChild(textIn);
tbDiv.removeChild(textCur);
if (user !== undefined) {
const inputSet = new Set(user.split(''));
if (user !== "" || inputSet.has(" ") && inputSet.size === 1) {
history.list.push(user);
history.index = history.list.length;
}
// Fix current input to page
tbDiv.appendChild(createText(user));
tbDiv.innerHTML += `<br>`;
cursorYOffset++;
}
// Run command and return output
let commandOutput = (output === undefined && user !== undefined) ? runCommand(user) : output;
if (commandOutput !== "" && commandOutput !== null) {
// If output is given, display it as text with formatting
tbDiv.append(createText(commandOutput, false))
tbDiv.innerHTML += `<br>`;
// Offset cursor by at least one line, and as many more as there are line breaks
cursorYOffset += commandOutput.split("<br>").length;
}
// Add new pretext to terminal
if (commandOutput !== null)
2023-01-18 13:35:17 +00:00
tbDiv.innerHTML += pretext.current;
2023-01-18 07:02:41 +00:00
// Add elements on top of div
tbDiv.appendChild(textCur);
tbDiv.appendChild(textIn);
// Reset variables
textCur.textContent = "";
cursorPosition = 0;
updateCursor();
}
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
// Update cursor position based on coordinates
function updateCursor() {
let cursor = document.getElementById("cursor");
2023-01-18 13:35:17 +00:00
cursor.style.transform = `translate(${pretext.current.length+cursorPosition}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);