You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
867 B
34 lines
867 B
3 years ago
|
window.addEventListener("load", () => {
|
||
|
const terminal = document.getElementById('nav-terminal')
|
||
|
|
||
|
const keyDown = (e) => {
|
||
|
if (e.keyCode === 13) {
|
||
|
if (document.activeElement !== document.body) return
|
||
|
if (terminal.textContent.length === 0) return
|
||
|
|
||
|
if (terminal.textContent.includes("~")) terminal.textContent = ""
|
||
|
|
||
|
window.location.href = window.location.origin + "/" + terminal.textContent
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if (e.keyCode === 8) {
|
||
|
terminal.textContent = terminal.textContent.slice(0, -1)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if (e.keyCode === 192) {
|
||
|
if (terminal.textContent.length !== 0) return
|
||
|
|
||
|
terminal.textContent += "~"
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if ((e.keyCode < 65 || e.keyCode > 90) && (e.keyCode !== 191) ) return
|
||
|
|
||
|
terminal.textContent += e.key.toLowerCase()
|
||
|
}
|
||
|
|
||
|
document.addEventListener('keydown', keyDown)
|
||
|
})
|