-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
101 lines (76 loc) · 2.54 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
const imageContainer = document.getElementById('image-container');
const loader = document.getElementById('loader')
let photosArray= []
let ready = false
let imagesLoaded=0;
let totalImages=0;
// Unspash API
let imgcount = 10;
const apikey= 'nJtz3GuLgiR9qTNRI9kVMej_A_6SWoDtPEl1KSCG7jk';
const API_URL = `https://api.unsplash.com/photos/random/?client_id=${apikey}&count=${imgcount}`;
//Check if all images were loaded
function imageLoaded() {
console.log('Image loaded')
imagesLoaded++;
if (imagesLoaded === totalImages) {
ready = true;
loader.hidden = true;
}
}
//Helper Function to Set Attributes on Dom Elements
function setAttributes(element,attributes){
for (const key in attributes) {
element.setAttribute(key,attributes[key]);
}
}
//Create Elements for links and photos
function displayPhotos() {
imagesLoaded = 0
totalImages = photosArray.length;
// Run function foreach method
photosArray.forEach((photo)=>{
//Create anchor element to link to Unsplash
const item = document.createElement('a');
setAttributes(item, {
href: photo.links.html,
target: '_blank',
});
// item.setAttribute('href',photo.links.html);
// item.setAttribute('target', '_blank');
//create image element
const img = document.createElement('img');
setAttributes(img, {
src: photo.urls.regular,
alt: photo.alt_description,
title: photo.alt_description,
});
// img.setAttribute('src', photo.urls.regular)
// img.setAttribute('alt',photo.alt_description)
// img.setAttribute('title',photo.alt_description)
//Event Listener, check when each is finished loading
img.addEventListener('load',imageLoaded)
//Put image inside anchor element and put inside image container
item.appendChild(img)
imageContainer.appendChild(item)
});
}
//Get photos from Unsplash API
async function getPhotos(){
try {
const response = await fetch(API_URL);
photosArray = await response.json();
console.log(photosArray);
displayPhotos();
} catch (error) {
//Catch error here
}
}
//Check to see if scrolling near bottomg og page, load more Photos
window.addEventListener('scroll', () => {
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - 1000 && ready) {
ready = false;
getPhotos();
}
})
//On Load
getPhotos();