chore: remove unnecessary event; storage changes
This commit is contained in:
parent
e3421cef1e
commit
a0a593ee10
8 changed files with 25 additions and 67 deletions
|
@ -8,7 +8,7 @@ import markdownItFootnote from "markdown-it-footnote";
|
||||||
import markdownItPrism from "markdown-it-prism";
|
import markdownItPrism from "markdown-it-prism";
|
||||||
import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
|
import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
|
||||||
import tablerIcons from "@cdransf/eleventy-plugin-tabler-icons";
|
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 { albumReleasesCalendar } from "./config/collections/index.js";
|
||||||
import { cssConfig } from "./config/plugins/css-config.js";
|
import { cssConfig } from "./config/plugins/css-config.js";
|
||||||
|
|
||||||
|
@ -73,8 +73,6 @@ export default async function (eleventyConfig) {
|
||||||
eleventyConfig.addShortcode("appVersion", () => appVersion);
|
eleventyConfig.addShortcode("appVersion", () => appVersion);
|
||||||
|
|
||||||
// events
|
// events
|
||||||
if (process.env.ELEVENTY_PRODUCTION)
|
|
||||||
eleventyConfig.on("afterBuild", copyErrorPages);
|
|
||||||
if (process.env.ELEVENTY_PRODUCTION)
|
if (process.env.ELEVENTY_PRODUCTION)
|
||||||
eleventyConfig.on("afterBuild", minifyJsComponents);
|
eleventyConfig.on("afterBuild", minifyJsComponents);
|
||||||
|
|
||||||
|
|
|
@ -2,50 +2,6 @@ import fs from "fs";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { minify } from "terser";
|
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 () => {
|
export const minifyJsComponents = async () => {
|
||||||
const scriptsDir = "_site/assets/scripts";
|
const scriptsDir = "_site/assets/scripts";
|
||||||
|
|
||||||
|
|
26
package-lock.json
generated
26
package-lock.json
generated
|
@ -1,17 +1,17 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "2.2.1",
|
"version": "2.3.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "2.2.1",
|
"version": "2.3.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.6.0",
|
"@cdransf/api-text": "^1.7.0",
|
||||||
"@cdransf/select-pagination": "^1.3.1",
|
"@cdransf/select-pagination": "^1.3.1",
|
||||||
"@cdransf/theme-toggle": "^3.1.0",
|
"@cdransf/theme-toggle": "^3.2.0",
|
||||||
"@daviddarnes/mastodon-post": "^1.3.0",
|
"@daviddarnes/mastodon-post": "^1.3.0",
|
||||||
"http-proxy-middleware": "3.0.3",
|
"http-proxy-middleware": "3.0.3",
|
||||||
"minisearch": "^7.1.0",
|
"minisearch": "^7.1.0",
|
||||||
|
@ -372,9 +372,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@cdransf/api-text": {
|
"node_modules/@cdransf/api-text": {
|
||||||
"version": "1.6.0",
|
"version": "1.7.0",
|
||||||
"resolved": "https://registry.npmjs.org/@cdransf/api-text/-/api-text-1.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/@cdransf/api-text/-/api-text-1.7.0.tgz",
|
||||||
"integrity": "sha512-ezcPseEAGFixS86JmWt0Y5xUkhDfgFFVt5jOLV5b98hV26aBdgq3XQjbLWZsrBSGKeW0dTdBtK6BV/jgXnXo1w==",
|
"integrity": "sha512-7UIi0sqXOEm/9GB3STi2fPbmJmoVLCuuuTatll59v+BSj/Q6Sbtk8vVlYVh+ofWhqZVUxSMXugkb8W/qMR7PVQ==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@cdransf/eleventy-plugin-tabler-icons": {
|
"node_modules/@cdransf/eleventy-plugin-tabler-icons": {
|
||||||
|
@ -391,9 +391,9 @@
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@cdransf/theme-toggle": {
|
"node_modules/@cdransf/theme-toggle": {
|
||||||
"version": "3.1.0",
|
"version": "3.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/@cdransf/theme-toggle/-/theme-toggle-3.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/@cdransf/theme-toggle/-/theme-toggle-3.2.0.tgz",
|
||||||
"integrity": "sha512-uNX0cVc9M9u7p5o8Kl1hGGDtS/6gvuoGgJCQ5NWW4AwV+/bASBLOPZnlr2MH8K5UhYgakYAkTld/ex3fxj/VGQ==",
|
"integrity": "sha512-pr9tvk4PrFDaXjczYVTcXIIee+KJrLLzE0eumPG1v0RzmdYWue28XGmBvBndmr2dFRUurwcQUhdexSg7giHJrA==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@daviddarnes/mastodon-post": {
|
"node_modules/@daviddarnes/mastodon-post": {
|
||||||
|
@ -1152,9 +1152,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/caniuse-lite": {
|
"node_modules/caniuse-lite": {
|
||||||
"version": "1.0.30001672",
|
"version": "1.0.30001673",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001672.tgz",
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001673.tgz",
|
||||||
"integrity": "sha512-XhW1vRo1ob6aeK2w3rTohwTPBLse/rvjq+s3RTSBwnlZqoFFjx9cHsShJjAIbLsLjyoacaTxpLZy9v3gg6zypw==",
|
"integrity": "sha512-WTrjUCSMp3LYX0nE12ECkV0a+e6LC85E0Auz75555/qr78Oc8YWhEPNfDd6SHdtlCMSzqtuXY0uyEMNRcsKpKw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "2.2.1",
|
"version": "2.3.0",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
@ -26,9 +26,9 @@
|
||||||
"author": "Cory Dransfeldt",
|
"author": "Cory Dransfeldt",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.6.0",
|
"@cdransf/api-text": "^1.7.0",
|
||||||
"@cdransf/select-pagination": "^1.3.1",
|
"@cdransf/select-pagination": "^1.3.1",
|
||||||
"@cdransf/theme-toggle": "^3.1.0",
|
"@cdransf/theme-toggle": "^3.2.0",
|
||||||
"@daviddarnes/mastodon-post": "^1.3.0",
|
"@daviddarnes/mastodon-post": "^1.3.0",
|
||||||
"http-proxy-middleware": "3.0.3",
|
"http-proxy-middleware": "3.0.3",
|
||||||
"minisearch": "^7.1.0",
|
"minisearch": "^7.1.0",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script type="module" src="/assets/scripts/components/api-text.js?v={% appVersion %}" crossorigin="anonymous"></script>
|
<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="loading client-side">{{ nowPlaying }}</span>
|
||||||
<span class="content"></span>
|
<span class="content"></span>
|
||||||
<noscript>
|
<noscript>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script type="module" src="/assets/scripts/components/theme-toggle.js?v={% appVersion %}"
|
<script type="module" src="/assets/scripts/components/theme-toggle.js?v={% appVersion %}"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<span class="client-side">
|
<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">
|
<button aria-label="Auto, light, dark theme control" class="theme-toggle">
|
||||||
<span class="auto">
|
<span class="auto">
|
||||||
<svg aria-hidden="true" data-tablericon-name="sun-moon" fill="none" height="24" stroke="currentColor"
|
<svg aria-hidden="true" data-tablericon-name="sun-moon" fill="none" height="24" stroke="currentColor"
|
||||||
|
|
|
@ -49,7 +49,11 @@
|
||||||
<body>
|
<body>
|
||||||
<script>
|
<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"]');
|
const metaColorScheme = document.querySelector('meta[name="color-scheme"]');
|
||||||
if (currentTheme === "auto") {
|
if (currentTheme === "auto") {
|
||||||
metaColorScheme.setAttribute("content", "light dark");
|
metaColorScheme.setAttribute("content", "light dark");
|
||||||
|
|
|
@ -4,7 +4,7 @@ pagination:
|
||||||
size: 1
|
size: 1
|
||||||
alias: page
|
alias: page
|
||||||
description: "{{ page.description }}"
|
description: "{{ page.description }}"
|
||||||
permalink: "{{ page.permalink }}/index.html"
|
permalink: "{{ page.permalink }}.html"
|
||||||
image: "{{ page.open_graph_image | prepend: globals.cdn_url | default: globals.avatar }}"
|
image: "{{ page.open_graph_image | prepend: globals.cdn_url | default: globals.avatar }}"
|
||||||
updated: "{{ page.updated | default: null }}"
|
updated: "{{ page.updated | default: null }}"
|
||||||
schema: page
|
schema: page
|
||||||
|
|
Reference in a new issue