-
-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathindex.js
78 lines (65 loc) · 2.18 KB
/
index.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
// As fetch() is an asynchronous function we can add the async/await keywords
async function fetchQuizQuestions(difficulty) {
return await fetch(`https://opentdb.com/api.php?amount=10&difficulty=${difficulty}`)
.then(response => {
return response.json()
})
.then(data => {
renderQuizQuestions(data)
})
.catch(error => {
console.error('Error: ', error)
})
}
function renderQuizQuestions(data) {
const container = document.getElementById('questions')
//when new data is fetched we want to remove the pre-existing list
container.removeChild(container.firstChild)
const list = document.createElement('ul')
container.appendChild(list)
data.results.map((questionObject) => {
const listElement = document.createElement('li')
const text = document.createTextNode(questionObject.question)
listElement.appendChild(text)
list.appendChild(listElement)
})
}
// Bonus part of the tutorial functions
function createSelector() {
const difficulties = ['easy', 'medium', 'hard']
const selectorContainer = document.getElementById('selector-container')
const selector = document.createElement('select')
selector.id = 'selector'
difficulties.map((difficulty) => {
const option = new Option(difficulty, difficulty)
selector.appendChild(option)
})
selectorContainer.appendChild(selector)
}
function selectorChangeListener() {
const selector = document.getElementById('selector')
selector.addEventListener('change', event => {
const difficulty = event.target.value.toLowerCase()
fetchQuizQuestions(difficulty)
})
}
// // //
function renderApp() {
createSelector()
// set to easy to load the page with
fetchQuizQuestions('easy')
selectorChangeListener()
}
document.addEventListener('readystatechange', event => {
const readyState = event.target.readyState
const container = document.getElementById('questions')
if (readyState === 'interactive') {
const image = new Image(100, 100)
image.src = 'spinner.gif'
container.appendChild(image)
} else if (readyState === 'complete') {
//remove spinner when document is ready
container.removeChild(container.firstChild)
renderApp()
}
})