-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
83 lines (70 loc) · 2.26 KB
/
script.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
79
80
81
82
83
const RandomQuote_API_URL = 'https://api.quotable.io/random'
const quoteDisplayElement = document.getElementById('quoteDisplay')
const quoteInputElement = document.getElementById('quoteInput')
const timerElement = document.getElementById('timer')
const textElement = document.getElementById('infoText')
const contCounter = document.getElementById('counter')
var i = 0;
var completeSentences = 0;
var typingSpeed = 0;
contCounter.innerHTML = completeSentences;
document.getElementById('completed').innerHTML = 'Completed Sentneces: ';
quoteInputElement.addEventListener("keydown", removeText);
function removeText() {
textElement.style.visibility = "hidden";
while (i==0) {
i++;
startTimer();
}
}
quoteInputElement.addEventListener('input', () => {
const arrayQuote = quoteDisplayElement.querySelectorAll('span')
const arrayValue = quoteInputElement.value.split('')
let correct = true
arrayQuote.forEach((characterSpan, index) => {
const character = arrayValue[index]
if (character == null) {
characterSpan.classList.remove('correct')
characterSpan.classList.remove('incorrect')
correct = false
} else if (character === characterSpan.innerText) {
characterSpan.classList.add('correct')
characterSpan.classList.remove('incorrect')
} else {
characterSpan.classList.remove('correct')
characterSpan.classList.add('incorrect')
correct = false
}
})
if (correct) {
renderNewQuote();
completeSentences += 1;
contCounter.innerHTML = completeSentences;
}
})
function getRandomQuote() {
return fetch(RandomQuote_API_URL)
.then(response => response.json())
.then(data => data.content)
}
async function renderNewQuote() {
const quote = await getRandomQuote()
quoteDisplayElement.innerHTML = ''
quote.split('').forEach(character => {
const characterSpan = document.createElement('span')
characterSpan.innerText = character
quoteDisplayElement.appendChild(characterSpan)
})
quoteInputElement.value = null
// startTimer()
}
let startTime
function startTimer() {
timerElement.innerText = 0
startTime = new Date()
setInterval(() => { timer.innerText = getTimerTime()}, 1000)
}
function getTimerTime() {
return Math.floor((new Date() - startTime) / 1000)
}
renderNewQuote()