-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
154 lines (154 loc) · 4.95 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
terminal = document.getElementById('terminal')
document.addEventListener("keydown", function(e) {
if (e.key == 'Backspace') {
if (terminal.innerHTML.charAt(terminal.innerHTML.length - 1) != '>') {
remove()
cursor('blink')
}
} else if (e.key == 'Enter') {
terminal.innerHTML += '<br>'
enter()
} else if (banned.includes(e.key)) {
if (e.key == 'ArrowUp') {
e.preventDefault()
history('up')
loc = terminal.innerHTML.length
} else if (e.key == 'ArrowDown') {
e.preventDefault()
history('down')
loc = terminal.innerHTML.length
} else if (e.key == 'ArrowLeft') {
e.preventDefault()
cursor('move', -1)
} else if (e.key == 'ArrowRight') {
e.preventDefault()
cursor('move', 1)
}
} else {
insert(e.key)
loc += 1
cursor('blink')
}
})
function enter() {
input = terminal.innerHTML.split('<br>')
last = input.length -2
command = input[last].substring(display('theme', true).length)
if (command.substring(1, 0) == ' ') {
command = command.substring(1)
}
command = command.replaceAll(defs['cursoralt'], '')
command = command.replaceAll(defs['cursor'], '')
history('add', command)
run(command)
if (command[0] == 'cd' || command[0] == 'neofetch') {
terminal.innerHTML += '<br>'
} else {
if (command != 'clear') {
terminal.innerHTML += '<br><br>'
}
}
display('theme')
window.scrollTo(0, document.body.scrollHeight)
loc = terminal.innerHTML.length
cursor('blink')
}
function history(operation, input) {
if (operation == 'add') {
if (input.length > 0) {
hist = hist.reverse()
hist.push(input)
hist = hist.reverse()
}
} else if (operation == 'up') {
if (hist[pos + 1]) {
last = terminal.innerHTML.trim().split('<br>')
last = last.pop().length
terminal.innerHTML = terminal.innerHTML.slice(0, -(last))
terminal.innerHTML += display('theme', true)
terminal.innerHTML += hist[pos+1]
pos += 1
}
} else if (operation == 'down') {
if (hist[pos - 1]) {
last = terminal.innerHTML.trim().split('<br>')
last = last.pop().length
terminal.innerHTML = terminal.innerHTML.slice(0, -(last))
terminal.innerHTML += display('theme', true)
terminal.innerHTML += hist[pos-1]
pos -= 1
}
}
}
function run(input) {
command = input.split(' ')
if (command[0] in cmdlist) {
cmdlist[command[0]](command[1])
console.log(command[0])
console.log(command[1])
} else {
display('e1')
}
}
function display(id, r, c) {
if (!c) {
output = msg[id]
} else {
output = c
}
output = output.replace(/\/\w+\//g, (match) => {
const tag = match.slice(1, -1)
const color = defs[tag]
if (color) {
return `<span style='color:${color}'>`
} else if (tag === 'end') {
return `</span>`
} else if (tag === 'b') {
return `<span class='bold'>`
} else if (tag === 'i') {
return `<span class='italic'>`
} else {
return match
}
})
if (r) {
return output
} else {
terminal.innerHTML += output
}
}
async function cursor(action, value) {
if (action == 'move') {
if (terminal.innerHTML.charAt(loc+value) != '<' && terminal.innerHTML.charAt(loc+value) != '>' && terminal.innerHTML.charAt(loc+value) != '') {
loc += value
cursor('blink')
}
} else if (action == 'blink') {
terminal.innerHTML = terminal.innerHTML.replaceAll(defs['cursoralt'], '')
terminal.innerHTML = terminal.innerHTML.replaceAll(defs['cursor'], '')
terminal.innerHTML = terminal.innerHTML.slice(0, loc) + defs['cursor'] + terminal.innerHTML.slice(loc)
setTimeout(async function() {
terminal.innerHTML = terminal.innerHTML.replaceAll(defs['cursor'], defs['cursoralt'])
}, 500)
}
}
function insert(value) {
terminal.innerHTML = terminal.innerHTML.slice(0, loc) + value+ terminal.innerHTML.slice(loc)
}
function remove() {
terminal.innerHTML = terminal.innerHTML.replaceAll(defs['cursoralt'], '')
terminal.innerHTML = terminal.innerHTML.replaceAll(defs['cursor'], '')
terminal.innerHTML = terminal.innerHTML.slice(0, loc-1) + terminal.innerHTML.slice(loc)
loc -= 1
}
setInterval(async function() {
cursor('blink')
}, 1000)
document.body.style.backgroundColor = defs['background']
document.body.style.color = defs['foreground']
document.documentElement.style.setProperty('--link', defs['green'])
current = directory
run('splash')
terminal.innerHTML += '<br><br>'
display('theme')
loc = terminal.innerHTML.length