From 72d4710178fc6a81b1673392795a372fabc95819 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 7 Sep 2023 11:53:14 -0700 Subject: [PATCH] chore: merge in comment mentions as webmention replies; show some mention links --- config/filters.js | 20 ++++++++++++++----- .../partials/webmentions/comments.liquid | 2 +- .../partials/webmentions/container.liquid | 1 + .../partials/webmentions/links.liquid | 14 +++++++++++++ 4 files changed, 31 insertions(+), 6 deletions(-) create mode 100644 src/_includes/partials/webmentions/links.liquid diff --git a/config/filters.js b/config/filters.js index 29b1e570..b13327be 100644 --- a/config/filters.js +++ b/config/filters.js @@ -46,11 +46,18 @@ module.exports = { 'like-of': [], 'repost-of': [], 'in-reply-to': [], + 'mention-of': [], + 'link-to': [], } - const hasRequiredFields = (entry) => { + const hasRequiredReplyFields = (entry) => { const { author, published, content } = entry - return author.name && published && content + return author.name && author.photo && published && content + } + + const hasRequiredMentionFields = (entry) => { + const { name, url } = entry + return name && url } const filtered = @@ -61,19 +68,22 @@ module.exports = { filtered.forEach((m) => { if (data[m['wm-property']]) { const isReply = m['wm-property'] === 'in-reply-to' - const isValidReply = isReply && hasRequiredFields(m) - if (isReply) { + const isMention = m['wm-property'] === 'mention-of' + const isValidReply = (isReply || isMention) && hasRequiredReplyFields(m) + if (isReply || isMention) { if (isValidReply) { m.sanitized = sanitizeHTML(m.content.html) data[m['wm-property']].unshift(m) } + + if (isMention && hasRequiredMentionFields(m)) data['link-to'].push(m) return } - data[m['wm-property']].unshift(m) } }) + data['in-reply-to'] = [...data['in-reply-to'], ...data['mention-of']] data['in-reply-to'].sort((a, b) => a.published > b.published ? 1 : b.published > a.published ? -1 : 0 ) diff --git a/src/_includes/partials/webmentions/comments.liquid b/src/_includes/partials/webmentions/comments.liquid index 9768bee3..685a9ab0 100644 --- a/src/_includes/partials/webmentions/comments.liquid +++ b/src/_includes/partials/webmentions/comments.liquid @@ -1,6 +1,6 @@ {% if mentions['in-reply-to'].size > 0 %}

Comments

-
+