mirror of
https://github.com/Gabi-Zar/Images-Scrapper-JS.git
synced 2026-04-17 05:36:06 +02:00
154 lines
4.6 KiB
JavaScript
154 lines
4.6 KiB
JavaScript
const starsNumber = 1000;
|
|
const view = document.getElementById("view");
|
|
const homeTemplate = document.getElementById("home-template");
|
|
const settingsTemplate = document.getElementById("settings-template");
|
|
let imagesUrls = [];
|
|
let uuid;
|
|
|
|
navigate("home");
|
|
|
|
starsCanvas(starsNumber);
|
|
window.addEventListener("resize", () => {
|
|
starsCanvas(starsNumber);
|
|
});
|
|
|
|
function starsCanvas(number) {
|
|
const canvas = document.getElementById("stars-canvas");
|
|
const ctx = canvas.getContext("2d");
|
|
canvas.style.filter = "blur(2px)";
|
|
|
|
let width = (canvas.width = window.innerWidth);
|
|
let height = (canvas.height = window.innerHeight);
|
|
|
|
const centerX = width / 2;
|
|
const centerY = height / 2;
|
|
|
|
const stars = [];
|
|
|
|
for (let i = 0; i < number; i++) {
|
|
stars.push(makeStar(10000));
|
|
}
|
|
|
|
function animate() {
|
|
ctx.clearRect(0, 0, width, height);
|
|
|
|
for (let i = 0; i < number; i++) {
|
|
ctx.beginPath();
|
|
ctx.moveTo(stars[i].position.x, stars[i].position.y);
|
|
ctx.arc(stars[i].position.x, stars[i].position.y, stars[i].radius, 0, Math.PI * 2, true);
|
|
ctx.fillStyle = `rgb(${stars[i].color}, ${stars[i].color}, ${stars[i].color})`;
|
|
ctx.fill();
|
|
|
|
const velocity = Math.sqrt(stars[i].dx ** 2 + stars[i].dy ** 2);
|
|
|
|
stars[i].radius *= 1 + 0.002 * velocity;
|
|
stars[i].position.x += stars[i].dx;
|
|
stars[i].position.y += stars[i].dy;
|
|
stars[i].dx *= 1 + 0.002 * velocity;
|
|
stars[i].dy *= 1 + 0.002 * velocity;
|
|
|
|
if (stars[i].color <= 245) {
|
|
Math.round((stars[i].color += 0.3 * velocity));
|
|
}
|
|
|
|
if (stars[i].position.x < 0 || stars[i].position.x > width || stars[i].position.y < 0 || stars[i].position.y > height) {
|
|
stars[i] = makeStar();
|
|
}
|
|
}
|
|
|
|
requestAnimationFrame(animate);
|
|
}
|
|
|
|
function makeStar(initialTime = 0) {
|
|
const angle = Math.random() * 2 * Math.PI;
|
|
const speed = Math.random() * 0.2 + 0.05;
|
|
initialTime = Math.random() * initialTime;
|
|
const dx = Math.cos(angle) * speed;
|
|
const dy = Math.sin(angle) * speed;
|
|
|
|
const star = {
|
|
position: { x: centerX + dx * initialTime, y: centerY + dy * initialTime },
|
|
radius: Math.random() * 0.5 + 0.0001 * initialTime,
|
|
dx: dx,
|
|
dy: dy,
|
|
color: 100 + 0.01 * initialTime,
|
|
};
|
|
|
|
return star;
|
|
}
|
|
|
|
animate();
|
|
}
|
|
|
|
function navigate(page) {
|
|
view.replaceChildren();
|
|
switch (page) {
|
|
case "home":
|
|
view.appendChild(homeTemplate.content.cloneNode(true));
|
|
const searchForm = document.getElementById("search-form");
|
|
|
|
searchForm.addEventListener("submit", function (event) {
|
|
event.preventDefault();
|
|
});
|
|
break;
|
|
case "settings":
|
|
view.appendChild(settingsTemplate.content.cloneNode(true));
|
|
break;
|
|
}
|
|
}
|
|
|
|
async function getImagesURL(query, offset, count, smart) {
|
|
const url = `/api/getImagesURL?q=${encodeURIComponent(query)}&offset=${offset}&count=${count}&smart=${smart}`;
|
|
const response = await fetch(url);
|
|
if (!response.ok) {
|
|
console.error(await response.text());
|
|
return;
|
|
}
|
|
const data = await response.json();
|
|
uuid = data.uuid;
|
|
|
|
return data.urls;
|
|
}
|
|
|
|
async function downloadImages(uuid) {
|
|
const url = `/api/downloadImages?uuid=${encodeURIComponent(uuid)}`;
|
|
const response = await fetch(url);
|
|
if (!response.ok) {
|
|
console.error(await response.text());
|
|
return;
|
|
}
|
|
|
|
const blob = await response.blob();
|
|
const blobUrl = window.URL.createObjectURL(blob);
|
|
const a = document.createElement("a");
|
|
a.href = blobUrl;
|
|
a.download = `${uuid}.zip`;
|
|
document.body.appendChild(a);
|
|
a.click();
|
|
a.remove();
|
|
window.URL.revokeObjectURL(blobUrl);
|
|
}
|
|
|
|
async function search() {
|
|
const imageTemplate = document.getElementById("image-template");
|
|
const imagesDiv = document.getElementById("images-div");
|
|
const loaderDiv = document.getElementById("loader-div");
|
|
const searchInput = document.getElementById("search-input");
|
|
|
|
imagesDiv.replaceChildren();
|
|
loaderDiv.classList.toggle("show");
|
|
const urls = await getImagesURL(searchInput.value, 1, 1000, false);
|
|
|
|
loaderDiv.classList.toggle("show");
|
|
for (const url of urls) {
|
|
imagesUrls.push(url);
|
|
const imageTemplateCopy = imageTemplate.content.cloneNode(true);
|
|
imageTemplateCopy.getElementById("image").src = url;
|
|
imagesDiv.appendChild(imageTemplateCopy);
|
|
}
|
|
}
|
|
|
|
async function download() {
|
|
await downloadImages(uuid);
|
|
}
|