const input = document.querySelector('#cmd'); const cmdHistoryElement = document.querySelector('#cmd-history'); const today = new Date(); const currentYear = today.getFullYear(); const cmdHistory = []; let cmdIndex = 0; document.querySelector('#currentYear').textContent = currentYear; input.focus(); input.addEventListener('blur', (evt) => input.focus()); window.addEventListener('keypress', (evt) => { const command = input.value.trim(); if (evt.key === 'Enter' && command.length > 0) { const cmdToSave = document.createElement('p'); const output = document.createElement('p'); cmdToSave.textContent = `> ${command}`; cmdHistoryElement.append(cmdToSave); switch (command.toLowerCase()) { default: output.style.color = 'red'; output.textContent = `ERROR: Unknown command '${command}'`; break; case 'about': const daysOfThisYear = currentYear % 400 === 0 || (currentYear % 100 !== 0 && currentYear % 4 === 0) ? 366 : 365; const timeDiff = today.getTime() - new Date('2005-05-08').getTime(); const age = Math.floor(timeDiff / (3600 * 24 * daysOfThisYear * 1000)); output.textContent = `Maciej Pedzich is a ${age}-year-old high school student from Kielce, Poland. He makes web applications using Vue.js, Node.js, Express and MongoDB/PostgreSQL, but he likes experimenting with other solutions too. He believes that by being creative and cooperating with others, you can achieve success. When not coding, he is probably watching an F1 race, or playing retro video games.`; break; case 'contact': output.innerHTML = `Email address: contact@maciejpedzi.ch`; break; case 'github': window.open('https://github.com/maciejpedzich'); break; case 'help': output.innerHTML = `

about - shows everything you need to know about Maciej

contact - displays contact information

github - shows Maciej's Github profile

help - displays a list of available commands

skills - presents a set of current skills

Use up and down arrows to retype commands

`; break; case 'skills': output.innerHTML = `

Frontend: HTML, CSS, JavaScript, TypeScript, Vue.js

Backend: JavaScript, TypeScript, Node.js, Express

Database: MongoDB, PostgreSQL

Tooling: Git, Visual Studio Code, Linux Bash, Windows PowerShell

Hosting/Deployment: Netlify, Amazon Web Services, MongoDB Atlas

`; break; } cmdHistory.push(command); cmdHistoryElement.append(output); input.value = ''; input.scrollIntoView(); } }); window.addEventListener('keydown', (evt) => { if (cmdHistory.length > 0) { if (evt.key === 'ArrowUp') { cmdIndex - 1 >= 0 ? cmdIndex-- : (cmdIndex = cmdHistory.length - 1); input.value = cmdHistory[cmdIndex]; } else if (evt.key === 'ArrowDown') { cmdIndex + 1 < cmdHistory.length ? cmdIndex++ : (cmdIndex = 0); input.value = cmdHistory[cmdIndex]; } } });