-
Notifications
You must be signed in to change notification settings - Fork 2
/
terminal.js
206 lines (197 loc) · 6.88 KB
/
terminal.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
var commandOutputs = {
ls: `
events
<br>
x-cryptus
<br>
sponsors
<br>
about us
`,
date: `
12th and 13th Feb
`,
location: `
St. Xavier's College (Autonomous), Kolkata
<br>
30, Mother Teresa Sarani,
<br>
Kolkata - 700016, West Bengal, India
`,
info: `
The Post Graduate and Research Dept. of St. Xavier's College (Autonomous), Kolkata
organizes the eight edition of the Annual Technological Festival,
eXabyte 2024' with the theme "Beyond Binary" on 12th and 13th February, 2024.
As an exemplar to showcase our eminence in the world of the technology,
the students at the Department of Computer Science strive to bring together future
legionaries of the technological arena and kindle in them a thirst for answers, quest for horizons.
`,
help: `
available commands:
<br>
- ls : list all pages
<br>
- cd: go to a page
<br>
- info: about the fest
<br>
- location: locate us
<br>
- date: when we will go live
<br>
- clear: clear terminal screen
`,
};
let infoSection = document.querySelector(".info-section");
var prompt = {
window: document.querySelector(".window"),
shortcut: document.querySelector(".prompt-shortcut"),
input: document.querySelector(".js-prompt-input"),
init: function () {
document
.querySelector(".js-minimize")
.addEventListener("click", prompt.minimize);
document
.querySelector(".js-maximize")
.addEventListener("click", prompt.maximize);
document.querySelector(".js-close").addEventListener("click", prompt.close);
document.querySelector(".js-open").addEventListener("click", prompt.open);
// prompt.input.focus();
// prompt.input.blur(prompt.focus);
},
focus: function () {
prompt.input.focus();
},
minimize: function () {
prompt.window.classList.remove("window--maximized");
// prompt.window.classList.add("window--minimized");
toggleClass(prompt.window, "window--minimized");
setTimeout(() => {
let contentWrapper = document.querySelector(".window-content");
contentWrapper.scrollTop = contentWrapper.scrollHeight;
}, 500);
prompt.focus();
},
maximize: function () {
prompt.window.classList.remove("window--minimized");
// prompt.window.classList.add("window--maximized");
toggleClass(prompt.window, "window--maximized");
prompt.focus();
setTimeout(() => {
let contentWrapper = document.querySelector(".window-content");
contentWrapper.scrollTop = contentWrapper.scrollHeight;
}, 500);
},
close: function () {
infoSection.style.zIndex = "90";
prompt.window.classList.add("window--destroyed");
// prompt.window.classList.remove("window--maximized");
// prompt.window.classList.remove("window--minimized");
prompt.shortcut.classList.remove("hidden");
prompt.input.value = "";
},
open: function () {
infoSection.style.zIndex = "102";
prompt.window.classList.remove("window--destroyed");
prompt.shortcut.classList.add("hidden");
prompt.focus();
},
};
function toggleClass(node, className) {
if (node.classList.contains(className)) {
node.classList.remove(className);
} else {
node.classList.add(className);
}
}
function detectEnter(e) {
if (e.key === "Enter" || e.keyCode === 13) {
let outputWrapper = document.querySelector(".window .outputs");
// alert("Enter Pressed");
let commandFound = false;
Object.entries(commandOutputs).forEach(([command, output]) => {
// console.log(command, output);
if (command == prompt.input.value) {
outputWrapper.innerHTML += `<br><br><span class="cmd">${command}</span><br>${output}`;
commandFound = true;
}
});
if (!commandFound) {
if (/cd.*/.test(prompt.input.value)) {
let path = prompt.input.value.split(" ")[1];
switch (path) {
case undefined:
outputWrapper.innerHTML += `<br><span class="cmd">${prompt.input.value}</span><br>Insufficient args: Mention a page name<br>Eg: cd events`;
commandFound = true;
break;
case "events":
window.location.href = ("/events");
outputWrapper.innerHTML += `<br><span class="cmd">${prompt.input.value}</span><br>redirecting...`;
commandFound = true;
break;
case "about":
window.location.href = ("/about");
outputWrapper.innerHTML += `<br><span class="cmd">${prompt.input.value}</span><br>redirecting...`;
commandFound = true;
break;
case "x-cryptus":
window.location.href = ("/magazines");
outputWrapper.innerHTML += `<br><span class="cmd">${prompt.input.value}</span><br>redirecting...`;
commandFound = true;
break;
case "sponsors":
window.location.href = ("/sponsors");
outputWrapper.innerHTML += `<br><span class="cmd">${prompt.input.value}</span><br>redirecting...`;
commandFound = true;
break;
case "contacts":
window.location.href = ("/contacts");
outputWrapper.innerHTML += `<br><span class="cmd">${prompt.input.value}</span><br>redirecting...`;
commandFound = true;
break;
}
}
if (prompt.input.value == "clear") {
outputWrapper.innerHTML = "";
commandFound = true;
}
if (prompt.input.value == "exit") {
outputWrapper.innerHTML = "";
prompt.close()
commandFound = true;
}
}
if (!commandFound) {
outputWrapper.innerHTML += `<br><br><span class="cmd_err">${prompt.input.value}</span><br>ERROR: Unknown Command`;
}
prompt.input.value = "";
prompt.input.style.width = "0.5rem";
}
let contentWrapper = document.querySelector(".window-content");
contentWrapper.scrollTop = contentWrapper.scrollHeight;
}
function setInputWidth(inputElement) {
// Calculate the width of the content in pixels
const contentWidth = getTextWidth(
inputElement.value,
window.getComputedStyle(inputElement).font
);
console.log(contentWidth);
// Set the input field width with some padding
inputElement.style.width = contentWidth + 5 + "px";
}
// Function to get the width of a text string in pixels
function getTextWidth(text, font) {
console.log(100);
const canvas = document.createElement("canvas");
const context = canvas.getContext("2d");
context.font = font;
const textMetrics = context.measureText(text);
return textMetrics.width;
}
document.addEventListener("click", (event) => {
// console.log(event);
if (event.target.className.includes('window') || event.target.className.includes('window-header') || event.target.className.includes('window-content') || event.target.className.includes('window-title') || event.target.className.includes('outputs') || event.target.className.includes('window-cursor'))
prompt.focus()
})
prompt.init();