Files
svemagie 26ab9b82b3
Build & Deploy / build-and-deploy (push) Successful in 1m50s
feat: auto-derive youtubeVideoId from URL in reply-context
Adds a `youtubeId` filter that extracts the video ID from any YouTube
URL (youtube.com?v= and youtu.be/ formats). reply-context.njk now
computes youtubeVideoId automatically from the interaction URL fields,
so YouTube embeds work without needing youtubeVideoId in post frontmatter.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-11 19:35:40 +02:00

100 lines
4.6 KiB
Plaintext

{# Reply Context Component #}
{# Displays rich context for replies, likes, reposts, and bookmarks #}
{# Uses h-cite microformat for citing external content #}
{# Includes unfurl card for rich link preview (OpenGraph metadata) #}
{# Support both camelCase (Indiekit Eleventy preset) and underscore (legacy) property names #}
{% set replyTo = inReplyTo or in_reply_to %}
{% set likedUrl = likeOf or like_of %}
{% set repostedUrl = repostOf or repost_of %}
{% set bookmarkedUrl = bookmarkOf or bookmark_of %}
{% set youtubeVideoId = youtubeVideoId or (repostedUrl | youtubeId) or (likedUrl | youtubeId) or (bookmarkedUrl | youtubeId) or (replyTo | youtubeId) %}
{% if replyTo or likedUrl or repostedUrl or bookmarkedUrl %}
<aside class="reply-context mb-6" aria-label="Reply context">
{% if replyTo %}
<div class="u-in-reply-to h-cite">
<p class="text-sm text-surface-600 dark:text-surface-400 mb-2 flex items-center gap-2">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10h10a8 8 0 018 8v2M3 10l6 6m-6-6l6-6"/>
</svg>
<span>In reply to:</span>
</p>
{% if youtubeVideoId %}
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
<lite-youtube videoid="{{ youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
</div>
{% else %}
{% unfurl replyTo %}
{% endif %}
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ replyTo }}">
{{ replyTo }}
</a>
</div>
{% endif %}
{% if likedUrl %}
<div class="u-like-of h-cite">
<p class="text-sm text-surface-600 dark:text-surface-400 mb-2 flex items-center gap-2">
<svg class="w-4 h-4 text-red-500" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/>
</svg>
<span>Liked:</span>
</p>
{% if youtubeVideoId %}
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
<lite-youtube videoid="{{ youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
</div>
{% else %}
{% unfurl likedUrl %}
{% endif %}
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ likedUrl }}">
{{ likedUrl }}
</a>
</div>
{% endif %}
{% if repostedUrl %}
<div class="u-repost-of h-cite">
<p class="text-sm text-surface-600 dark:text-surface-400 mb-2 flex items-center gap-2">
<svg class="w-4 h-4 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/>
</svg>
<span>Reposted:</span>
</p>
{% if youtubeVideoId %}
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
<lite-youtube videoid="{{ youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
</div>
{% else %}
{% unfurl repostedUrl %}
{% endif %}
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ repostedUrl }}">
{{ repostedUrl }}
</a>
</div>
{% endif %}
{% if bookmarkedUrl %}
<div class="u-bookmark-of h-cite">
<p class="text-sm text-surface-600 dark:text-surface-400 mb-2 flex items-center gap-2">
<svg class="w-4 h-4 text-yellow-500" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"/>
</svg>
<span>Bookmarked:</span>
</p>
{% if youtubeVideoId %}
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
<lite-youtube videoid="{{ youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
</div>
{% else %}
{% unfurl bookmarkedUrl %}
{% endif %}
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ bookmarkedUrl }}">
{{ bookmarkedUrl }}
</a>
</div>
{% endif %}
</aside>
{% endif %}