-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
84 lines (74 loc) · 2.32 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
const imageContainer = document.getElementById('image-container');
const loader = document.getElementById('loader');
let ready = false;
let imagesLoaded = 0;
let totalImages = 0;
let photosArray = [];
// Unsplash API
let count = 5;
const apiKey = 'J9rs2HZMPm9f-iwc4NRmCK1XtF0PW3r1FGFysjX3xi4';
let apiUrl = `https://api.unsplash.com/photos/random/?client_id=${apiKey}&count=${count}`;
// helper function to set attributes and DOM elelemnts
function setAttributes(element, attributes) {
for (const key in attributes) {
element.setAttribute(key, attributes[key]);
}
}
// check if all images were loaded
function imageLoaded() {
imagesLoaded++;
console.log(imagesLoaded);
if(imagesLoaded === totalImages) {
ready = true;
loader.hidden = true;
// console.log('ready =', ready);
}
}
// create elelemtns for links, photos & add to DOM
function displayPhotos() {
imagesLoaded = 0;
totalImages = photosArray.length;
// console.log('total images', totalImages);
photosArray.forEach((photo) => {
// create anchor element to link to unsplash
const item = document.createElement('a');
setAttributes(item,{
href: photo.links.html,
target: '_blank',
});
// create image element 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);
// add image to anchor & anchor to image container
item.appendChild(img);
imageContainer.appendChild(item);
});
}
// get photos from api
async function getPhotos(){
try {
const response = await fetch(apiUrl);
photosArray = await response.json();
displayPhotos();
// if(initialCount === true){
// initialCount*= 30;
// }
} catch (error) {
// error catcher
}
}
// Check if scrolling near page end, Load more photos
window.addEventListener('scroll', ()=>{
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - 1000 && ready) {
ready = false;
getPhotos();
}
});
// ON LOAD
getPhotos();