-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
84 lines (66 loc) · 1.87 KB
/
test.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
const imageContainer = document.getElementById('image-container');
const loader = document.getElementById('loader');
// Declare API
count = 30;
const apiKEY = 'lggWbghl8imfrNmluJbFMaOsb88EE3pitxkHtL57EBU';
const apiURL = `https://api.unsplash.com/photos/random?client_id=${apiKEY}&count=${count}`;
// Call API
let totalImages = 0;
let ready = false;
let photosArray = [];
async function getPhotos() {
try {
const response = await fetch(apiURL);
photosArray = await response.json();
// Display Photos
displayPhotos();
} catch (error) {
// Catch Error
console.log(error);
}
}
// Display Photos
function displayPhotos() {
imagesLoaded = 0;
totalImages = photosArray.length;
photosArray.forEach((photo) => {
// Create tag <a> when scroll
const item = document.createElement('a');
setAttributes(item, {
href: photo.links.html,
target: '_blank',
})
const img = document.createElement('img');
setAttributes(img, {
src: photo.urls.regular,
alt: photo.alt_description,
title: photo.alt_description,
});
// Add tag <img> to <a> and <a> to DOM
img.addEventListener('load', imageLoaded);
item.appendChild(img);
imageContainer.appendChild(item);
})
}
// Set Attribute
function setAttributes(element, attribute) {
for (const key in attribute) {
element.setAttribute(key, attribute[key]);
}
}
// Image Loaded
function imageLoaded() {
imagesLoaded++;
if (imagesLoaded === totalImages) {
ready = true;
loader.hidden = false;
}
}
// Scroll Infinite
window.addEventListener('scroll', () => {
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - 1000 && ready) {
ready = false;
getPhotos();
}
})
getPhotos();