-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
60 lines (50 loc) · 1.63 KB
/
App.js
File metadata and controls
60 lines (50 loc) · 1.63 KB
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
import TextTyper from "./TextTyper.js";
window.customElements.define("text-typer", TextTyper);
const newTyper = document.createElement("text-typer");
document.querySelector(".container").appendChild(newTyper);
const maxDataPerFetch = 100;
const maxLength = 60;
let quotes;
let quoteIndex = 0;
getData(maxDataPerFetch, maxLength)
.then((res) => res.json())
.then((jsonData) => {
quotes = shuffle(jsonData.results);
newTyper.setAttribute("data-text", quotes[quoteIndex].content);
});
newTyper.addEventListener("typingFinished", () => {
if (quoteIndex + 1 >= maxDataPerFetch) {
quoteIndex = 0;
getData(maxDataPerFetch, maxLength)
.then((res) => res.json())
.then((jsonData) => {
quotes = shuffle(jsonData.results);
newTyper.setAttribute("data-text", quotes[quoteIndex].content);
});
newTyper.setAttribute("data-text", quotes[quoteIndex].content);
} else {
quoteIndex++;
newTyper.setAttribute("data-text", quotes[quoteIndex].content);
}
});
function getData(maxDataPerFetch, maxLength) {
return fetch(
`https://api.quotable.io/quotes?limit=${maxDataPerFetch}&maxLength=${maxLength}`
);
}
function shuffle(array) {
var currentIndex = array.length,
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;
}