-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
88 lines (79 loc) · 2.48 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
const imageContainer = document.getElementById('image-container');
const loader = document.getElementById('loader');
let ready = false;
let imagesLoaded = 0;
let totalImages = 0;
let photosArray = [];
let isInitialLoad = true;
// Unsplash API
let initialCount = 5;
const apiKey = '-9x0mNtV4XsNuWksfcq3IH7lBfwD2jOQQXVRgQ9bGuE';
let apiUrl = `https://api.unsplash.com/photos/random/?client_id=${apiKey}&count=${initialCount}`;
//Update Api URL With new Count
const updateUrl = (picCount) => {
apiUrl = `https://api.unsplash.com/photos/random?client_id=${apiKey}&count=${picCount}`;
};
// Check if all images were loaded
const imageLoaded = () => {
imagesLoaded++;
if (imagesLoaded === totalImages) {
ready = true;
loader.hidden = true;
}
};
//Helper Function to Set Attributes on DOM Eelements
const setAttributes = (element, attributes) => {
for (const key in attributes) {
element.setAttribute(key, attributes[key]);
}
};
// Create Elements for Links & Photos ,add to DOM
const displayPhotos = () => {
imagesLoaded = 0;
totalImages = photosArray.length;
//Run function for each object in photoArray
photosArray.forEach((photo) => {
// Create <a> to link to full photo
const aElement = document.createElement('a');
setAttributes(aElement, { href: photo.links.html, target: '_blank' });
//Create <img> for photo
const img = document.createElement('img');
setAttributes(img, {
src: photo.urls.regular,
alt: photo.alt_description,
title: photo.alt_description,
});
//Event Listener, Check when each is finished loading
img.addEventListener('load', imageLoaded);
//Put <img> inside <a>, then both inside imageContainer Element
aElement.appendChild(img);
imageContainer.appendChild(aElement);
});
};
// Get photos from Unsplash API
const getPhotos = async () => {
try {
const response = await fetch(apiUrl);
photosArray = await response.json();
displayPhotos();
if (isInitialLoad) {
updateUrl(30);
isInitialLoad = false;
}
} catch (error) {
//Catch Error Here
console.log(`Sorry,Unsplash API isn't responding`, error);
}
};
//Check to see if scrolling near bottom of page, Load More Photos
window.addEventListener('scroll', () => {
if (
window.innerHeight + window.scrollY >= document.body.offsetHeight - 1000 &&
ready
) {
ready = false;
getPhotos();
}
});
//On Load
getPhotos();