-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurrency.js
57 lines (41 loc) · 1.62 KB
/
currency.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
class Currency {
constructor(firstCurrency,secondCurrency){
this.firstCurrency = firstCurrency;
this.secondCurrency = secondCurrency;
this.url = "https://api.exchangerate.host/latest?base=";
this.amount = null;
}
// veri alışverişi için kullandığımız metod
exchange(){
return new Promise((resolve, reject) => {
// url kısmındaki base=... kısmına denk gelen veriyi alıyoruz
fetch(this.url + this.firstCurrency)
.then(response => response.json()) // verimizi json olarak alıyoruz
.then(data => {
// burada örn 1 usd kaç try eder onun hesabını yapacağız aldığımız data üzerinden
// parity değeri çevrilmek istenen kısım olacaktır
const parity = data["rates"][this.secondCurrency];
const amount2 = Number(this.amount); // bu kısımda ise gelen veriyi number yapıyoruz
let total = parity * amount2; // burada değeri hesaplıyoruz
// diğer js lerde kullanmak için promise döndüreceğiz
if(amount2 <= 0){
resolve("Bu değer dönüştürülemez!");
}
else{
resolve(total);
}
}) // promise döner ve daha sonra bu json içerisindeki datayı alıyoruz
.catch(err => reject(err)); // hata durumunda catch ile yakalıyoruz
});
}
// dinamin olarak değişen amount ve select ler için fonksiyonları yazıyoruz
changeAmount(amount){
this.amount = amount;
}
changeFirstCurrency(newFirstCurrency){
this.firstCurrency = newFirstCurrency;
}
changeSecondCurrency(newSecondCurrency){
this.secondCurrency = newSecondCurrency;
}
}