-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
script.js
227 lines (183 loc) · 5.36 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
const key = "fca_live_rMwakp88F0k0BVUFVWtwtgUPdd2OEsIASXs0KFna";
const state = {
openedDrawer: null,
currencies: [],
filteredCurrencies: [],
base: "USD",
target: "EUR",
rates: {},
baseValue: 1,
};
//* selectors
const ui = {
controls: document.getElementById("controls"),
drawer: document.getElementById("drawer"),
dismissBtn: document.getElementById("dismiss-btn"),
currencyList: document.getElementById("currency-list"),
searchInput: document.getElementById("search"),
baseBtn: document.getElementById("base"),
targetBtn: document.getElementById("target"),
exchangeRate: document.getElementById("exchange-rate"),
baseInput: document.getElementById("base-input"),
targetInput: document.getElementById("target-input"),
swapBtn: document.getElementById("swap-btn"),
};
//* event listeners
const setupEventListeners = () => {
document.addEventListener("DOMContentLoaded", initApp);
ui.controls.addEventListener("click", showDrawer);
ui.dismissBtn.addEventListener("click", hideDrawer);
ui.searchInput.addEventListener("input", filterCurrency);
ui.currencyList.addEventListener("click", selectPair);
ui.baseInput.addEventListener("change", convertInput);
ui.swapBtn.addEventListener("click", switchPair);
};
//* event handlers
const initApp = () => {
fetchCurrencies();
fetchExchangeRate();
};
const showDrawer = (e) => {
if (e.target.hasAttribute("data-drawer")) {
state.openedDrawer = e.target.id;
ui.drawer.classList.add("show");
}
};
const hideDrawer = () => {
clearSearchInput();
state.openedDrawer = null;
ui.drawer.classList.remove("show");
};
const filterCurrency = () => {
const keyword = ui.searchInput.value.trim().toLowerCase();
state.filteredCurrencies = getAvailableCurrencies().filter(
({ code, name }) => {
return (
code.toLowerCase().includes(keyword) ||
name.toLowerCase().includes(keyword)
);
}
);
displayCurrencies();
};
const selectPair = (e) => {
if (e.target.hasAttribute("data-code")) {
const { openedDrawer } = state;
// update the base or target in the state
state[openedDrawer] = e.target.dataset.code;
// load the exchange rates then update the btns
loadExchangeRate();
// close the drawer after selection
hideDrawer();
}
};
const convertInput = () => {
state.baseValue = parseFloat(ui.baseInput.value) || 1;
loadExchangeRate();
};
const switchPair = () => {
const { base, target } = state;
state.base = target;
state.target = base;
state.baseValue = parseFloat(ui.targetInput.value) || 1;
loadExchangeRate();
};
//* render functions
const displayCurrencies = () => {
ui.currencyList.innerHTML = state.filteredCurrencies
.map(({ code, name }) => {
return `
<li data-code="${code}">
<img src="${getImageURL(code)}" alt="${name}" />
<div>
<h4>${code}</h4>
<p>${name}</p>
</div>
</li>
`;
})
.join("");
};
const displayConversion = () => {
updateButtons();
updateInputs();
updateExchangeRate();
};
const showLoading = () => {
ui.controls.classList.add("skeleton");
ui.exchangeRate.classList.add("skeleton");
};
const hideLoading = () => {
ui.controls.classList.remove("skeleton");
ui.exchangeRate.classList.remove("skeleton");
};
//* helper functions
const updateButtons = () => {
[ui.baseBtn, ui.targetBtn].forEach((btn) => {
const code = state[btn.id];
btn.textContent = code;
btn.style.setProperty("--image", `url(${getImageURL(code)})`);
});
};
const updateInputs = () => {
const { base, baseValue, target, rates } = state;
const result = baseValue * rates[base][target];
ui.targetInput.value = result.toFixed(2);
ui.baseInput.value = baseValue;
};
const updateExchangeRate = () => {
const { base, target, rates } = state;
const rate = rates[base][target].toFixed(2);
ui.exchangeRate.textContent = `1 ${base} = ${rate} ${target}`;
};
const getAvailableCurrencies = () => {
return state.currencies.filter(({ code }) => {
return state.base !== code && state.target !== code;
});
};
const clearSearchInput = () => {
ui.searchInput.value = "";
ui.searchInput.dispatchEvent(new Event("input"));
};
const getImageURL = (code) => {
const flag =
"https://wise.com/public-resources/assets/flags/rectangle/{code}.png";
return flag.replace("{code}", code.toLowerCase());
};
const loadExchangeRate = () => {
const { base, rates } = state;
if (typeof rates[base] !== "undefined") {
// if the base rates are already in the state, then show it
displayConversion();
} else {
// else, fetch the updated exchange rates
fetchExchangeRate();
}
};
//* api functions
const fetchCurrencies = () => {
fetch(`https://api.freecurrencyapi.com/v1/currencies?apikey=${key}`)
.then((response) => response.json())
.then(({ data }) => {
state.currencies = Object.values(data);
state.filteredCurrencies = getAvailableCurrencies();
displayCurrencies();
})
.catch(console.error);
};
const fetchExchangeRate = () => {
const { base } = state;
showLoading();
fetch(
`https://api.freecurrencyapi.com/v1/latest?apikey=${key}&base_currency=${base}`
)
.then((response) => response.json())
.then(({ data }) => {
state.rates[base] = data;
displayConversion();
})
.catch(console.error)
.finally(hideLoading);
};
//* initialization
setupEventListeners();