Add clang-format config
This commit is contained in:
parent
fd529835a4
commit
5c85e09ad5
3 changed files with 143 additions and 128 deletions
7
.clang-format
Normal file
7
.clang-format
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
Language: JavaScript
|
||||
UseTab: Always
|
||||
IndentWidth: 4
|
||||
TabWidth: 4
|
||||
LineEnding: LF
|
||||
---
|
4
Justfile
4
Justfile
|
@ -1,5 +1,9 @@
|
|||
check:
|
||||
markdownlint-cli2
|
||||
clang-format --dry-run assets/js/*.js
|
||||
|
||||
format:
|
||||
clang-format -i assets/js/*.js
|
||||
|
||||
serve:
|
||||
hugo serve
|
||||
|
|
|
@ -16,8 +16,8 @@ function randomRange(min, max) {
|
|||
}
|
||||
|
||||
async function delay(millis) {
|
||||
await new Promise((resolve) =>
|
||||
setTimeout(resolve, millis),
|
||||
await new Promise(
|
||||
(resolve) => setTimeout(resolve, millis),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -143,7 +143,7 @@ function handleInput(event) {
|
|||
}
|
||||
|
||||
function inputCodeCheck(typedText) {
|
||||
switch(typedText.toLowerCase()) {
|
||||
switch (typedText.toLowerCase()) {
|
||||
case "(){:;}":
|
||||
shellShock();
|
||||
break;
|
||||
|
@ -171,8 +171,11 @@ function inputCodeCheck(typedText) {
|
|||
}
|
||||
}
|
||||
|
||||
const code = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65];
|
||||
const code_two = [48, 49, 49, 56, 57, 57, 57, 56, 56, 49, 57, 57, 57, 49, 49, 57, 55, 50, 53, 51];
|
||||
const code = [ 38, 38, 40, 40, 37, 39, 37, 39, 66, 65 ];
|
||||
const code_two = [
|
||||
48, 49, 49, 56, 57, 57, 57, 56, 56, 49,
|
||||
57, 57, 57, 49, 49, 57, 55, 50, 53, 51
|
||||
];
|
||||
|
||||
let currentStepOne = 0;
|
||||
let currentStepTwo = 0;
|
||||
|
@ -188,7 +191,8 @@ function checkSequence(e) {
|
|||
currentStepOne = 0;
|
||||
setNixieColor('var(--nixie-green)');
|
||||
setNixieContent("ITCRWD");
|
||||
let search_field = document.getElementsByClassName("widget-search__field")[0];
|
||||
let search_field =
|
||||
document.getElementsByClassName("widget-search__field")[0];
|
||||
search_field.placeholder = 'Emergency Services';
|
||||
}
|
||||
} else {
|
||||
|
@ -199,7 +203,8 @@ function checkSequence(e) {
|
|||
currentStepTwo++;
|
||||
if (currentStepTwo === code_two.length) {
|
||||
nixieRainbow();
|
||||
let search_field = document.getElementsByClassName("widget-search__field")[0];
|
||||
let search_field =
|
||||
document.getElementsByClassName("widget-search__field")[0];
|
||||
search_field.placeholder = 'user@it-syndikat:~$';
|
||||
setTimeout(() => {
|
||||
search_field.value = '';
|
||||
|
@ -222,12 +227,15 @@ window.addEventListener('keydown', checkSequence);
|
|||
function shuffleArray(array) {
|
||||
for (let i = array.length - 1; i > 0; i--) {
|
||||
const j = Math.floor(Math.random() * (i + 1));
|
||||
[array[i], array[j]] = [array[j], array[i]];
|
||||
[array[i], array[j]] = [ array[j], array[i] ];
|
||||
}
|
||||
return array;
|
||||
}
|
||||
|
||||
function shuffleString(inputString, charSet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+[]{}|;:,.<>?') {
|
||||
function shuffleString(
|
||||
inputString,
|
||||
charSet =
|
||||
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+[]{}|;:,.<>?') {
|
||||
let characters = inputString.split('');
|
||||
|
||||
for (let i = 0; i < inputString.length; i++) {
|
||||
|
@ -236,7 +244,7 @@ function shuffleString(inputString, charSet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefg
|
|||
|
||||
for (let i = characters.length - 1; i > 0; i--) {
|
||||
const j = Math.floor(Math.random() * (i + 1));
|
||||
[characters[i], characters[j]] = [characters[j], characters[i]];
|
||||
[characters[i], characters[j]] = [ characters[j], characters[i] ];
|
||||
}
|
||||
|
||||
return characters.join('');
|
||||
|
@ -252,9 +260,9 @@ function shellShock() {
|
|||
setTimeout(() => {
|
||||
element.style.display = 'none';
|
||||
if (index === shuffledElements.length - 1) {
|
||||
setTimeout(() => {
|
||||
document.body.innerText = "But nobody came.";
|
||||
}, 100);
|
||||
setTimeout(
|
||||
() => { document.body.innerText = "But nobody came."; },
|
||||
100);
|
||||
}
|
||||
}, index * 100);
|
||||
});
|
||||
|
@ -263,9 +271,7 @@ function shellShock() {
|
|||
function matrix() {
|
||||
resetNixieRainbow();
|
||||
setNixieColor('var(--nixie-green)');
|
||||
setInterval(() => {
|
||||
setNixieContent(shuffleString('matrix'));
|
||||
}, 100);
|
||||
setInterval(() => { setNixieContent(shuffleString('matrix')); }, 100);
|
||||
}
|
||||
|
||||
function barrel() {
|
||||
|
@ -314,7 +320,8 @@ function pacman() {
|
|||
|
||||
document.body.appendChild(pacManDiv);
|
||||
|
||||
const elements = document.querySelectorAll('.menu__item, .tube, .tube>span');
|
||||
const elements =
|
||||
document.querySelectorAll('.menu__item, .tube, .tube>span');
|
||||
|
||||
function checkCollision() {
|
||||
const rect1 = pacManDiv.getBoundingClientRect();
|
||||
|
@ -322,12 +329,10 @@ function pacman() {
|
|||
elements.forEach((element) => {
|
||||
const rect2 = element.getBoundingClientRect();
|
||||
|
||||
if (
|
||||
rect1.left < rect2.left + rect2.width &&
|
||||
if (rect1.left < rect2.left + rect2.width &&
|
||||
rect1.left + rect1.width > rect2.left &&
|
||||
rect1.top < rect2.top + rect2.height &&
|
||||
rect1.top + rect1.height > rect2.top
|
||||
) {
|
||||
rect1.top + rect1.height > rect2.top) {
|
||||
if (element.nodeName === "LI") {
|
||||
element.style.visibility = 'hidden';
|
||||
} else {
|
||||
|
@ -364,9 +369,8 @@ function gamble() {
|
|||
let intervalId;
|
||||
|
||||
function startSlotMachine() {
|
||||
intervalId = setInterval(() => {
|
||||
setNixieContent(shuffleString('gamble'));
|
||||
}, 100);
|
||||
intervalId =
|
||||
setInterval(() => { setNixieContent(shuffleString('gamble')); }, 100);
|
||||
|
||||
setTimeout(stopSlotMachine, 2000);
|
||||
}
|
||||
|
@ -423,7 +427,7 @@ function applyScore(score) {
|
|||
let scoreNum = parseFloat(scoreSpan.textContent);
|
||||
scoreNum += score;
|
||||
scoreSpan.textContent = `${scoreNum}€`;
|
||||
if(scoreNum <= 0) {
|
||||
if (scoreNum <= 0) {
|
||||
setNixieColor('red');
|
||||
setNixieContent('DEATH💀')
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue