2023-10-17 10:17:37 +01:00
|
|
|
const MASTODON_ACCOUNT_ID = '109285376472065471'
|
|
|
|
const MASTODON_HOST = 'social.sd.ai'
|
|
|
|
|
|
|
|
async function copyElementTextToClipboard(e)
|
|
|
|
{
|
|
|
|
const text = e.textContent
|
2023-10-17 14:18:00 +01:00
|
|
|
await navigator.clipboard.writeText(text)
|
2023-10-17 10:17:37 +01:00
|
|
|
|
|
|
|
e.classList.add('tootClick');
|
|
|
|
setTimeout(() => {
|
|
|
|
e.classList.remove('tootClick');
|
|
|
|
}, 600);
|
|
|
|
}
|
|
|
|
|
|
|
|
function escapeHtml(unsafe) {
|
|
|
|
return unsafe
|
|
|
|
.replace(/&/g, "&")
|
|
|
|
.replace(/</g, "<")
|
|
|
|
.replace(/>/g, ">")
|
|
|
|
.replace(/"/g, """)
|
|
|
|
.replace(/'/g, "'");
|
|
|
|
}
|
|
|
|
|
2023-10-17 14:18:00 +01:00
|
|
|
function renderMastodonContent(toots, parentElement, showLink) {
|
|
|
|
parentElement.innerHTML = ''
|
2023-10-17 10:17:37 +01:00
|
|
|
if (!Array.isArray(toots) || toots.length === 0) {
|
|
|
|
document.getElementById('mastodon-comments-list').innerHTML = "<div class='mastodon-comment'>No comments (yet)!</div>"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for (const toot of toots) {
|
2023-10-17 14:18:00 +01:00
|
|
|
if (toot.sensitive) {
|
|
|
|
continue
|
|
|
|
}
|
2023-10-17 10:17:37 +01:00
|
|
|
toot.account.display_name = escapeHtml(toot.account.display_name)
|
|
|
|
toot.account.emojis.forEach(emoji => {
|
|
|
|
toot.account.display_name = toot.account.display_name.replace(`:${emoji.shortcode}:`,
|
|
|
|
`<img src="${escapeHtml(emoji.static_url)}" alt="Emoji ${emoji.shortcode}" class="mastodon-emoji" />`);
|
|
|
|
})
|
|
|
|
toot.emojis.forEach(emoji => {
|
|
|
|
toot.content = toot.content.replace(`:${emoji.shortcode}:`,
|
|
|
|
`<img src="${escapeHtml(emoji.static_url)}" alt="Emoji ${emoji.shortcode}" class="mastodon-emoji" />`);
|
|
|
|
})
|
|
|
|
const comment =
|
|
|
|
`<div class="mastodon-comment">
|
|
|
|
<div class="mastodon-avatar">
|
|
|
|
<img src="${escapeHtml(toot.account.avatar_static)}" height=60 width=60 alt="${escapeHtml(toot.account.display_name)}'s avatar">
|
|
|
|
</div>
|
|
|
|
<div class="mastodon-body">
|
|
|
|
<div class="mastodon-meta">
|
|
|
|
<div class="mastodon-author">
|
|
|
|
<div class="mastodon-author-link">
|
2023-10-17 17:04:52 +01:00
|
|
|
<a href="${toot.account.url}" target="_blank" rel="nofollow">
|
2023-10-17 10:17:37 +01:00
|
|
|
<span>${toot.account.display_name}</span>
|
|
|
|
</a>
|
|
|
|
<br/>
|
|
|
|
<span class="mastodon-author-uid">(@${escapeHtml(toot.account.acct === 's' ? 's@sd.ai' : toot.account.acct)})</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="toot-link">
|
2023-10-17 14:18:00 +01:00
|
|
|
<a class="date" href="${toot.uri}" rel="nofollow" target="_blank">
|
2023-10-17 10:17:37 +01:00
|
|
|
${toot.created_at.substring(0, 10)}
|
|
|
|
</a>
|
|
|
|
<br/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mastodon-comment-content">
|
|
|
|
${toot.content}
|
2023-10-17 14:18:00 +01:00
|
|
|
<span class="tootlink" ${showLink ? '' : 'style="display: none;"'}>${toot.uri}</span>
|
2023-10-17 10:17:37 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>`
|
|
|
|
const child = DOMPurify.sanitize(comment, {'RETURN_DOM_FRAGMENT': true});
|
|
|
|
const links = child.querySelectorAll('.tootlink');
|
|
|
|
for (const link of links) {
|
2023-10-17 14:18:00 +01:00
|
|
|
link.onclick = function() { return copyElementTextToClipboard(this); }
|
2023-10-17 10:17:37 +01:00
|
|
|
}
|
|
|
|
parentElement.appendChild(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-17 14:18:00 +01:00
|
|
|
let MASTODON_POST_ID
|
|
|
|
|
2023-10-17 10:17:37 +01:00
|
|
|
document.addEventListener("DOMContentLoaded", async (event) => {
|
2023-10-17 14:18:00 +01:00
|
|
|
let url, isComments
|
|
|
|
const isBot = /bot|google|baidu|bing|msn|teoma|slurp|yandex/i
|
|
|
|
.test(navigator.userAgent)
|
2023-10-17 10:17:37 +01:00
|
|
|
if (document.getElementsByClassName('gh-sidebar').length > 0) {
|
2023-10-17 14:18:00 +01:00
|
|
|
url = `https://${MASTODON_HOST}/api/v1/accounts/${MASTODON_ACCOUNT_ID}/statuses?exclude_replies=true&exclude_reblogs=true`
|
|
|
|
}
|
|
|
|
if (MASTODON_POST_ID && !isBot) {
|
|
|
|
url = `https://${MASTODON_HOST}/api/v1/statuses/${MASTODON_POST_ID}/context`
|
|
|
|
isComments = true
|
|
|
|
}
|
|
|
|
const element = document.getElementById('mastodon-comments-list')
|
|
|
|
if (url && element) {
|
|
|
|
const linkElement = document.getElementById('toot-link-top')
|
|
|
|
const clipElement = document.getElementById('toot-link-clip')
|
|
|
|
const tootUrl = `https://${MASTODON_HOST}/@s/${MASTODON_POST_ID}`
|
|
|
|
if (linkElement) {
|
|
|
|
linkElement.href = tootUrl
|
|
|
|
}
|
|
|
|
if (clipElement) {
|
|
|
|
clipElement.innerText = tootUrl
|
|
|
|
}
|
|
|
|
const response = await fetch(url)
|
|
|
|
let content = await response.json()
|
|
|
|
if (isComments) {
|
|
|
|
content = content.descendants
|
|
|
|
}
|
|
|
|
const header = document.getElementById('mastodon-comments-header')
|
|
|
|
if (header) {
|
|
|
|
header.style.display = ''
|
|
|
|
}
|
|
|
|
return renderMastodonContent(content, element, isComments)
|
2023-10-17 10:17:37 +01:00
|
|
|
}
|
|
|
|
})
|