Compare commits
4 Commits
2977478b0c
...
aee24b18d1
Author | SHA1 | Date | |
---|---|---|---|
aee24b18d1 | |||
5ea8c9d506 | |||
e5892803a9 | |||
117b5cb99a |
Binary file not shown.
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 175 KiB |
@ -94,13 +94,11 @@ input {
|
|||||||
.image-grid {
|
.image-grid {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 5px;
|
gap: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.image-grid>* {
|
.image-grid>* {
|
||||||
max-width: 50%;
|
max-width: 100%;
|
||||||
max-height: 50%;
|
max-height: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,8 +20,7 @@
|
|||||||
<h1>welcome to my website</h1>
|
<h1>welcome to my website</h1>
|
||||||
<h2 id="switch_theme">switch theme</h2>
|
<h2 id="switch_theme">switch theme</h2>
|
||||||
|
|
||||||
<p>press <kbd>Enter</kbd> to run command</p>
|
<p>type <span id="help">'help'</span> to list all commands</p>
|
||||||
<p>use <span id="help">'help'</span> to list all commands</p>
|
|
||||||
<span>[guest@website ~]$ </span>
|
<span>[guest@website ~]$ </span>
|
||||||
<input type="text" id="command">
|
<input type="text" id="command">
|
||||||
</div>
|
</div>
|
||||||
|
31
js/data.js
31
js/data.js
@ -16,21 +16,12 @@ const MUSIC_METADATA = [
|
|||||||
'Metallica'
|
'Metallica'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'gothic metal',
|
|
||||||
aliases: ['gm', 'goth', 'gothic'],
|
|
||||||
artists: [
|
|
||||||
'Draconian',
|
|
||||||
'Beseech',
|
|
||||||
'To/Die/For',
|
|
||||||
'For My Pain...',
|
|
||||||
'Entwine'
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'depressive suicidal black metal',
|
name: 'depressive suicidal black metal',
|
||||||
aliases: ['dsbm'],
|
aliases: ['dsbm'],
|
||||||
artists: [
|
artists: [
|
||||||
|
'Totalselfhatred',
|
||||||
|
'Lifelover',
|
||||||
'минута агонии',
|
'минута агонии',
|
||||||
'Decalius'
|
'Decalius'
|
||||||
]
|
]
|
||||||
@ -45,22 +36,8 @@ const MUSIC_METADATA = [
|
|||||||
'Watain',
|
'Watain',
|
||||||
'Bathory',
|
'Bathory',
|
||||||
'Carpathian Forest',
|
'Carpathian Forest',
|
||||||
'Darkthrone'
|
'Darkthrone',
|
||||||
]
|
'Rotting Christ'
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'nu metal',
|
|
||||||
aliases: ['nm', 'nu'],
|
|
||||||
artists: [
|
|
||||||
'Slipknot',
|
|
||||||
'Evanescence'
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'other genres',
|
|
||||||
aliases: [],
|
|
||||||
artists: [
|
|
||||||
'Rammstein'
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
22
js/script.js
22
js/script.js
@ -5,13 +5,13 @@ function updateAge() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// process command function
|
// process command function
|
||||||
function processCommand() {
|
function processCommand(input) {
|
||||||
const [commandName, ...args] = command.value.split(' ') || [command.value]
|
const [commandName, ...args] = input.split(' ') || [input]
|
||||||
const suppliedCommand = COMMANDS.find(c => c.name === commandName)
|
const suppliedCommand = COMMANDS.find(c => c.name === commandName)
|
||||||
|
|
||||||
if (!suppliedCommand) {
|
if (!suppliedCommand) {
|
||||||
result.textContent = 'invalid command';
|
result.textContent = '';
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { arguments, output } = suppliedCommand;
|
const { arguments, output } = suppliedCommand;
|
||||||
@ -66,9 +66,7 @@ command?.addEventListener('focusout', () => {
|
|||||||
setTimeout(() => command.focus(), 0);
|
setTimeout(() => command.focus(), 0);
|
||||||
})
|
})
|
||||||
|
|
||||||
command?.addEventListener('keydown', e => {
|
command?.addEventListener('input', () => processCommand(command.value))
|
||||||
if (e.key === 'Enter') processCommand()
|
|
||||||
})
|
|
||||||
|
|
||||||
// run all tasks
|
// run all tasks
|
||||||
if (typeof age !== 'undefined') runEvery(updateAge, 10 * 1000)
|
if (typeof age !== 'undefined') runEvery(updateAge, 10 * 1000)
|
||||||
@ -82,5 +80,11 @@ if (theme === 'dark')
|
|||||||
// listen to help tooltip
|
// listen to help tooltip
|
||||||
help.addEventListener('click', () => {
|
help.addEventListener('click', () => {
|
||||||
command.value = 'help';
|
command.value = 'help';
|
||||||
processCommand();
|
processCommand('help');
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// ignore context menu
|
||||||
|
document.addEventListener('contextmenu', e => e.preventDefault());
|
||||||
|
|
||||||
|
// check for command in input
|
||||||
|
if (command?.value) processCommand(command.value);
|
Reference in New Issue
Block a user