-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
97 lines (71 loc) · 2.17 KB
/
script.js
File metadata and controls
97 lines (71 loc) · 2.17 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
92
93
94
95
96
97
/* API of Unsplash */
const imageContainer = document.getElementById('image-container');
const loader = document.getElementById('loader');
let ready = false;
let imagesLoaded = 0;
let totalImages = 0;
let photosArray = [];
let count = 5;
const ApiKey = 'cH4DzUBcs0QGWZoNsU-Vzjipxf1XdCUkNyZ4hZNmEnw';
let ApiUrl = `https://api.unsplash.com/photos/random/?client_id=${ApiKey}&count=${count}`;
//Check if all images are loaded:
function imageLoaded() {
imagesLoaded++;
if (imagesLoaded === totalImages) {
ready = true;
loader.hidden = true;
count = 30;
ApiUrl = `https://api.unsplash.com/photos/random/?client_id=${ApiKey}&count=${count}`;
}
}
//Helper elements
function setAttributes(element, attributes) {
for (const key in attributes) {
element.setAttribute(key,attributes[key]);
}
}
//Create for Links, photos, and details in the DOM
function displayPhotos () {
imagesLoaded = 0;
totalImages = photosArray.length;
//Run function to get the photos
photosArray.forEach((photo) => {
const item = document.createElement('a');
//Create image for photo
const img = document.createElement('img');
setAttributes(item, {
href: photo.links.html,
target: '_blank'
});
setAttributes(img, {
src: photo.urls.regular,
alt: photo.alt_description,
title: photo.alt_description
});
//When app is finished loading
img.addEventListener('load', imageLoaded);
//Put image inside <a>
item.appendChild(img);
imageContainer.appendChild(item);
});
}
/* Get Photos Using Unsplash API */
async function getPhotos () {
try {
const response = await fetch(ApiUrl);
photosArray = await response.json();
displayPhotos();
} catch (error) {
//Catch Error
}
}
//Event listener to check how often it is clicked
window.addEventListener('scroll', () => {
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - 1000
&&ready) {
ready = false;
getPhotos();
}
});
//On Load
getPhotos();