-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
495 lines (408 loc) · 15.4 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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
'use strict';
const btn = document.querySelector('.btn-country');
const countriesContainer = document.querySelector('.countries');
const renderCountry = function (data, className = '') {
const html = `
<article class="country ${className}">
<img class="country__img" src="${data.flag}" />
<div class="country__data">
<h3 class="country__name">${data.name}</h3>
<h4 class="country__region">${data.region}</h4>
<p class="country__row"><span>👫</span>${(
+data.population / 1000000
).toFixed(1)} people</p>
<p class="country__row"><span>🗣️</span>${data.languages[0].name}</p>
<p class="country__row"><span>💰</span>${
data.currencies[0].name
}</p>
</div>
</article>
`;
countriesContainer.insertAdjacentHTML('beforeend', html);
};
const renderError = function (msg) {
countriesContainer.insertAdjacentText('beforeend', msg);
};
///////////////////////////////////////
/*
const getCountryData = function (country) {
const request = new XMLHttpRequest();
request.open('GET', `https://restcountries.com/v2/name/${country}`);
request.send();
request.addEventListener('load', function () {
const [data] = JSON.parse(this.responseText);
console.log(data);
const html = `
<article class="country">
<img class="country__img" src="${data.flag}" />
<div class="country__data">
<h3 class="country__name">${data.name}</h3>
<h4 class="country__region">${data.region}</h4>
<p class="country__row"><span>👫</span>${(
+data.population / 1000000
).toFixed(1)} people</p>
<p class="country__row"><span>🗣️</span>${data.languages[0].name}</p>
<p class="country__row"><span>💰</span>${
data.currencies[0].name
}</p>
</div>
</article>
`;
countriesContainer.insertAdjacentHTML('beforeend', html);
countriesContainer.style.opacity = 1;
});
};
getCountryData('portugal');
getCountryData('usa');
getCountryData('germany');
getCountryData('indonesia');
*/
/*
const getCountryAndNeighbour = function (country) {
// AJAX call country 1
const request = new XMLHttpRequest();
request.open('GET', `https://restcountries.com/v2/name/${country}`);
request.send();
request.addEventListener('load', function () {
const [data] = JSON.parse(this.responseText);
// console.log(data);
// Render country 1
renderCountry(data);
// Get neighbour country (2)
const neighbour = data.borders?.[0];
if (!neighbour) return;
// AJAX call country 1
const request2 = new XMLHttpRequest();
request2.open('GET', `https://restcountries.com/v2/alpha/${neighbour}`);
request2.send();
request2.addEventListener('load', function () {
const data2 = JSON.parse(this.responseText);
// console.log(data2);
renderCountry(data2, 'neighbour');
});
});
};
getCountryAndNeighbour('portugal');
*/
// const request = new XMLHttpRequest();
// request.open('GET', `https://restcountries.com/v2/name/${country}`);
// request.send();
// const request = fetch('https://restcountries.com/v2/name/portugal');
// console.log(request);
// const getCountryData = function (country) {
// fetch(`https://restcountries.com/v2/name/${country}`)
// .then(function (response) {
// // console.log(response);
// return response.json();
// })
// .then(function (data) {
// // console.log(data);
// renderCountry(data[0]);
// });
// };
// const getCountryData = function (country) {
// // Country 1
// fetch(`https://restcountries.com/v2/name/${country}`)
// .then(response => {
// // console.log(response);
// if (!response.ok)
// throw new Error(`Country not found (${response.status})`);
// return response.json();
// })
// .then(data => {
// renderCountry(data[0]);
// const neighbour = data[0].borders?.[0];
// if (!neighbour) return;
// // Country 2
// return fetch(`https://restcountries.com/v2/alpha/${neighbour}`);
// })
// .then(response => {
// if (!response.ok)
// throw new Error(`Country not found (${response.status})`);
// return response.json();
// })
// .then(data => renderCountry(data, 'neighbour'))
// .catch(err => {
// console.log(`${err}`);
// renderError(`Something went wrong ${err.message}. Try again!`);
// })
// .finally(() => {
// countriesContainer.style.opacity = 1;
// });
// };
const getJSON = function (url, errorMsg = 'Something went wrong') {
return fetch(url).then(response => {
if (!response.ok) throw new Error(`${errorMsg} (${response.status})`);
return response.json();
});
};
const getCountryData = function (country) {
// Country 1
getJSON(`https://restcountries.com/v2/name/${country}`, 'Country not found')
.then(data => {
renderCountry(data[0]);
const neighbour = data[0].borders?.[0];
if (!neighbour) throw new Error('No neighbour found!');
// Country 2
return getJSON(
`https://restcountries.com/v2/alpha/${neighbour}`,
'Country not found'
);
})
.then(data => renderCountry(data, 'neighbour'))
.catch(err => {
console.log(`${err}`);
renderError(`Something went wrong ${err.message}. Try again!`);
})
.finally(() => {
countriesContainer.style.opacity = 1;
});
};
// btn.addEventListener('click', function () {
// getCountryData('australia');
// });
///////////////////////////////////////
// Coding Challenge #1
/*
In this challenge you will build a function 'whereAmI' which renders a country ONLY based on GPS coordinates. For that, you will use a second API to geocode coordinates.
Here are your tasks:
PART 1
1. Create a function 'whereAmI' which takes as inputs a latitude value (lat) and a longitude value (lng) (these are GPS coordinates, examples are below).
2. Do 'reverse geocoding' of the provided coordinates. Reverse geocoding means to convert coordinates to a meaningful location, like a city and country name. Use this API to do reverse geocoding: https://geocode.xyz/api.
The AJAX call will be done to a URL with this format: https://geocode.xyz/52.508,13.381?geoit=json. Use the fetch API and promises to get the data. Do NOT use the getJSON function we created, that is cheating 😉
3. Once you have the data, take a look at it in the console to see all the attributes that you recieved about the provided location. Then, using this data, log a messsage like this to the console: 'You are in Berlin, Germany'
4. Chain a .catch method to the end of the promise chain and log errors to the console
5. This API allows you to make only 3 requests per second. If you reload fast, you will get this error with code 403. This is an error with the request. Remember, fetch() does NOT reject the promise in this case. So create an error to reject the promise yourself, with a meaningful error message.
PART 2
6. Now it's time to use the received data to render a country. So take the relevant attribute from the geocoding API result, and plug it into the countries API that we have been using.
7. Render the country and catch any errors, just like we have done in the last lecture (you can even copy this code, no need to type the same code)
TEST COORDINATES 1: 52.508, 13.381 (Latitude, Longitude)
TEST COORDINATES 2: 19.037, 72.873
TEST COORDINATES 2: -33.933, 18.474
GOOD LUCK 😀
*/
// const whereAmI = function (lat, lng) {
// fetch(
// `https://api.bigdatacloud.net/data/reverse-geocode-client?latitude=${lat}&longitude=${lng}`
// )
// .then(function (response) {
// if (!response.ok) {
// throw new Error('Something went wrong');
// }
// return response.json();
// })
// .then(function (data) {
// // console.log(data);
// console.log(`You are in ${data.city}, ${data.countryName}`);
// getCountryData(data.countryName);
// })
// .catch(err => console.log(err));
// };
// btn.addEventListener('click', function () {
// if (navigator.geolocation) {
// navigator.geolocation.getCurrentPosition(
// function (position) {
// whereAmI(position.coords.latitude, position.coords.longitude);
// },
// function () {
// whereAmI(-33.933, 18.474);
// }
// );
// }
// });
// console.log('Test start');
// setTimeout(() => console.log('0 sec timer'), 0);
// Promise.resolve('Resolved promise 1').then(res => console.log(res));
// Promise.resolve('Resolved promise 2').then(res => {
// for (let i = 0; i < 1000000000; i++) {}
// console.log(res);
// });
// console.log('Test end');
// Building promises
// const lotteryPromise = new Promise(function (resolve, reject) {
// console.log('Lottery draw is happening');
// setTimeout(function () {
// if (Math.random() >= 0.5) {
// resolve('You WIN');
// } else {
// reject(new Error('You lost your money'));
// }
// }, 2000);
// });
// lotteryPromise.then(res => console.log(res)).catch(err => console.error(err));
// Promisifying setTimeout
// const wait = function (seconds) {
// return new Promise(function (resolve) {
// setTimeout(resolve, seconds * 1000);
// });
// };
// const wait = seconds =>
// new Promise(resolve => setTimeout(resolve, seconds * 1000));
// Instead of:
// setTimeout(() => {
// console.log('1 second passed');
// setTimeout(() => {
// console.log('2 second passed');
// setTimeout(() => {
// console.log('3 second passed');
// setTimeout(() => {
// console.log('4 second passed');
// }, 1000);
// }, 1000);
// }, 1000);
// }, 1000);
// We get:
// wait(1)
// .then(() => {
// console.log('1 second passed');
// return wait(1);
// })
// .then(() => {
// console.log('2 second passed');
// return wait(1);
// })
// .then(() => {
// console.log('3 second passed');
// return wait(1);
// })
// .then(() => {
// console.log('4 second passed');
// });
// Promise.resolve('abc').then(x => console.log(x));
// Promise.reject(new Error('Problem!')).catch(x => console.error(x));
// const getPosition = function () {
// return new Promise(function (resolve, reject) {
// // navigator.geolocation.getCurrentPosition(
// // position => resolve(position),
// // err => reject(err)
// navigator.geolocation.getCurrentPosition(resolve, reject);
// });
// };
// getPosition().then(pos => console.log(pos));
// const whereAmI = function () {
// getPosition()
// .then(pos => {
// const { latitude: lat, longitude: lng } = pos.coords;
// return fetch(
// `https://api.bigdatacloud.net/data/reverse-geocode-client?latitude=${lat}&longitude=${lng}`
// );
// })
// .then(function (response) {
// if (!response.ok) {
// throw new Error('Something went wrong');
// }
// return response.json();
// })
// .then(function (data) {
// // console.log(data);
// console.log(`You are in ${data.city}, ${data.countryName}`);
// getCountryData(data.countryName);
// })
// .catch(err => console.log(err));
// };
// btn.addEventListener('click', whereAmI);
///////////////////////////////////////
// Coding Challenge #2
/*
Build the image loading functionality that I just showed you on the screen.
Tasks are not super-descriptive this time, so that you can figure out some stuff on your own. Pretend you're working on your own 😉
PART 1
1. Create a function 'createImage' which receives imgPath as an input. This function returns a promise which creates a new image (use document.createElement('img')) and sets the .src attribute to the provided image path. When the image is done loading, append it to the DOM element with the 'images' class, and resolve the promise. The fulfilled value should be the image element itself. In case there is an error loading the image ('error' event), reject the promise.
If this part is too tricky for you, just watch the first part of the solution.
PART 2
2. Comsume the promise using .then and also add an error handler;
3. After the image has loaded, pause execution for 2 seconds using the wait function we created earlier;
4. After the 2 seconds have passed, hide the current image (set display to 'none'), and load a second image (HINT: Use the image element returned by the createImage promise to hide the current image. You will need a global variable for that 😉);
5. After the second image has loaded, pause execution for 2 seconds again;
6. After the 2 seconds have passed, hide the current image.
TEST DATA: Images in the img folder. Test the error handler by passing a wrong image path. Set the network speed to 'Fast 3G' in the dev tools Network tab, otherwise images load too fast.
GOOD LUCK 😀
*/
// const imageSection = document.querySelector('.images');
// let currentImage;
// const createImage = function (imgPath) {
// return new Promise(function (resolve, reject) {
// const image = document.createElement('img');
// image.src = imgPath;
// image.addEventListener('load', function () {
// console.log('Image loaded');
// imageSection.append(image);
// resolve(image);
// });
// image.addEventListener('error', function () {
// reject(new Error('Image not found'));
// });
// });
// };
// createImage('img/img-1.jpg')
// .then(img => {
// currentImage = img;
// return wait(2);
// })
// .then(() => {
// currentImage.style.display = 'none';
// return createImage('img/img-2.jpg');
// })
// .then(img => {
// currentImage = img;
// return wait(2);
// })
// .then(() => {
// currentImage.style.display = 'none';
// })
// .catch(error => {
// console.log(error);
// });
///////////////////////////////////////////////////////
const getPosition = function () {
return new Promise(function (resolve, reject) {
navigator.geolocation.getCurrentPosition(resolve, reject);
});
};
// fetch(`https://restcountries.com/v2/name/${country}`).then(res =>
// console.log(res)
// );
const whereAmI = async function (country) {
try {
// Geolocation
const pos = await getPosition();
const { latitude: lat, longitude: lng } = pos.coords;
// Reverse geocoding
const resGeo = await fetch(
`https://api.bigdatacloud.net/data/reverse-geocode-client?latitude=${lat}&longitude=${lng}`
);
if (!resGeo.ok) throw new Error('Problem getting location data');
const dataGeo = await resGeo.json();
// Country data
const res = await fetch(
`https://restcountries.com/v2/name/${dataGeo.countryName}`
);
if (!res.ok) throw new Error('Problem getting country');
const data = await res.json();
renderCountry(data[0]);
return `You are in ${dataGeo.city}, ${dataGeo.countryName}`;
} catch (err) {
console.log(err);
renderError(err.message);
// Reject promise returned from async function
throw err;
} finally {
countriesContainer.style.opacity = 1;
}
};
console.log('1: Will get location');
whereAmI()
.then(city => console.log(`2: ${city}`))
.catch(err => console.error(`2: ${err.message}`))
.finally(() => console.log('3: Finished getting location'));
// console.log('3: Finished getting location');
(async function () {
try {
const city = await whereAmI();
console.log(`2: ${city}`);
} catch (err) {
console.error(`2: ${err.message}`);
} finally {
console.log('3: Finished getting location');
}
})();