REFACTOR | BROKEN CHANGES

- Refactor Index Page SSG to EJS template engine
This commit is contained in:
Kentai Radiquum 2025-01-23 13:47:43 +05:00
parent 1a2c6e295a
commit 999ba6acbe
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
13 changed files with 256 additions and 134 deletions

12
.vscode/settings.json vendored
View file

@ -1,12 +0,0 @@
{
"fiveServer.ignore": [
"**/node_modules/**",
".vscode/**",
".git/**",
"**/*.scss",
"**/*.sass",
"**/*.css",
"**/*.ts",
"**/*.js",
]
}

View file

@ -5,7 +5,6 @@ const { log } = require("./utils");
let ejs = require("ejs"); let ejs = require("ejs");
// const _CreatePackPage = require("./templates/pack"); // const _CreatePackPage = require("./templates/pack");
// const _CreatePacksIndex = require("./templates/index");
let PackIndex = null; let PackIndex = null;
let Packs = []; let Packs = [];
@ -79,16 +78,20 @@ const html = ejs.render(
indexTemplate.toString(), indexTemplate.toString(),
{ {
title: "TG -> Matrix Stickers Index", title: "TG -> Matrix Stickers Index",
description: `available ${PackIndex.packs.length} sticker packs`, description: `Available ${PackIndex.packs.length} sticker packs`,
image: { image: {
url: "./static/images/sticker.png", url: "./static/images/sticker.png",
mimetype: "image/png", mimetype: "image/png",
w: "96", w: "96",
h: "96", h: "96",
alt: "" alt: "",
}, },
path: config.OutPath, path: config.OutPath,
isDev isDev,
stickerset: null,
page: "index",
packs: Packs,
homeserverUrl: config.homeserverUrl,
}, },
{ root: path.join(ParPath, "src/templates") } { root: path.join(ParPath, "src/templates") }
); );

View file

@ -1,9 +1,28 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<%- include('/components/Head', {title, description, image, path, isDev}); %> <%- include('/components/Head', {title, description, image, path, isDev}); %>
<body class="overflow-x-hidden"> <body class="overflow-x-hidden text-white">
<%- include("/components/Header", {path}) %> <%- include("/components/Header", {path, stickerset}) %>
<div class="fixed inset-0 min-h-screen -z-10 tiledBackground"></div> <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="fixed inset-0 min-h-screen -z-20 bg-gradient-to-b from-gray-900 to-black"></div>
<div class="container px-8 py-4 mx-auto">
<% if (page == "index") { %>
<div class="grid w-full h-full grid-cols-1 gap-2 lg:grid-cols-2 2xl:grid-cols-3">
<% packs.forEach(function(pack){ %>
<%- include('/components/Link/Stickerset', {path, homeserverUrl, pack}); %>
<% }); %>
</div>
<% }; %>
<div class="flex flex-wrap items-center gap-4 py-4 mx-auto">
<a class="flex items-center gap-2 text-lg" href="https://wah.su/radiquum"> <span>by @radiquum</span> <img class="object-contain w-8 rounded-full aspect-square" src="https://radiquum.wah.su/static/avatar_512.jpg" alt="" /></a>
<div class="flex items-center gap-2">
<p class="text-lg">Find us on:</p>
<a href="https://github.com/wah-su"><img class="object-contain w-8 rounded-full aspect-square" src="<%- path %>/static/images/github-mark-white.png" alt="github" /></a>
<a href="https://wah.su"><img class="object-contain w-8 rounded-full aspect-square" src="<%- path %>/static/images/captive_portal_24dp_E8EAED_FILL0_wght400_GRAD0_opsz24.png" alt="website" /></a>
</div>
</div>
</div>
<script src="<%- path %>/static/RenderImages.js"></script>
</body> </body>
</html> </html>

View file

@ -1,5 +1,12 @@
<header> <header class="sticky top-0 left-0 right-0 bg-[#1d1f3d] rounded-b-lg">
<div class="container"> <div class="container flex items-center justify-between px-8 py-4 mx-auto">
<a href="<%- path %>index.html"><img src="<%- path %>/static/images/logo.svg" alt="index page"/></a> <a href="<%- path %>index.html"><img class="h-6 sm:h-10" src="<%- path %>/static/images/logo.svg" alt="index page"/></a>
<% if (stickerset) { %>
<p>STICKERSET</p>
<% }; %>
<div class="flex items-center justify-center gap-2 text-white sm:gap-4 sm:text-xl">
<a class="hidden hover:underline sm:inline" href="<%- path %>index.html">StickerSets</a>
<a class="hover:underline" href="https://github.com/wah-su/mstickers">GitHub</a>
</div>
</div> </div>
</header> </header>

View file

@ -0,0 +1,29 @@
<% include('/functions') %>
<a href="<%- path %><%- pack.id %>" class="flex items-center w-full h-full gap-2 p-4 rounded-md sm:gap-4 bg-slate-800">
<div class="grid items-center justify-center object-contain w-16 grid-cols-1 grid-rows-1 sm:w-32 aspect-square">
<img src="<%- CreateImageURL(homeserverUrl, pack.image) %>" data-image-id="<%- pack.image %>" class="object-contain w-16 sm:w-32 aspect-square [grid-column:1] [grid-row:1]" loading="lazy" />
<svg
role="status"
data-spinner-id="<%- pack.image %>"
aria-hidden="true"
class="mx-auto [grid-column:1] [grid-row:1] inline w-8 text-gray-200 sm:w-16 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>
</div>
<div>
<p class="text-lg sm:text-2xl line-clamp-1"><%- pack.name %></p>
<p class="text-sm sm:text-lg line-clamp-1"><%- pack.author %></p>
<p class="text-xs sm:text-base"><span class="<%- PackRatingClass(pack.rating) %>"><%- pack.rating %></span> | <%- pack.stickers %> stick </p>
</div>
</a>

View file

@ -0,0 +1,19 @@
<% CreateImageURL=function(homeserverUrl,id) { return `${homeserverUrl}${id.slice(0,2)}/${id.slice(2,4)}/${id.slice(4)}`; } %>
<%
PackRatingClass=function(rating) {
switch (rating.toLowerCase()) {
case "safe":
return "text-green-400"
break
case "questionable":
return "text-yellow-500"
break
case "explicit":
return "text-red-500"
break
default:
return "hidden"
break
}
}
%>

View file

@ -1,75 +0,0 @@
const { CreateImageURL, InjectWSConnection } = 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, isDev) {
let packLinks = [];
packs.forEach((packLink) => packLinks.push(_PackLink(index, packLink)));
return `
<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>
`
}
module.exports = _CreatePacksIndex

View file

@ -1,9 +1,3 @@
function CreateImageURL(index, id) {
return `${index.homeserver_url}${id.slice(0, 2)}/${id.slice(2, 4)}/${id.slice(
4
)}`;
}
function CreatePackDescription(pack) { function CreatePackDescription(pack) {
let description = []; let description = [];
@ -36,14 +30,6 @@ function CreatePackDescription(pack) {
return description.join(" | "); return description.join(" | ");
} }
function InjectWSConnection() {
return `
<!-- The following was injected by watch.js script, because we are in a dev mode -->
<script src="/src/hotreload.js"></script>
<!-- Dev mode: Enabled -->
`;
}
function log(level = "INFO" | "ERROR" | "WARN" | "LOG", message, connected = false) { function log(level = "INFO" | "ERROR" | "WARN" | "LOG", message, connected = false) {
const date = new Date; const date = new Date;
const time = date.toLocaleTimeString() const time = date.toLocaleTimeString()
@ -67,8 +53,6 @@ function log(level = "INFO" | "ERROR" | "WARN" | "LOG", message, connected = fal
} }
module.exports = { module.exports = {
CreateImageURL,
CreatePackDescription,
InjectWSConnection,
log, log,
CreatePackDescription
}; };

View file

@ -1,19 +1,25 @@
const images = document.querySelectorAll("[data-image-id]"); const images = document.querySelectorAll("[data-image-id]");
images.forEach((image, i) => {
images.forEach((image) => { if (i < 4) {
image.setAttribute("loading", "eager")
}
const spinner = document.querySelector(`[data-spinner-id="${image.getAttribute("data-image-id")}"]`) const spinner = document.querySelector(`[data-spinner-id="${image.getAttribute("data-image-id")}"]`)
if (image.height > 0) { if (image.height > 0 && image.complete) {
image.classList.remove("hidden"); image.classList.remove("invisible");
spinner.classList.add("hidden"); spinner.classList.add("invisible");
return return
} else {
image.classList.add("invisible");
spinner.classList.remove("invisible");
} }
image.addEventListener("load", () => { image.addEventListener("load", () => {
console.log("image " + image.getAttribute("data-image-id") + " loaded"); console.log("image " + image.getAttribute("data-image-id") + " loaded");
image.classList.remove("hidden"); image.classList.remove("invisible");
spinner.classList.add("hidden"); spinner.classList.add("invisible");
image.removeEventListener("load", this); image.removeEventListener("load", this);
}); });

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -600,18 +600,38 @@ video {
border-width: 0; border-width: 0;
} }
.invisible {
visibility: hidden;
}
.fixed { .fixed {
position: fixed; position: fixed;
} }
.sticky {
position: sticky;
}
.inset-0 { .inset-0 {
inset: 0px; inset: 0px;
} }
.left-0 {
left: 0px;
}
.left-1\/2 { .left-1\/2 {
left: 50%; left: 50%;
} }
.right-0 {
right: 0px;
}
.top-0 {
top: 0px;
}
.top-8 { .top-8 {
top: 2rem; top: 2rem;
} }
@ -637,6 +657,13 @@ video {
margin-right: auto; margin-right: auto;
} }
.line-clamp-1 {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
.inline { .inline {
display: inline; display: inline;
} }
@ -653,6 +680,10 @@ video {
display: none; display: none;
} }
.aspect-square {
aspect-ratio: 1 / 1;
}
.h-16 { .h-16 {
height: 4rem; height: 4rem;
} }
@ -665,6 +696,14 @@ video {
height: 12rem; height: 12rem;
} }
.h-6 {
height: 1.5rem;
}
.h-full {
height: 100%;
}
.min-h-screen { .min-h-screen {
min-height: 100vh; min-height: 100vh;
} }
@ -685,6 +724,10 @@ video {
width: 12rem; width: 12rem;
} }
.w-8 {
width: 2rem;
}
.w-full { .w-full {
width: 100%; width: 100%;
} }
@ -704,14 +747,22 @@ video {
animation: spin 1s linear infinite; animation: spin 1s linear infinite;
} }
.flex-row { .grid-cols-1 {
flex-direction: row; grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-rows-1 {
grid-template-rows: repeat(1, minmax(0, 1fr));
} }
.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;
} }
@ -720,8 +771,8 @@ video {
justify-content: center; justify-content: center;
} }
.gap-1 { .justify-between {
gap: 0.25rem; justify-content: space-between;
} }
.gap-2 { .gap-2 {
@ -736,10 +787,28 @@ video {
overflow-x: hidden; overflow-x: hidden;
} }
.rounded-full {
border-radius: 9999px;
}
.rounded-lg { .rounded-lg {
border-radius: 0.5rem; border-radius: 0.5rem;
} }
.rounded-md {
border-radius: 0.375rem;
}
.rounded-b-lg {
border-bottom-right-radius: 0.5rem;
border-bottom-left-radius: 0.5rem;
}
.bg-\[\#1d1f3d\] {
--tw-bg-opacity: 1;
background-color: rgb(29 31 61 / var(--tw-bg-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));
@ -770,6 +839,11 @@ video {
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1)); background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
} }
.bg-slate-800 {
--tw-bg-opacity: 1;
background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}
.bg-stone-800 { .bg-stone-800 {
--tw-bg-opacity: 1; --tw-bg-opacity: 1;
background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1)); background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
@ -842,11 +916,21 @@ video {
line-height: 2.5rem; line-height: 2.5rem;
} }
.text-xl { .text-lg {
font-size: 1.25rem; font-size: 1.125rem;
line-height: 1.75rem; line-height: 1.75rem;
} }
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.text-xs {
font-size: 0.75rem;
line-height: 1rem;
}
.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));
@ -902,8 +986,12 @@ video {
transition-duration: 150ms; transition-duration: 150ms;
} }
.\[grid-template-columns\:100\%\] { .\[grid-column\:1\] {
grid-template-columns: 100%; grid-column: 1;
}
.\[grid-row\:1\] {
grid-row: 1;
} }
.\[grid-template-columns\:repeat\(auto-fill\2c 96px\)\] { .\[grid-template-columns\:repeat\(auto-fill\2c 96px\)\] {
@ -926,6 +1014,52 @@ video {
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));
} }
.hover\:underline:hover {
text-decoration-line: underline;
}
@media (min-width: 640px) {
.sm\:inline {
display: inline;
}
.sm\:h-10 {
height: 2.5rem;
}
.sm\:w-16 {
width: 4rem;
}
.sm\:w-32 {
width: 8rem;
}
.sm\:gap-4 {
gap: 1rem;
}
.sm\:text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.sm\:text-base {
font-size: 1rem;
line-height: 1.5rem;
}
.sm\:text-lg {
font-size: 1.125rem;
line-height: 1.75rem;
}
.sm\:text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}
}
@media (min-width: 768px) { @media (min-width: 768px) {
.md\:top-32 { .md\:top-32 {
top: 8rem; top: 8rem;
@ -946,9 +1080,17 @@ video {
.md\:whitespace-pre { .md\:whitespace-pre {
white-space: pre; white-space: pre;
} }
}
.md\:\[grid-template-columns\:repeat\(auto-fill\2c minmax\(380px\2c 500px\)\)\] { @media (min-width: 1024px) {
grid-template-columns: repeat(auto-fill,minmax(380px,500px)); .lg\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (min-width: 1536px) {
.\32xl\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
} }
} }

View file

@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
content: ["./src/templates/**/*.{html,js, ejs}"], content: ["./src/templates/**/*.{html,js,ejs}", "./static/**/*.{html,js,ejs}"],
theme: { theme: {
extend: {}, extend: {},
}, },