feat: add packs index generation

This commit is contained in:
Kentai Radiquum 2025-01-01 19:08:02 +05:00
parent 38dfc7f260
commit ad42883956
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 165 additions and 3 deletions

View file

@ -2,9 +2,11 @@ const config = require("./config");
const fs = require("fs"); const fs = require("fs");
const _CreatePackPage = require("./templates/pack"); const _CreatePackPage = require("./templates/pack");
const _CreatePacksIndex = require("./templates/index");
function GenerateStaticSite() { function GenerateStaticSite() {
let PackIndex = null let PackIndex = null
let Packs = [];
try { try {
PackIndex = JSON.parse(fs.readFileSync(config.stickerPacksDir + "/index.json")); PackIndex = JSON.parse(fs.readFileSync(config.stickerPacksDir + "/index.json"));
@ -19,8 +21,19 @@ function GenerateStaticSite() {
const packFile = JSON.parse(fs.readFileSync(config.stickerPacksDir + "/" + pack)); const packFile = JSON.parse(fs.readFileSync(config.stickerPacksDir + "/" + pack));
if (!fs.existsSync(config.outDir + "/" + packFile.id)) fs.mkdirSync(config.outDir + "/" + packFile.id); if (!fs.existsSync(config.outDir + "/" + packFile.id)) fs.mkdirSync(config.outDir + "/" + packFile.id);
fs.writeFileSync(config.outDir + "/" + packFile.id + "/index.html", _CreatePackPage(PackIndex, packFile)); fs.writeFileSync(config.outDir + "/" + packFile.id + "/index.html", _CreatePackPage(PackIndex, packFile));
Packs.push({
id: packFile.id,
name: packFile.title,
image: packFile.stickers[0].id,
author: (packFile.hasOwnProperty("author") && packFile.author) ? packFile.author.name : null,
rating: packFile.hasOwnProperty("rating") ? packFile.rating : null,
stickers: packFile.stickers.length
})
console.log("preview for " + packFile.id + " created"); console.log("preview for " + packFile.id + " created");
}) })
fs.writeFileSync(config.outDir + "/index.html", _CreatePacksIndex(PackIndex, Packs));
console.log("Generation complete");
} }
GenerateStaticSite(); GenerateStaticSite();

97
src/templates/index.js Normal file
View file

@ -0,0 +1,97 @@
const { CreateImageURL } = require("../utils");
function _PackLink(index, pack) {
let packRating = "";
if (pack.rating) {
if (pack.rating.toLowerCase() === "safe") {
packRating = `<span class="text-green-400">S</span>`;
} else if (pack.rating.toLowerCase() === "questionable") {
packRating = `<span class="text-yellow-500">Q</span>`;
} else if (pack.rating.toLowerCase() === "explicit") {
packRating = `<span class="text-red-500">E</span>`;
}
}
return `
<a class="bg-stone-800 text-zinc-100 p-4 rounded-lg w-full flex flex-row gap-2" href="./${pack.id}/">
<div class="w-24 h-24 flex justify-center items-center">
<div role="status" data-spinner-id="${pack.image}">
<svg
aria-hidden="true"
class="inline w-16 h-16 text-gray-200 animate-spin dark:text-gray-600 fill-green-500"
viewBox="0 0 100 101"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
fill="currentColor"
/>
<path
d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
fill="currentFill"
/>
</svg>
<span class="sr-only">Loading...</span>
</div>
<img
src="${CreateImageURL(index, pack.image)}"
alt=""
class="object-contain w-24 h-24 hidden"
data-image-id="${pack.image}"
/>
</div>
<div class="flex flex-col gap-1 justify-center">
<p class="text-bold text-2xl">${pack.name}</p>
${pack.author ? `<p class="text-xl">${pack.author}</p>` : ""}
<p class="text-xl">${pack.stickers} stickers ${pack.rating ? "| " + packRating : ""}</p>
</div>
</a>
`
}
function _CreatePacksIndex(index, packs) {
let packLinks = [];
packs.forEach((packLink) => packLinks.push(_PackLink(index, packLink)));
return `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TG -> Matrix Stickers Index</title>
<link rel="icon" type="image/png" href="./static/images/sticker.png" />
<meta property="og:title" content="TG -> Matrix Stickers Index" />
<meta property="og:description" content="available ${packs.length} sticker packs" />
<meta property="og:type" content="website" />
<meta property="og:image" content="./static/images/sticker.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="96" />
<meta property="og:image:height" content="96" />
<meta property="og:image:alt" content="sticker" />
<link href="./static/tailwind.css" rel="stylesheet">
</head>
<body class="overflow-x-hidden">
<div class="fixed inset-0 min-h-screen -z-10 tiledBackground"></div>
<div class="fixed inset-0 min-h-screen -z-20 bg-gradient-to-b from-gray-900 to-black"></div>
<div class="container flex flex-col items-center justify-center min-h-screen gap-4 p-4 mx-auto">
<div class="gap-2 [grid-template-columns:100%] md:[grid-template-columns:repeat(auto-fill,minmax(380px,500px))] justify-center items-center grid w-full">
${packLinks.join("\n")}
</div>
</div>
<script src="../static/RenderImages.js"></script>
</body>
`
}
module.exports = _CreatePacksIndex

View file

@ -1,14 +1,15 @@
const Head = require("./components/head"); const PackHead = require("./components/packHead");
const PackCard = require("./components/packCard"); const PackCard = require("./components/packCard");
const PackLinks = require("./components/PackLinks"); const PackLinks = require("./components/PackLinks");
const PackPreview = require("./components/packPreview"); const PackPreview = require("./components/packPreview");
function _CreatePackPage(index, pack) { function _CreatePackPage(index, pack) {
return ` return `
<html> <!DOCTYPE html>
<html lang="en">
<head> <head>
${Head(index, pack)} ${PackHead(index, pack)}
</head> </head>
<body class="overflow-x-hidden"> <body class="overflow-x-hidden">

View file

@ -689,6 +689,10 @@ video {
width: 100%; width: 100%;
} }
.flex-grow {
flex-grow: 1;
}
.-translate-x-1\/2 { .-translate-x-1\/2 {
--tw-translate-x: -50%; --tw-translate-x: -50%;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
@ -704,10 +708,18 @@ video {
animation: spin 1s linear infinite; animation: spin 1s linear infinite;
} }
.flex-row {
flex-direction: row;
}
.flex-col { .flex-col {
flex-direction: column; flex-direction: column;
} }
.flex-wrap {
flex-wrap: wrap;
}
.items-center { .items-center {
align-items: center; align-items: center;
} }
@ -724,6 +736,10 @@ video {
gap: 1rem; gap: 1rem;
} }
.gap-1 {
gap: 0.25rem;
}
.overflow-x-hidden { .overflow-x-hidden {
overflow-x: hidden; overflow-x: hidden;
} }
@ -732,6 +748,19 @@ video {
border-radius: 0.5rem; border-radius: 0.5rem;
} }
.border-2 {
border-width: 2px;
}
.border-solid {
border-style: solid;
}
.border-black {
--tw-border-opacity: 1;
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.bg-\[\#259d7b\] { .bg-\[\#259d7b\] {
--tw-bg-opacity: 1; --tw-bg-opacity: 1;
background-color: rgb(37 157 123 / var(--tw-bg-opacity, 1)); background-color: rgb(37 157 123 / var(--tw-bg-opacity, 1));
@ -834,6 +863,11 @@ video {
line-height: 2.5rem; line-height: 2.5rem;
} }
.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
.text-gray-200 { .text-gray-200 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(229 231 235 / var(--tw-text-opacity, 1)); color: rgb(229 231 235 / var(--tw-text-opacity, 1));
@ -869,6 +903,11 @@ video {
color: rgb(244 244 245 / var(--tw-text-opacity, 1)); color: rgb(244 244 245 / var(--tw-text-opacity, 1));
} }
.text-slate-200 {
--tw-text-opacity: 1;
color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}
.underline { .underline {
text-decoration-line: underline; text-decoration-line: underline;
} }
@ -889,6 +928,10 @@ video {
transition-duration: 150ms; transition-duration: 150ms;
} }
.\[grid-template-columns\:100\%\] {
grid-template-columns: 100%;
}
.\[grid-template-columns\:repeat\(auto-fill\2c 96px\)\] { .\[grid-template-columns\:repeat\(auto-fill\2c 96px\)\] {
grid-template-columns: repeat(auto-fill,96px); grid-template-columns: repeat(auto-fill,96px);
} }
@ -933,6 +976,14 @@ video {
.md\:whitespace-pre { .md\:whitespace-pre {
white-space: pre; white-space: pre;
} }
.md\:\[grid-template-columns\:repeat\(auto-fill\2c 384px\)\] {
grid-template-columns: repeat(auto-fill,384px);
}
.md\:\[grid-template-columns\:repeat\(auto-fill\2c minmax\(380px\2c 500px\)\)\] {
grid-template-columns: repeat(auto-fill,minmax(380px,500px));
}
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {