-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
95 lines (83 loc) · 2.61 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
const imageContainer = document.getElementById('image-container')
const loader = document.getElementById('loader')
// Fetch to Unsplash service to get Photos Array
async function fetchPhotosArray(count) {
// Api key not hidden because it's free!
const ACCESS_KEY = 'xRF2L0bh5b3lJxL8LNav1jEpXWBaSxmB5fGhs9IMe2I'
const collectionLandscape = '827743'
const apiUrl = `https://api.unsplash.com/photos/random/?client_id=${ACCESS_KEY}&count=${count}&collections=${collectionLandscape}`
const response = await fetch(apiUrl)
return await response.json()
}
// Helper function to set Attributes on DOM Elements
function setAttributes(element, attributes) {
for (const key in attributes) {
element.setAttribute(key, attributes[key])
}
}
let imagesLoaded = 0
let totalImages = 0
function onImageLoaded() {
imagesLoaded++;
if (imagesLoaded === totalImages) {
onFinishedImagesLoad()
}
}
// Create Elements for Links & Photos, Add to DOM
function displayPhotos(photosArray) {
imagesLoaded = 0
totalImages = photosArray.length
// Run function for each photo in photosArray
for (const photo of photosArray) {
// Create <a> to link to Unsplash
const link = document.createElement('a')
setAttributes(link, {
href: photo.links.html,
target: '_blank'
})
// Create <img> 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 image is finished loading
img.addEventListener('load', onImageLoaded)
// Put <img> inside <a>, then put both inside imageContainer Element
link.appendChild(img)
imageContainer.appendChild(link)
}
}
let allImagesAreLoaded = false
// initial count is for faster initial page loading
const initialCount = 15
const normalCount = 30
let photosToFetchCount = initialCount
let isInitialLoad = true
function onFinishedImagesLoad() {
allImagesAreLoaded = true
loader.classList.add('hidden')
if (isInitialLoad) {
photosToFetchCount = normalCount
isInitialLoad = false
}
}
async function getPhotos() {
try {
loader.classList.remove('hidden')
const photosArray = await fetchPhotosArray(photosToFetchCount)
displayPhotos(photosArray)
} catch (error) {
console.error(error)
}
}
// Check to see if scrolling near to the bottom of page, then load more photos
window.addEventListener('scroll', () => {
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - 1000
&& allImagesAreLoaded) {
allImagesAreLoaded = false
getPhotos()
}
})
getPhotos()