-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
91 lines (74 loc) · 2.43 KB
/
script.js
File metadata and controls
91 lines (74 loc) · 2.43 KB
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
const imageContainer = document.getElementById('image-container');
const loader = document.getElementById('loader');
let ready=false;
let imagesLoad=0;
let totalImages=0;
let photoArray = [];
//Unsplash API
let count = 5;
const apiKey = 'VD_Ay475iB0wxmmvGkyO3XcY3FHsa6ZXWX6YrErKims';
let apiUrl = `https://api.unsplash.com/photos/random/?client_id=${apiKey}&count=${count}`;
//Check if all image were loaded
function imageLoad() {
console.log('image loaded');
imagesLoad++;
if(imagesLoad === totalImages){
ready=true;
loader.hidden=true;
count=30;
console.log('ready=',ready);
apiUrl = `https://api.unsplash.com/photos/random/?client_id=${apiKey}&count=${count}`;
}
}
/* Help Function to Set Attributes on DOM Element */
function setAttributes(element, attributes) {
for (const key in attributes) {
element.setAttribute(key, attributes[key])
}
}
// Create elements for Link & Photos, Add to DOM
function displayPhotos() {
imagesLoad=0;
totalImages=photoArray.length;
console.log('total images', totalImages);
// Run function for each object in photoArray
photoArray.forEach((photo) => {
// Create <a> to link Unsplash
const item = document.createElement('a');
setAttributes(item, {
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',imageLoad);
//Put <img> inside <a>, then put both inside imageContainer Element
item.appendChild(img);
imageContainer.appendChild(item);
});
}
//Get photos from Unsplash API
async function getPhotosFromAPI() {
try {
const response = await fetch(apiUrl);
photoArray = await response.json();
displayPhotos();
console.log(photoArray);
} catch (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;
getPhotosFromAPI();
console.log('load more');
}
});
getPhotosFromAPI();