-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
55 lines (45 loc) · 1.13 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
const form = document.querySelector('#searchForm');
const res = document.querySelector('#tableResult');
var upd;
form.addEventListener('submit',(e)=>{
e.preventDefault();
if(upd){
clearTimeout(upd);
}
const ctype = form.elements.coinType.value;
fetchPrice(ctype);
});
const fetchPrice= async(ctype) =>{
const r = await axios.get(`https://api.coinstats.app/public/v1/coins/${ctype}?currency=USD`);
console.log(r.data.coin.price);
const price = r.data.coin.price;
const volume = r.data.coin.volume;
const change = r.data.coin.priceChange1d;
const base = r.data.coin.name;
const target = 'USD';
res.innerHTML =`<tr style="background-color:blue; color:white; font-weight:700">
<td>
Property
</td>
<td>Value</td>
</tr>
<tr>
<td>
${base}
</td>
<td>${price} ${target}</td>
</tr>
<tr>
<td>
Volume
</td>
<td>${volume}</td>
</tr>
<tr>
<td>
Change
</td>
<td>${change}</td>
</tr>`
upd = setTimeout(()=>fetchPrice(ctype),10000);
}