chore: additional formatting w/prettier
This commit is contained in:
parent
ea75e585e1
commit
ee77555c32
39 changed files with 1544 additions and 1584 deletions
|
@ -10,25 +10,16 @@
|
||||||
"ecmaVersion": 11
|
"ecmaVersion": 11
|
||||||
},
|
},
|
||||||
"rules": {
|
"rules": {
|
||||||
"indent": [
|
"indent": ["error", 2],
|
||||||
|
"linebreak-style": ["error", "unix"],
|
||||||
|
"quotes": ["error", "single"],
|
||||||
|
"semi": ["error", "never"],
|
||||||
|
"array-element-newline": [
|
||||||
"error",
|
"error",
|
||||||
2
|
{
|
||||||
],
|
|
||||||
"linebreak-style": [
|
|
||||||
"error",
|
|
||||||
"unix"
|
|
||||||
],
|
|
||||||
"quotes": [
|
|
||||||
"error",
|
|
||||||
"single"
|
|
||||||
],
|
|
||||||
"semi": [
|
|
||||||
"error",
|
|
||||||
"never"
|
|
||||||
],
|
|
||||||
"array-element-newline": ["error", {
|
|
||||||
"ArrayExpression": "consistent",
|
"ArrayExpression": "consistent",
|
||||||
"ArrayPattern": { "minItems": 3 }
|
"ArrayPattern": { "minItems": 3 }
|
||||||
}]
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
|
@ -1,6 +1,6 @@
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "npm"
|
- package-ecosystem: 'npm'
|
||||||
directory: "/"
|
directory: '/'
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: 'daily'
|
||||||
|
|
|
@ -53,9 +53,12 @@
|
||||||
"tailwindcss": "^3.0.18"
|
"tailwindcss": "^3.0.18"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"**/*.{js,jsx,ts,tsx}": [
|
"**/*.{js,jsx,ts,tsx,json}": [
|
||||||
"npx prettier --write",
|
"npx prettier --write",
|
||||||
"npx eslint --fix"
|
"npx eslint --fix"
|
||||||
|
],
|
||||||
|
"**/*.{scss}": [
|
||||||
|
"npx prettier --write"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,9 +20,9 @@ export default async function handler(req: any, res: any) {
|
||||||
const DOMAIN = req.query.domain
|
const DOMAIN = req.query.domain
|
||||||
const TARGET = req.query.target
|
const TARGET = req.query.target
|
||||||
const data = await fetch(
|
const data = await fetch(
|
||||||
`https://webmention.io/api/mentions.jf2?token=${
|
`https://webmention.io/api/mentions.jf2?token=${DOMAIN === 'coryd.dev' ? KEY_CORYD : KEY_BLOG}${
|
||||||
DOMAIN === 'coryd.dev' ? KEY_CORYD : KEY_BLOG
|
TARGET ? `&target=${TARGET}` : ''
|
||||||
}${TARGET ? `&target=${TARGET}` : ''}&per-page=1000`
|
}&per-page=1000`
|
||||||
).then((response) => response.json())
|
).then((response) => response.json())
|
||||||
res.json(data)
|
res.json(data)
|
||||||
}
|
}
|
||||||
|
@ -90,9 +90,7 @@ document.addEventListener('DOMContentLoaded', (event) => {
|
||||||
mention.author.photo
|
mention.author.photo
|
||||||
}" alt="${mention.author.name}" /><div class="time">${formatDate(
|
}" alt="${mention.author.name}" /><div class="time">${formatDate(
|
||||||
mention.published
|
mention.published
|
||||||
)}</div></div><div class="comment-body">${
|
)}</div></div><div class="comment-body">${mention.content.text}</div></a></div>`
|
||||||
mention.content.text
|
|
||||||
}</div></a></div>`
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -104,15 +102,11 @@ document.addEventListener('DOMContentLoaded', (event) => {
|
||||||
webmentionsCommentsWrapper.insertAdjacentHTML('beforeEnd', comments)
|
webmentionsCommentsWrapper.insertAdjacentHTML('beforeEnd', comments)
|
||||||
webmentionsWrapper.style.opacity = 1
|
webmentionsWrapper.style.opacity = 1
|
||||||
|
|
||||||
if (likes === '')
|
if (likes === '') document.getElementById('webmentions-likes').innerHTML === ''
|
||||||
document.getElementById('webmentions-likes').innerHTML === ''
|
if (boosts === '') document.getElementById('webmentions-boosts').innerHTML === ''
|
||||||
if (boosts === '')
|
if (comments === '') document.getElementById('webmentions-comments').innerHTML === ''
|
||||||
document.getElementById('webmentions-boosts').innerHTML === ''
|
|
||||||
if (comments === '')
|
|
||||||
document.getElementById('webmentions-comments').innerHTML === ''
|
|
||||||
|
|
||||||
if (likes === '' && boosts === '' && comments === '')
|
if (likes === '' && boosts === '' && comments === '') webmentionsWrapper.remove()
|
||||||
webmentionsWrapper.remove()
|
|
||||||
})
|
})
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
webmentionsWrapper.remove()
|
webmentionsWrapper.remove()
|
||||||
|
|
|
@ -156,9 +156,7 @@ export default async function handler(req: any, res: any) {
|
||||||
const books = await fetch(`${host}/api/books`)
|
const books = await fetch(`${host}/api/books`)
|
||||||
.then((res) => res.json())
|
.then((res) => res.json())
|
||||||
.then((json) => {
|
.then((json) => {
|
||||||
const data = json.entries
|
const data = json.entries.slice(0, 5).map((book: { title: string; link: string }) => {
|
||||||
.slice(0, 5)
|
|
||||||
.map((book: { title: string; link: string }) => {
|
|
||||||
return {
|
return {
|
||||||
title: book.title,
|
title: book.title,
|
||||||
link: book.link,
|
link: book.link,
|
||||||
|
@ -190,9 +188,7 @@ export default async function handler(req: any, res: any) {
|
||||||
json: data,
|
json: data,
|
||||||
md: data
|
md: data
|
||||||
.map((d: any) => {
|
.map((d: any) => {
|
||||||
return `- [${d.title}](${d.link}): ${d.desc} {${getRandomIcon(
|
return `- [${d.title}](${d.link}): ${d.desc} {${getRandomIcon('movies')}}`
|
||||||
'movies'
|
|
||||||
)}}`
|
|
||||||
})
|
})
|
||||||
.join('\n'),
|
.join('\n'),
|
||||||
}
|
}
|
||||||
|
@ -203,21 +199,14 @@ export default async function handler(req: any, res: any) {
|
||||||
.then((json) => {
|
.then((json) => {
|
||||||
const data = json.entries
|
const data = json.entries
|
||||||
.splice(0, 5)
|
.splice(0, 5)
|
||||||
.map(
|
.map((episode: { title: string; link: string; image: string; thumbnail: string }) => {
|
||||||
(episode: {
|
|
||||||
title: string
|
|
||||||
link: string
|
|
||||||
image: string
|
|
||||||
thumbnail: string
|
|
||||||
}) => {
|
|
||||||
return {
|
return {
|
||||||
title: episode.title,
|
title: episode.title,
|
||||||
link: episode.link,
|
link: episode.link,
|
||||||
image: episode.image,
|
image: episode.image,
|
||||||
thumbnail: episode.thumbnail,
|
thumbnail: episode.thumbnail,
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
)
|
|
||||||
return {
|
return {
|
||||||
json: data,
|
json: data,
|
||||||
html: data
|
html: data
|
||||||
|
@ -241,12 +230,8 @@ export default async function handler(req: any, res: any) {
|
||||||
const data = json.topartists.artist.map((a: any) => {
|
const data = json.topartists.artist.map((a: any) => {
|
||||||
return {
|
return {
|
||||||
artist: a.name,
|
artist: a.name,
|
||||||
link: `https://rateyourmusic.com/search?searchterm=${encodeURIComponent(
|
link: `https://rateyourmusic.com/search?searchterm=${encodeURIComponent(a.name)}`,
|
||||||
a.name
|
image: `${host}/api/media?artist=${a.name.replace(/\s+/g, '-').toLowerCase()}`,
|
||||||
)}`,
|
|
||||||
image: `${host}/api/media?artist=${a.name
|
|
||||||
.replace(/\s+/g, '-')
|
|
||||||
.toLowerCase()}`,
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return {
|
return {
|
||||||
|
@ -272,14 +257,10 @@ export default async function handler(req: any, res: any) {
|
||||||
const data = json.topalbums.album.map((a: any) => ({
|
const data = json.topalbums.album.map((a: any) => ({
|
||||||
title: a.name,
|
title: a.name,
|
||||||
artist: a.artist.name,
|
artist: a.artist.name,
|
||||||
link: `https://rateyourmusic.com/search?searchterm=${encodeURIComponent(
|
link: `https://rateyourmusic.com/search?searchterm=${encodeURIComponent(a.name)}`,
|
||||||
a.name
|
|
||||||
)}`,
|
|
||||||
image: !ALBUM_DENYLIST.includes(a.name.replace(/\s+/g, '-').toLowerCase())
|
image: !ALBUM_DENYLIST.includes(a.name.replace(/\s+/g, '-').toLowerCase())
|
||||||
? a.image[a.image.length - 1]['#text']
|
? a.image[a.image.length - 1]['#text']
|
||||||
: `${host}/api/media?album=${a.name
|
: `${host}/api/media?album=${a.name.replace(/\s+/g, '-').toLowerCase()}`,
|
||||||
.replace(/\s+/g, '-')
|
|
||||||
.toLowerCase()}`,
|
|
||||||
}))
|
}))
|
||||||
return {
|
return {
|
||||||
json: data,
|
json: data,
|
||||||
|
@ -290,9 +271,7 @@ export default async function handler(req: any, res: any) {
|
||||||
.join('\n'),
|
.join('\n'),
|
||||||
md: data
|
md: data
|
||||||
.map((d: any) => {
|
.map((d: any) => {
|
||||||
return `- [${d.title}](${d.link}) by ${d.artist} {${getRandomIcon(
|
return `- [${d.title}](${d.link}) by ${d.artist} {${getRandomIcon('music')}}`
|
||||||
'music'
|
|
||||||
)}}`
|
|
||||||
})
|
})
|
||||||
.join('\n'),
|
.join('\n'),
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,9 +80,7 @@ export default async function syndicate(init?: string) {
|
||||||
entries[0].tags
|
entries[0].tags
|
||||||
.split(',')
|
.split(',')
|
||||||
.forEach((a, index) =>
|
.forEach((a, index) =>
|
||||||
index === 0
|
index === 0 ? (tags += `#${toPascalCase(a)}`) : (tags += ` #${toPascalCase(a)}`)
|
||||||
? (tags += `#${toPascalCase(a)}`)
|
|
||||||
: (tags += ` #${toPascalCase(a)}`)
|
|
||||||
)
|
)
|
||||||
tags += ` ${TAGS[service]}`
|
tags += ` ${TAGS[service]}`
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -49,10 +49,7 @@ export default function Now(props) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<PageSEO
|
<PageSEO title={`Now - ${siteMetadata.author}`} description={siteMetadata.description.now} />
|
||||||
title={`Now - ${siteMetadata.author}`}
|
|
||||||
description={siteMetadata.description.now}
|
|
||||||
/>
|
|
||||||
<div className="divide-y divide-gray-200 dark:divide-gray-700">
|
<div className="divide-y divide-gray-200 dark:divide-gray-700">
|
||||||
<div className="space-y-2 pt-6 pb-8 md:space-y-5">
|
<div className="space-y-2 pt-6 pb-8 md:space-y-5">
|
||||||
<h1 className="text-3xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl sm:leading-10 md:text-6xl md:leading-14">
|
<h1 className="text-3xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl sm:leading-10 md:text-6xl md:leading-14">
|
||||||
|
@ -67,8 +64,7 @@ export default function Now(props) {
|
||||||
<Status status={status} />
|
<Status status={status} />
|
||||||
<p className="mt-2 text-lg leading-7 text-gray-500 dark:text-gray-100">
|
<p className="mt-2 text-lg leading-7 text-gray-500 dark:text-gray-100">
|
||||||
<MapPinIcon className="mr-1 inline h-6 w-6" />
|
<MapPinIcon className="mr-1 inline h-6 w-6" />
|
||||||
Living in Camarillo, California with my beautiful family, 4 rescue dogs and
|
Living in Camarillo, California with my beautiful family, 4 rescue dogs and a guinea pig.
|
||||||
a guinea pig.
|
|
||||||
</p>
|
</p>
|
||||||
<p className="mt-2 text-lg leading-7 text-gray-500 dark:text-gray-100">
|
<p className="mt-2 text-lg leading-7 text-gray-500 dark:text-gray-100">
|
||||||
<CodeBracketIcon className="mr-1 inline h-6 w-6" />
|
<CodeBracketIcon className="mr-1 inline h-6 w-6" />
|
||||||
|
|
|
@ -39,13 +39,11 @@ const WebmentionsCore = () => {
|
||||||
const { asPath } = useRouter()
|
const { asPath } = useRouter()
|
||||||
const { response, error } = useJson(`/api/webmentions?target=${siteMetadata.siteUrl}${asPath}`)
|
const { response, error } = useJson(`/api/webmentions?target=${siteMetadata.siteUrl}${asPath}`)
|
||||||
const webmentions = response?.children
|
const webmentions = response?.children
|
||||||
const hasLikes =
|
const hasLikes = webmentions?.filter((mention) => mention['wm-property'] === 'like-of').length > 0
|
||||||
webmentions?.filter((mention) => mention['wm-property'] === 'like-of').length > 0
|
|
||||||
const hasComments =
|
const hasComments =
|
||||||
webmentions?.filter((mention) => mention['wm-property'] === 'in-reply-to').length > 0
|
webmentions?.filter((mention) => mention['wm-property'] === 'in-reply-to').length > 0
|
||||||
const boostsCount = webmentions?.filter(
|
const boostsCount = webmentions?.filter(
|
||||||
(mention) =>
|
(mention) => mention['wm-property'] === 'repost-of' || mention['wm-property'] === 'mention-of'
|
||||||
mention['wm-property'] === 'repost-of' || mention['wm-property'] === 'mention-of'
|
|
||||||
).length
|
).length
|
||||||
const hasBoosts = boostsCount > 0
|
const hasBoosts = boostsCount > 0
|
||||||
const hasMention = hasLikes || hasComments || hasBoosts
|
const hasMention = hasLikes || hasComments || hasBoosts
|
||||||
|
@ -76,11 +74,7 @@ const WebmentionsCore = () => {
|
||||||
if (mention['wm-property'] === 'like-of')
|
if (mention['wm-property'] === 'like-of')
|
||||||
return (
|
return (
|
||||||
<li key={mention['wm-id']} className="-ml-2">
|
<li key={mention['wm-id']} className="-ml-2">
|
||||||
<Link
|
<Link href={mention.url} target="_blank" rel="noopener noreferrer">
|
||||||
href={mention.url}
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
>
|
|
||||||
<Image
|
<Image
|
||||||
className="h-10 w-10 rounded-full border border-primary-500 dark:border-gray-500"
|
className="h-10 w-10 rounded-full border border-primary-500 dark:border-gray-500"
|
||||||
src={mention.author.photo}
|
src={mention.author.photo}
|
||||||
|
|
|
@ -6,6 +6,7 @@ tags: ['.env', '11ty', 'eleventy']
|
||||||
---
|
---
|
||||||
|
|
||||||
**dotenv-flow:**
|
**dotenv-flow:**
|
||||||
|
|
||||||
> **dotenv-flow** extends **dotenv** adding the ability to have multiple `.env*` files like `.env.development`, `.env.test` and `.env.production`, also allowing defined variables to be overwritten individually in the appropriate `.env*.local` file.
|
> **dotenv-flow** extends **dotenv** adding the ability to have multiple `.env*` files like `.env.development`, `.env.test` and `.env.production`, also allowing defined variables to be overwritten individually in the appropriate `.env*.local` file.
|
||||||
|
|
||||||
The Eleventy docs recommend the `dotenv` package for working with `.env` files[^1], but I've found `dotenv-flow` to be a bit more useful inasmuch as support for `.env*` file patterns make development more convenient.<!-- excerpt -->
|
The Eleventy docs recommend the `dotenv` package for working with `.env` files[^1], but I've found `dotenv-flow` to be a bit more useful inasmuch as support for `.env*` file patterns make development more convenient.<!-- excerpt -->
|
||||||
|
|
|
@ -58,6 +58,7 @@ jobs:
|
||||||
When the build runs, it renders any mentions of a given post via a [liquid.js](https://liquidjs.com/) template that looks like this:
|
When the build runs, it renders any mentions of a given post via a [liquid.js](https://liquidjs.com/) template that looks like this:
|
||||||
|
|
||||||
{% raw %}
|
{% raw %}
|
||||||
|
|
||||||
```liquid
|
```liquid
|
||||||
{% if webmentions %}
|
{% if webmentions %}
|
||||||
<div class="border-t border-gray-200 mt-12 pt-14 dark:border-gray-700">
|
<div class="border-t border-gray-200 mt-12 pt-14 dark:border-gray-700">
|
||||||
|
@ -130,6 +131,7 @@ When the build runs, it renders any mentions of a given post via a [liquid.js](h
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
```
|
```
|
||||||
|
|
||||||
{% endraw %}
|
{% endraw %}
|
||||||
|
|
||||||
This conditionally displays different mention types based on the available data after being passed through the `webmentionsByUrl` filter which I shamelessly lifted from [Robb](https://github.com/rknightuk/rknight.me/blob/8e2a5c5f886cae6c04add7893b8bf8a2d6295ddf/config/filters.js#L48-L84).
|
This conditionally displays different mention types based on the available data after being passed through the `webmentionsByUrl` filter which I shamelessly lifted from [Robb](https://github.com/rknightuk/rknight.me/blob/8e2a5c5f886cae6c04add7893b8bf8a2d6295ddf/config/filters.js#L48-L84).
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
permalink: /sitemap.xml
|
permalink: /sitemap.xml
|
||||||
eleventyExcludeFromCollections: true
|
eleventyExcludeFromCollections: true
|
||||||
---
|
---
|
||||||
|
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
{% for page in collections.all %}
|
{% for page in collections.all %}
|
||||||
<url>
|
<url>
|
||||||
|
|
|
@ -11,6 +11,7 @@ templateEngineOverride: liquid,md
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for post in collections[tag] %}
|
{% for post in collections[tag] %}
|
||||||
|
|
||||||
<div class="mb-8 border-b border-gray-200 pb-4 dark:border-gray-700">
|
<div class="mb-8 border-b border-gray-200 pb-4 dark:border-gray-700">
|
||||||
<a class="no-underline" href="{{ post.url }}">
|
<a class="no-underline" href="{{ post.url }}">
|
||||||
<h2
|
<h2
|
||||||
|
|
Reference in a new issue