- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
Latest commit
93 lines (78 loc) · 2.72 KB
/
Copy pathscript.js
File metadata and controls
93 lines (78 loc) · 2.72 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
constimageContainer=document.getElementById('image-container');
constloader=document.getElementById("loader");
letready=false;
letimagesLoaded=0;
lettotalImages=0;
letisInitialPhotosLoad=true;
letphotosArray=[];
// helper Function to Set Attributes on DOM Elements
functionsetAttributes(element,attributes){
for(constkeyinattributes){
element.setAttribute(key,attributes[key]);
}
}
// Unsplash API URL
letinitialPhotoCount=5;
letunsplashApiUrl=`https://api.unsplash.com/photos/random/?client_id=${apiKey}&count=${initialPhotoCount}`;
functionupdateApiUrlWithNewCount(pictureCount){
unsplashApiUrl=`https://api.unsplash.com/photos/random/?client_id=${apiKey}&count=${pictureCount}`
}
//Check if all images were loaded
functionimageLoaded(){
imagesLoaded++;
if(imagesLoaded===totalImages){
ready=true;
loader.hidden=true;
}
}
// Create Elements for links and Photos, Add to DOM
functiondisplayPhotos(){
imagesLoaded=0;
totalImages=photosArray.length;
console.log('total images:',totalImages)
loader.hidden=true;
photosArray.forEach((photo)=>{
constitem=document.createElement('a');
// item.setAttribute('href', photo.links.html);
// item.setAttribute('target', '_blank');
setAttributes(item,{
href: photo.links.html,
target: '_blank'
})
constimg=document.createElement('img');
// img.setAttribute('src', photo.urls.regular);
// img.setAttribute('alt', photo.alt_description);
// img.setAttribute('title', photo.alt_description);
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 put both inside imageContainer Element
item.appendChild(img);
imageContainer.appendChild(item);
})
}
asyncfunctiongetUnsplashApiPhotos(){
try{
constresponse=awaitfetch(unsplashApiUrl);
photosArray=awaitresponse.json();
displayPhotos();
if(isInitialPhotosLoad){
updateApiUrlWithNewCount(30);
isInitialPhotosLoad=false;
}
}catch(error){
console.log("Whoops! something went wrong",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;
getUnsplashApiPhotos();
}
})
getUnsplashApiPhotos();