Skip to content

Instantly share code, notes, and snippets.

@jackbaty
Last active December 4, 2018 14:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackbaty/25cef1b343ec214f64a5df1843a5fc26 to your computer and use it in GitHub Desktop.
Save jackbaty/25cef1b343ec214f64a5df1843a5fc26 to your computer and use it in GitHub Desktop.
webmentions.js
!function() {
var t = "https://webmention.io/api/mentions",
a = $("hr.full");
if (1 === a.length) {
var e = $.ajax(t, {
data: {
target: "https://www.baty.blog" + location.pathname
}
}),
n = function(t) {
if (!t.author || !t.author.url)
return "";
var a = new Date(t.published),
e = '<div class="comment-author vcard"><img class="avatar photo u-photo" src="' + t.author.photo + '" alt="' + t.author.name + '">';
return e += '<cite class="fn"><a class="url" rel="external nofollow" href="' + t.author.url + '">' + t.author.name + "</a></cite>", e += '<div class="comment-meta commentmetadata"><a href="' + t.url + '"><time pubdate datetime="' + t.published + '">' + a + "</time></a></div>"
};
e.then(function(t) {
var e = t.links || [];
"function" == typeof [].map && (e = e.map(function(t) {
return t.date = +new Date(t.verified_date), t
}).sort(function(t, a) {
return t.date > a.date ? 1 : -1
}));
var o = [],
i = [];
e.length && ($.each(e, function(t, a) {
var e = a.data,
l = "";
"reply" === a.activity.type ? (l += '<li class="comment u-comment h-cite">', l += n(e), l += '<div class="comment-content">' + e.content + "</div>", l += "</li>", o.push(l)) : (l = '<li class="h-cite">', l += a.activity.sentence_html, l += "</li>", i.push(l))
}), a.after('<h2>Webmentions</h2><ol class="mentions-list">' + i.join("") + "</ol>"), a.after('<h2>Comments</h2><ol class="commentlist">' + o.join("") + "</ol>"))
}), e["catch"](function(t, a) {
console.log(t), console.log(a)
})
}
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment