-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
66 lines (59 loc) · 1.36 KB
/
app.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
;(function() {
'use strict'
// The monsters and socks
const monsters = [
'monster1',
'monster2',
'monster3',
'monster4',
'monster5',
'monster6',
'monster7',
'monster8',
'monster9',
'monster10',
'monster11',
'sock'
]
const app = document.querySelector('#app')
/**
* Randomly shuffle an array
* https://stackoverflow.com/a/2450976/1293256
* @param {Array} array The array to shuffle
* @return {String} The first item in the shuffled array
*/
const shuffle = function(array) {
let currentIndex = array.length
let temporaryValue, randomIndex
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex)
currentIndex -= 1
// And swap it with the current element.
temporaryValue = array[currentIndex]
array[currentIndex] = array[randomIndex]
array[randomIndex] = temporaryValue
}
return array
}
function createCells(monsters) {
return monsters.map(
monster => `<img src="assets/svg/${monster}.svg" alt="${monster}">`
)
}
function buildGrid() {
const cells = createCells(monsters)
return (
`<div class="row">` +
shuffle(cells)
.map(item => `<div class="grid">${item}</div>`)
.join('') +
`</div>`
)
}
function renderGrid() {
app.innerHTML = buildGrid()
}
renderGrid()
})()