chore: remove unnecessary event; storage changes

This commit is contained in:
Cory Dransfeldt 2024-10-27 19:37:42 -07:00
parent e3421cef1e
commit a0a593ee10
No known key found for this signature in database
8 changed files with 25 additions and 67 deletions

View file

@ -8,7 +8,7 @@ import markdownItFootnote from "markdown-it-footnote";
import markdownItPrism from "markdown-it-prism";
import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
import tablerIcons from "@cdransf/eleventy-plugin-tabler-icons";
import { copyErrorPages, minifyJsComponents } from "./config/events/index.js";
import { minifyJsComponents } from "./config/events/index.js";
import { albumReleasesCalendar } from "./config/collections/index.js";
import { cssConfig } from "./config/plugins/css-config.js";
@ -73,8 +73,6 @@ export default async function (eleventyConfig) {
eleventyConfig.addShortcode("appVersion", () => appVersion);
// events
if (process.env.ELEVENTY_PRODUCTION)
eleventyConfig.on("afterBuild", copyErrorPages);
if (process.env.ELEVENTY_PRODUCTION)
eleventyConfig.on("afterBuild", minifyJsComponents);

View file

@ -2,50 +2,6 @@ import fs from "fs";
import path from "path";
import { minify } from "terser";
const errorPages = [
"404",
"500",
"1000",
"broken",
"error",
"js-challenge",
"not-allowed",
"rate-limit",
];
export const copyErrorPages = () => {
errorPages.forEach((errorPage) => {
const sourcePath = path.join("_site", errorPage, "index.html");
const destinationPath = path.join("_site", `${errorPage}.html`);
const directoryPath = path.join("_site", errorPage);
fs.copyFile(sourcePath, destinationPath, (err) => {
if (err) {
console.error(`Error copying ${errorPage} page:`, err);
return;
}
fs.unlink(sourcePath, (unlinkErr) => {
if (unlinkErr) {
console.error(
`Error deleting source file for ${errorPage} page:`,
unlinkErr
);
return;
}
fs.rmdir(directoryPath, (rmdirErr) => {
if (rmdirErr)
console.error(
`Error removing directory for ${errorPage} page:`,
rmdirErr
);
});
});
});
});
};
export const minifyJsComponents = async () => {
const scriptsDir = "_site/assets/scripts";

26
package-lock.json generated
View file

@ -1,17 +1,17 @@
{
"name": "coryd.dev",
"version": "2.2.1",
"version": "2.3.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "2.2.1",
"version": "2.3.0",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.6.0",
"@cdransf/api-text": "^1.7.0",
"@cdransf/select-pagination": "^1.3.1",
"@cdransf/theme-toggle": "^3.1.0",
"@cdransf/theme-toggle": "^3.2.0",
"@daviddarnes/mastodon-post": "^1.3.0",
"http-proxy-middleware": "3.0.3",
"minisearch": "^7.1.0",
@ -372,9 +372,9 @@
}
},
"node_modules/@cdransf/api-text": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@cdransf/api-text/-/api-text-1.6.0.tgz",
"integrity": "sha512-ezcPseEAGFixS86JmWt0Y5xUkhDfgFFVt5jOLV5b98hV26aBdgq3XQjbLWZsrBSGKeW0dTdBtK6BV/jgXnXo1w==",
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@cdransf/api-text/-/api-text-1.7.0.tgz",
"integrity": "sha512-7UIi0sqXOEm/9GB3STi2fPbmJmoVLCuuuTatll59v+BSj/Q6Sbtk8vVlYVh+ofWhqZVUxSMXugkb8W/qMR7PVQ==",
"license": "MIT"
},
"node_modules/@cdransf/eleventy-plugin-tabler-icons": {
@ -391,9 +391,9 @@
"license": "MIT"
},
"node_modules/@cdransf/theme-toggle": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@cdransf/theme-toggle/-/theme-toggle-3.1.0.tgz",
"integrity": "sha512-uNX0cVc9M9u7p5o8Kl1hGGDtS/6gvuoGgJCQ5NWW4AwV+/bASBLOPZnlr2MH8K5UhYgakYAkTld/ex3fxj/VGQ==",
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@cdransf/theme-toggle/-/theme-toggle-3.2.0.tgz",
"integrity": "sha512-pr9tvk4PrFDaXjczYVTcXIIee+KJrLLzE0eumPG1v0RzmdYWue28XGmBvBndmr2dFRUurwcQUhdexSg7giHJrA==",
"license": "MIT"
},
"node_modules/@daviddarnes/mastodon-post": {
@ -1152,9 +1152,9 @@
}
},
"node_modules/caniuse-lite": {
"version": "1.0.30001672",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001672.tgz",
"integrity": "sha512-XhW1vRo1ob6aeK2w3rTohwTPBLse/rvjq+s3RTSBwnlZqoFFjx9cHsShJjAIbLsLjyoacaTxpLZy9v3gg6zypw==",
"version": "1.0.30001673",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001673.tgz",
"integrity": "sha512-WTrjUCSMp3LYX0nE12ECkV0a+e6LC85E0Auz75555/qr78Oc8YWhEPNfDd6SHdtlCMSzqtuXY0uyEMNRcsKpKw==",
"dev": true,
"funding": [
{

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "2.2.1",
"version": "2.3.0",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {
@ -26,9 +26,9 @@
"author": "Cory Dransfeldt",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.6.0",
"@cdransf/api-text": "^1.7.0",
"@cdransf/select-pagination": "^1.3.1",
"@cdransf/theme-toggle": "^3.1.0",
"@cdransf/theme-toggle": "^3.2.0",
"@daviddarnes/mastodon-post": "^1.3.0",
"http-proxy-middleware": "3.0.3",
"minisearch": "^7.1.0",

View file

@ -1,5 +1,5 @@
<script type="module" src="/assets/scripts/components/api-text.js?v={% appVersion %}" crossorigin="anonymous"></script>
<api-text api-url="/api/now-playing" display="inline">
<api-text api-url="/api/now-playing" display="inline" storage="local">
<span class="loading client-side">{{ nowPlaying }}</span>
<span class="content"></span>
<noscript>

View file

@ -1,7 +1,7 @@
<script type="module" src="/assets/scripts/components/theme-toggle.js?v={% appVersion %}"
crossorigin="anonymous"></script>
<span class="client-side">
<theme-toggle mode="control">
<theme-toggle mode="control" storage="local">
<button aria-label="Auto, light, dark theme control" class="theme-toggle">
<span class="auto">
<svg aria-hidden="true" data-tablericon-name="sun-moon" fill="none" height="24" stroke="currentColor"

View file

@ -49,7 +49,11 @@
<body>
<script>
(() => {
const currentTheme = sessionStorage.getItem("theme") || "auto";
const storageType =
document.querySelector("theme-toggle")?.getAttribute("storage") === "local"
? localStorage
: sessionStorage;
const currentTheme = storageType.getItem("theme") || "auto";
const metaColorScheme = document.querySelector('meta[name="color-scheme"]');
if (currentTheme === "auto") {
metaColorScheme.setAttribute("content", "light dark");

View file

@ -4,7 +4,7 @@ pagination:
size: 1
alias: page
description: "{{ page.description }}"
permalink: "{{ page.permalink }}/index.html"
permalink: "{{ page.permalink }}.html"
image: "{{ page.open_graph_image | prepend: globals.cdn_url | default: globals.avatar }}"
updated: "{{ page.updated | default: null }}"
schema: page