chore: dry up webmentions

This commit is contained in:
Cory Dransfeldt 2023-08-14 09:50:29 -07:00
parent 561bf48c74
commit f3faf8feab
No known key found for this signature in database
10 changed files with 70 additions and 71 deletions

View file

@ -37,6 +37,9 @@ module.exports = function (eleventyConfig) {
// quiet build output // quiet build output
eleventyConfig.setQuietMode(true) eleventyConfig.setQuietMode(true)
eleventyConfig.setLiquidOptions({
jsTruthy: true,
})
// tailwind watches // tailwind watches
eleventyConfig.addWatchTarget('./tailwind.config.js') eleventyConfig.addWatchTarget('./tailwind.config.js')
@ -49,24 +52,6 @@ module.exports = function (eleventyConfig) {
// shortcodes // shortcodes
eleventyConfig.addShortcode('version', () => now) eleventyConfig.addShortcode('version', () => now)
// filters
Object.keys(filters).forEach((filterName) => {
eleventyConfig.addLiquidFilter(filterName, filters[filterName])
})
// date filters
Object.keys(dateFilters).forEach((filterName) => {
eleventyConfig.addLiquidFilter(filterName, dateFilters[filterName])
})
// media filters
Object.keys(mediaFilters).forEach((filterName) => {
eleventyConfig.addLiquidFilter(filterName, mediaFilters[filterName])
})
// css filters
eleventyConfig.addFilter('cssmin', (code) => new CleanCSS({}).minify(code).styles)
// enable merging of tags // enable merging of tags
eleventyConfig.setDataDeepMerge(true) eleventyConfig.setDataDeepMerge(true)
@ -107,6 +92,24 @@ module.exports = function (eleventyConfig) {
return md.render(content) return md.render(content)
}) })
// filters
Object.keys(filters).forEach((filterName) => {
eleventyConfig.addLiquidFilter(filterName, filters[filterName])
})
// date filters
Object.keys(dateFilters).forEach((filterName) => {
eleventyConfig.addLiquidFilter(filterName, dateFilters[filterName])
})
// media filters
Object.keys(mediaFilters).forEach((filterName) => {
eleventyConfig.addLiquidFilter(filterName, mediaFilters[filterName])
})
// css filters
eleventyConfig.addFilter('cssmin', (code) => new CleanCSS({}).minify(code).styles)
// image shortcode // image shortcode
eleventyConfig.addShortcode('image', async function (src, alt, css, sizes, loading) { eleventyConfig.addShortcode('image', async function (src, alt, css, sizes, loading) {
let metadata = await Image(src, { let metadata = await Image(src, {

View file

@ -1,7 +1,7 @@
<footer> <footer>
<div class="mt-8 pt-8 pb-4 flex gap-2 md:gap-3 justify-center w-full"> <div class="mt-8 pt-8 pb-4 flex gap-2 md:gap-3 justify-center w-full">
{% for link in nav.social %} {% for link in nav.social %}
{% render "partials/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %} {% render "partials/nav/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %}
{% endfor %} {% endfor %}
</div> </div>
<div class="flex justify-center text-sm text-gray-500 dark:text-gray-100 pb-8 text-center"> <div class="flex justify-center text-sm text-gray-500 dark:text-gray-100 pb-8 text-center">

View file

@ -1,7 +1,7 @@
<nav> <nav>
<ul class="flex"> <ul class="flex">
{% for link in nav.menu %} {% for link in nav.menu %}
<li class="mr-6"> <li{% if not forloop.last %} class="mr-6"{% endif %}>
{% render "partials/nav/link.liquid", page: page, link: link.name, icon: link.icon %} {% render "partials/nav/link.liquid", page: page, link: link.name, icon: link.icon %}
</li> </li>
{% endfor %} {% endfor %}

View file

@ -1,49 +0,0 @@
{% if webmentions %}
<div class="border-t border-gray-200 mt-12 pt-14 dark:border-gray-700">
{% assign mentions = webmentions.mentions | webmentionsByUrl: page.url %}
{% if mentions['repost-of'].size > 0 %}
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-gray-200">Reposts</h2>
<div class="flex flex-row items-center mt-4 mb-6">
<ul class="ml-3 flex flex-row flex-wrap">
{% for mention in mentions['repost-of'] %}
<li class="-ml-3 inline">
<a href={{mention.url}}>
{% image mention.author.photo, mention.author.name, 'bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all hover:border-pink-500 dark:hover:border-pink-500', '56px' %}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% if mentions['like-of'].size > 0 %}
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-gray-200">Likes</h2>
<div class="flex flex-row items-center mt-4 mb-6">
<ul class="ml-3 flex flex-row flex-wrap">
{% for mention in mentions['like-of'] %}
<li class="-ml-3 inline">
<a href={{mention.url}}>
{% image mention.author.photo, mention.author.name, 'bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all ease-in-out duration-300 hover:border-pink-500 dark:hover:border-pink-500', '56px' %}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% if mentions['in-reply-to'].size > 0 %}
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-gray-200">Comments</h2>
<div class="mt-4 flex flex-col items-center not-prose">
{% for mention in mentions['in-reply-to'] %}
<div class="border-bottom flex flex-row items-center border-gray-100 pb-4 w-full">
<a class="text-gray-700 dark:text-gray-200 group flex flex-row space-between items-center" href={{mention.url}}>
{% image mention.author.photo, mention.author.name, 'bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all ease-in-out duration-300 group-hover:border-pink-500 dark:group-hover:border-pink-500', '56px' %}
<div class="ml-3">
<p class="text-sm group-hover:text-pink-500 dark:group-hover:text-pink-500">{{ mention.content.text }}</p>
<p class="mt-1 text-xs group-hover:text-pink-500 dark:group-hover:text-pink-500">{{ mention.published | isoDateOnly }}</p>
</div>
</a>
</div>
{% endfor %}
</div>
{% endif %}
</div>
{% endif %}

View file

@ -0,0 +1,16 @@
{% if mentions['in-reply-to'].size > 0 %}
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-gray-200">Comments</h2>
<div class="mt-4 flex flex-col items-center not-prose">
{% for mention in mentions['in-reply-to'] %}
<div class="border-bottom flex flex-row items-center border-gray-100 pb-4 w-full">
<a class="text-gray-700 dark:text-gray-200 group flex flex-row space-between items-center" href={{mention.url}}>
{% image mention.author.photo, mention.author.name, 'bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all ease-in-out duration-300 group-hover:border-pink-500 dark:group-hover:border-pink-500', '56px' %}
<div class="ml-3">
<p class="text-sm group-hover:text-pink-500 dark:group-hover:text-pink-500">{{ mention.content.text }}</p>
<p class="mt-1 text-xs group-hover:text-pink-500 dark:group-hover:text-pink-500">{{ mention.published | isoDateOnly }}</p>
</div>
</a>
</div>
{% endfor %}
</div>
{% endif %}

View file

@ -0,0 +1,8 @@
{% if webmentions %}
<div class="border-t border-gray-200 mt-12 pt-14 dark:border-gray-700">
{% assign mentions = webmentions.mentions | webmentionsByUrl: page.url %}
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'repost-of' %}
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'like-of' %}
{% render "partials/webmentions/comments.liquid", mentions: mentions %}
</div>
{% endif %}

View file

@ -0,0 +1,21 @@
{%- capture title %}
{% if type == 'repost-of' %}
Reposts
{% elsif type == 'like-of' %}
Likes
{% endif %}
{% endcapture -%}
{% if mentions[type].size > 0 %}
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-gray-200">{{ title }}</h2>
<div class="flex flex-row items-center mt-4 mb-6">
<ul class="ml-3 flex flex-row flex-wrap">
{% for mention in mentions[type] %}
<li class="-ml-3 inline">
<a href={{mention.url}}>
{% image mention.author.photo, mention.author.name, 'bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all hover:border-pink-500 dark:hover:border-pink-500', '56px' %}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}

View file

@ -12,6 +12,6 @@ layout: main
</div> </div>
</article> </article>
{% render "partials/post-tags.liquid", tags: tags %} {% render "partials/post-tags.liquid", tags: tags %}
{% render "partials/webmentions.liquid", webmentions: webmentions, page: page %} {% render "partials/webmentions/container.liquid", webmentions: webmentions, page: page %}
{% render "partials/author.liquid", site: site %} {% render "partials/author.liquid", site: site %}
{% render "partials/popular-posts.liquid", posts: collections.posts, analytics: analytics %} {% render "partials/popular-posts.liquid", posts: collections.posts, analytics: analytics %}

View file

@ -21,7 +21,7 @@ Software engineer with a wide range of experience covering frontend and mobile a
<div class="flex gap-3 not-prose"> <div class="flex gap-3 not-prose">
{% for link in nav.resume %} {% for link in nav.resume %}
{% render "partials/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %} {% render "partials/nav/linked-icon.liquid", name: link.name, link: link.url, icon: link.icon %}
{% endfor %} {% endfor %}
</div> </div>