-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
54 lines (43 loc) · 1.49 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
const accessKey = "RZEIOVfPhS7vMLkFdd2TSKGFBS4o9_FmcV1Nje3FSjw";
const formEl = document.querySelector("form");
const searchInputEl = document.getElementById("search-input");
const searchResultsEl = document.querySelector(".search-results");
const showMoreButtonEl = document.getElementById("show-more-button");
let inputData = "";
let page = 1;
async function searchImages() {
inputData = searchInputEl.value;
const url = `https://api.unsplash.com/search/photos?page=${page}&query=${inputData}&client_id=${accessKey}`;
const response = await fetch(url);
const data = await response.json();
if (page === 1) {
searchResultsEl.innerHTML = "";
}
const results = data.results;
results.map((result) => {
const imageWrapper = document.createElement("div");
imageWrapper.classList.add("search-result");
const image = document.createElement("img");
image.src = result.urls.small;
image.alt = result.alt_description;
const imageLink = document.createElement("a");
imageLink.href = result.links.html;
imageLink.target = "_blank";
imageLink.textContent = result.alt_description;
imageWrapper.appendChild(image);
imageWrapper.appendChild(imageLink);
searchResultsEl.appendChild(imageWrapper);
});
page++;
if (page > 1) {
showMoreButtonEl.style.display = "block";
}
}
formEl.addEventListener("submit", (event) => {
event.preventDefault();
page = 1;
searchImages();
});
showMoreButtonEl.addEventListener("click", () => {
searchImages();
});