forked from getlost01/country-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
257 lines (229 loc) · 8.2 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
var searchBtn = document.querySelector('#searchBtn');
var searchItem = document.querySelector('#searchItem');
var mainCon = document.querySelector('#mainCon');
var backArrow = document.querySelector('#backArrow');
var toogle = document.querySelector('#toogle');
var loading = document.querySelector('#loading');
var docs = document.querySelector('#docs');
var mql = window.matchMedia('(max-width: 1025px)');
var isToogle = false;
var isDoc = false;
var selections = ["all","name","capital","currency","lang","region","subregion"];
var type=`all`;
var search='';
var lastData = "";
var apiData = "";
const apiUrl=`https://restcountries.com/v3.1/`;
searchItem.onkeyup = function (e) {if (e. key === 'Enter') {searchBtn.click(); }}
mql.onchange = (e) => {
if (e.matches)
{
document.querySelector("#nav1").style.left = "-260px";
document.querySelector("#nav2").style.right = "-260px";
isToogle = true;
isDoc = true;}
else
{
document.querySelector("#nav2").style.right = "0px";
document.querySelector("#nav1").style.left = "0px";
isToogle = false;
isDoc = false;}
}
toogle.addEventListener('click',()=>{
if(isToogle)
{
document.querySelector("#nav1").style.left = "0px";
isToogle = false;
document.querySelector("#topArrow").classList.remove("fa-angles-right");
document.querySelector("#topArrow").classList.add("fa-angles-left");
}
else
{
document.querySelector("#nav1").style.left = "-260px";
isToogle = true;
document.querySelector("#topArrow").classList.add("fa-angles-right");
document.querySelector("#topArrow").classList.remove("fa-angles-left");
}
})
docs.addEventListener('click',()=>{
if(isDoc)
{
document.querySelector("#nav2").style.right = "0px";
isDoc = false;
}
else
{
document.querySelector("#nav2").style.right = "-260px";
isDoc = true;
}
})
selections.forEach(ele => {
document.querySelector(`#${ele}`).addEventListener('click',()=>{
searchItem.value="";
document.querySelector('#searchCon').classList.remove('hidden');
selections.forEach(e=>{
document.querySelector(`#${e}`).classList.remove('okactive');
})
document.querySelector(`#${ele}`).classList.add('okactive');
type = ele;
if(ele==="all")
{document.querySelector('#searchCon').classList.add('hidden');
search = "";
FetchAPI();
}
searchItem.placeholder = `Search ${ele}`
});
});
backArrow.addEventListener('click',()=>{
backArrow.classList.add("hidden");
mainCon.innerHTML = lastData;
apiData = JSON.parse(localStorage.getItem("LastFetched"));
apiData.forEach((country)=>{
document.querySelector(`#${country.cca3}`).addEventListener('click',()=>fetchFull(country))
})
});
searchBtn.addEventListener('click',()=>{
search = searchItem.value;
FetchAPI();
})
async function FetchAPI() {
loading.classList.remove("hidden");
try {
// console.log(`${apiUrl}${type}/${search}`);
const response = await fetch(`${apiUrl}${type}/${search}`);
const apiData = await response.json();
apiData.sort(function (a, b) {
return a.name.common.localeCompare(b.name.common);
});
loading.classList.add("hidden");
var temp = "";
apiData.forEach((country)=>{
temp+=`
<div class="row mb-3 p-2 border border-dark detail-con">
<h1 class="d-flex align-items-center"> <span class="flag shadow"> ${country.flag} </span> <span class="counName"> ${country.name.common} </span></h1>
<p class="counDetails">Country region: <span class="special">${country.region}</span>, capital: <span class="special">${country.capital}</span>, timezone: <span class="special">${country.timezones[0]}</span></p>
<div class="btn-custom" id=${country.cca3}> Read More </div>
</div>
`;
})
mainCon.innerHTML= temp;
lastData = temp;
apiData.forEach((country)=>{
document.querySelector(`#${country.cca3}`).addEventListener('click',()=>fetchFull(country))
})
localStorage.setItem("LastFetched",JSON.stringify(apiData));
console.log("Api Working Successfully");
backArrow.classList.add("hidden");
} catch
{
loading.classList.add("hidden");
alert(`Not Found "${search}" in type "${type}", try another.`);
console.log("Api Fetching failed");
}
}
FetchAPI();
type = "name";
function fetchFull(country){
backArrow.classList.remove("hidden");
var curName,curSym;
var curLang="";
for (key in country.currencies) {
if (country.currencies.hasOwnProperty(key)) {
curName = country.currencies[key].name;
curSym = country.currencies[key].symbol;
}
}
for (key in country.languages) {
if (country.languages.hasOwnProperty(key)) {
curLang+= country.languages[key]+" ";
}
}
console.log(country.languages);
var temp = `
<div class="row m-2 p-2 ">
<h1 class="d-flex align-items-center mb-3"> <span class="flag shadow"> ${country.flag} </span> <span class="counName"> ${country.name.common} </span></h1>
<table class="table table-hover">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Fields</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody class="table-style">
<tr>
<th scope="row">1</th>
<td>Official Name</td>
<td>${country.name.official}</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Capital city</td>
<td>${country.capital}</td>
</tr>
<tr>
<th scope="row">3</th>
<td>UN Member</td>
<td>${ ((country.unMember)?"Yes":"No")}</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Currency</td>
<td>${curName} ( ${curSym} )</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Main languages</td>
<td>${curLang}</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Region</td>
<td>${country.region}</td>
</tr>
<tr>
<th scope="row">7</th>
<td>Sub-Region</td>
<td>${country.subregion}</td>
</tr>
<tr>
<th scope="row">8</th>
<td>Average Latitude / Longitude </td>
<td>${country.latlng[0]} , ${country.latlng[1]} </td>
</tr>
<tr>
<th scope="row">9</th>
<td>Area Covered</td>
<td>${country.area} Km.sq</td>
</tr>
<tr>
<th scope="row">10</th>
<td>Population</td>
<td>${country.population} </td>
</tr>
<tr>
<th scope="row">11</th>
<td>Time-Zone</td>
<td>${country.timezones[0]}</td>
</tr>
<tr>
<th scope="row">12</th>
<td>Coat Of Arms</td>
<td><a href="${country.coatOfArms.png}" target="_blank"><img src="${country.coatOfArms.png}" alt="..." class="w-4"></a></td>
</tr>
<tr>
<th scope="row">13</th>
<td>Google Map</td>
<td><a href="${country.maps.googleMaps}" target="_blank">Visit Now</a></td>
</tr>
<tr>
<th scope="row">14</th>
<td>Open Street Maps</td>
<td><a href="${country.maps.openStreetMaps}" target="_blank">Visit Now</a></td>
</tr>
</tbody>
</table>
</div>`
mainCon.innerHTML= temp;
// console.log(country.name.common);
}