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

-
+
{% for mention in mentions['in-reply-to'] %} {% endif %} diff --git a/src/_includes/partials/webmentions/links.liquid b/src/_includes/partials/webmentions/links.liquid new file mode 100644 index 00000000..b24ace65 --- /dev/null +++ b/src/_includes/partials/webmentions/links.liquid @@ -0,0 +1,14 @@ +{% if mentions['link-to'].size > 0 %} +

Links

+
+{% endif %} \ No newline at end of file