-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
104 lines (93 loc) · 2.53 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
102
103
104
const imgContainer = document.getElementById("image-container");
const loader = document.getElementById("loader");
const topBtn = document.getElementById("topBtn");
let ready = false;
let imagesLoaded = 0;
let totalImages = 0;
let photosArray = [];
let isInitialLoad = true;
let checkResponse = "";
// Unsplash API
let photoCount = 5;
const apiKey = "csCS8dKME4Et4puIzmQPaqkxrKoK_l86lBWW1oA_7Zk";
let apiUrl = `https://api.unsplash.com/photos/random/?client_id=${apiKey}&count=${photoCount}`;
function updateApiUrl(newCount) {
apiUrl = `https://api.unsplash.com/photos/random/?client_id=${apiKey}&count=${newCount}`;
}
function imageLoaded() {
imagesLoaded++;
if (imagesLoaded === totalImages) {
ready = true;
loader.hidden = true;
}
}
// Helper function
function setAttributes(element, attributes) {
for (const key in attributes) {
element.setAttribute(key, attributes[key]);
}
}
function displayPhotos() {
totalImages = photosArray.length;
imagesLoaded = 0;
//
photosArray.forEach((photo) => {
// create <a> to link unsplash page
const item = document.createElement("a");
setAttributes(item, {
href: photo.links.html,
target: "_blank",
});
const img = document.createElement("img");
setAttributes(img, {
src: photo.urls.regular,
alt: photo.alt_description,
title: photo.alt_description,
});
img.addEventListener("load", imageLoaded);
item.appendChild(img);
imgContainer.appendChild(item);
});
}
// Get photos from unsplash API
async function getPhotos() {
try {
const response = await fetch(apiUrl);
checkResponse = response.status;
photosArray = await response.json();
displayPhotos();
if (isInitialLoad) {
updateApiUrl(30);
isInitialLoad = false;
}
} catch (error) {
let errText = error;
if (checkResponse === 403) {
errText = "Unsplash API hourly requests terminated";
}
swal.fire({
icon: "error",
title: "Oops...Something went wrong!",
text: errText,
});
}
}
// Add a listener on scroll, when reach almost the end page new photos must be acquired
window.addEventListener("scroll", () => {
if (
window.innerHeight + window.scrollY >= document.body.offsetHeight - 1000 &&
ready
) {
ready = false;
getPhotos();
}
if (document.body.scrollTop > 60 || document.documentElement.scrollTop > 60) {
topBtn.style.display = "block";
} else {
topBtn.style.display = "none";
}
});
topBtn.addEventListener("click", () => {
window.scrollTo(0, 0);
});
getPhotos();