forked from cbcalves/quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quotes.js
58 lines (47 loc) · 1.46 KB
/
quotes.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
// Versão Quotes em Português
// Declarando variáveis globais
let globalText = null;
let globalAuthor = null;
let globalQuotes = [];
let globalButton = null;
// Aciona quando a página estiver carregada
window.addEventListener('load', start);
// Função assíncrona - conecta o HTML ao JS
async function start() {
globalText = document.getElementById('text');
globalAuthor = document.getElementById('author');
globalButton = document.getElementById('newQuote');
// Botão para solicitar uma nova Quote à API
globalButton.addEventListener('click', start);
//Gets author and new quote from API
await getQuotes();
//Updates page with data received via API call
updatePage();
}
// Função assíncrona - recebe os dados da API
async function getQuotes() {
// init loading
document.body.classList.add('loading');
try {
res = await fetch('https://shielded-chamber-42580.herokuapp.com');
globalQuotes = await res.json();
} catch (err) {
console.log(err);
globalQuotes = [{
text: err,
author: 'Error'
}];
}
// finish loading
setTimeout(function () {
document.body.classList.remove('loading');
}, 300);
}
// Função que acessa os dados retornados pela API - JSON
function updatePage() {
if (globalQuotes.length === 0) {
return;
}
globalText.innerHTML = globalQuotes.Quote;
globalAuthor.innerHTML = globalQuotes.Author;
}