feat: Add support for comments from Mastodon posts (API)

Can be replied to from the Fediverse/ any ActivityPub-compatible instance.
pull/2/head
earnest ma 2021-02-05 16:55:57 -05:00
parent 83a6cf1fb2
commit b7ed911aba
No known key found for this signature in database
GPG Key ID: 6B361FA81C5FB695
3 changed files with 402 additions and 293 deletions

View File

@ -1,7 +1,6 @@
/* Adapted from Simple CSS (MIT License): https://simplecss.org/ */ /* Adapted from Simple CSS (MIT License): https://simplecss.org/ */
/* Set the global variables for everything. Change these to use your own fonts/colours. */ /* Set the global variables for everything. Change these to use your own fonts/colours. */
:root { :root {
/* Set sans-serif & mono fonts */ /* Set sans-serif & mono fonts */
--sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif; --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
--mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace; --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
@ -24,429 +23,466 @@
--accent: #bd93f9; --accent: #bd93f9;
--accent-light: #bd93f9; --accent-light: #bd93f9;
--code: #ff79c6; --code: #ff79c6;
--preformatted: #CCC; --preformatted: #ccc;
--marked: #f1fa8c; --marked: #f1fa8c;
} }
/* Dark theme */ /* Dark theme */
img, video { img,
opacity: .6; video {
} opacity: 0.6;
}
* { * {
/* Set the font globally */ /* Set the font globally */
font-family: var(--sans-font); font-family: var(--sans-font);
} }
html { html {
font-size: 16px; font-size: 16px;
} }
/* Make the body a nice central block */ /* Make the body a nice central block */
body { body {
color: var(--text); color: var(--text);
background: var(--bg); background: var(--bg);
font-size: var(--base-fontsize); font-size: var(--base-fontsize);
line-height: var(--line-height); line-height: var(--line-height);
margin: 0; margin: 0;
} }
/* Make the main element a nice central block */ /* Make the main element a nice central block */
main { main {
margin: 1rem auto 0; margin: 1rem auto 0;
max-width: 45rem; max-width: 45rem;
padding: 0 .5rem; padding: 0 0.5rem;
} }
/* Make the header bg full width, but the content inline with body */ /* Make the header bg full width, but the content inline with body */
header { header {
background: var(--accent-bg); background: var(--accent-bg);
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border);
padding: 1.5rem 15rem; padding: 1.5rem 15rem;
margin-bottom: 3rem; margin-bottom: 3rem;
} }
/* Reduces header padding on smaller screens */ /* Reduces header padding on smaller screens */
@media only screen and (max-width: 1200px) { @media only screen and (max-width: 1200px) {
header { header {
padding: 1rem; padding: 1rem;
} }
nav { nav {
text-align: center; text-align: center;
} }
} }
/* Remove margins for header text */ /* Remove margins for header text */
header h1, header h1,
header p { header p {
margin: 0; margin: 0;
} }
/* Fix header line height when title wraps */ /* Fix header line height when title wraps */
header h2 { header h2 {
text-align: center; text-align: center;
line-height: 1.1; line-height: 1.1;
} }
/* Format navigation */ /* Format navigation */
nav { nav {
font-size: 1rem; font-size: 1rem;
line-height: 2; line-height: 2;
padding: 1rem 0; padding: 1rem 0;
} }
nav a { nav a {
margin: 1rem 1rem 0 0; margin: 1rem 1rem 0 0;
border: 1px solid var(--border); border: 1px solid var(--border);
border-radius: 5px; border-radius: 5px;
color: var(--text) !important; color: var(--text) !important;
display: inline-block; display: inline-block;
padding: .1rem 1rem; padding: 0.1rem 1rem;
text-decoration: none; text-decoration: none;
transition: .4s; transition: 0.4s;
} }
nav a:hover { nav a:hover {
color: var(--accent) !important; color: var(--accent) !important;
border-color: var(--accent); border-color: var(--accent);
} }
nav a.current:hover { nav a.current:hover {
text-decoration: none; text-decoration: none;
} }
footer { footer {
margin-top: 4rem; margin-top: 4rem;
padding: 2rem 1rem 1.5rem 1rem; padding: 2rem 1rem 1.5rem 1rem;
color: var(--text-light); color: var(--text-light);
font-size: .9rem; font-size: 0.9rem;
text-align: center; text-align: center;
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
} }
/* Format headers */ /* Format headers */
h1 { h1 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale) * var(--header-scale)); font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem); margin-top: calc(var(--line-height) * 1.5rem);
} }
h2 { h2 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale)); font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem); margin-top: calc(var(--line-height) * 1.5rem);
} }
h3 { h3 {
font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale)); font-size: calc(var(--base-fontsize) * var(--header-scale) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem); margin-top: calc(var(--line-height) * 1.5rem);
} }
h4 { h4 {
font-size: calc(var(--base-fontsize) * var(--header-scale)); font-size: calc(var(--base-fontsize) * var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem); margin-top: calc(var(--line-height) * 1.5rem);
} }
h5 { h5 {
font-size: var(--base-fontsize); font-size: var(--base-fontsize);
margin-top: calc(var(--line-height) * 1.5rem); margin-top: calc(var(--line-height) * 1.5rem);
} }
h6 { h6 {
font-size: calc(var(--base-fontsize) / var(--header-scale)); font-size: calc(var(--base-fontsize) / var(--header-scale));
margin-top: calc(var(--line-height) * 1.5rem); margin-top: calc(var(--line-height) * 1.5rem);
} }
/* Format links & buttons */ /* Format links & buttons */
a, a,
a:visited { a:visited {
color: var(--accent); color: var(--accent);
} }
a:hover { a:hover {
text-decoration: none; text-decoration: none;
} }
a button, a button,
button, button,
input[type="submit"], input[type="submit"],
input[type="reset"], input[type="reset"],
input[type="button"] { input[type="button"] {
border: none; border: none;
border-radius: 5px; border-radius: 5px;
background: var(--accent); background: var(--accent);
font-size: 1rem; font-size: 1rem;
color: var(--bg); color: var(--bg);
padding: .7rem .9rem; padding: 0.7rem 0.9rem;
margin: .5rem 0; margin: 0.5rem 0;
transition: .4s; transition: 0.4s;
} }
a button[disabled], a button[disabled],
button[disabled], button[disabled],
input[type="submit"][disabled], input[type="submit"][disabled],
input[type="reset"][disabled], input[type="reset"][disabled],
input[type="button"][disabled] { input[type="button"][disabled] {
cursor: default; cursor: default;
opacity: .5; opacity: 0.5;
cursor: not-allowed; cursor: not-allowed;
} }
/* Set the cursor to '?' while hovering over an abbreviation */ /* Set the cursor to '?' while hovering over an abbreviation */
abbr { abbr {
cursor: help; cursor: help;
} }
button:focus, button:focus,
button:enabled:hover, button:enabled:hover,
input[type="submit"]:focus, input[type="submit"]:focus,
input[type="submit"]:enabled:hover, input[type="submit"]:enabled:hover,
input[type="reset"]:focus, input[type="reset"]:focus,
input[type="reset"]:enabled:hover, input[type="reset"]:enabled:hover,
input[type="button"]:focus, input[type="button"]:focus,
input[type="button"]:enabled:hover { input[type="button"]:enabled:hover {
opacity: .8; opacity: 0.8;
} }
/* Format the expanding box */ /* Format the expanding box */
details { details {
padding: .6rem 1rem; padding: 0.6rem 1rem;
background: var(--accent-bg); background: var(--accent-bg);
border: 1px solid var(--border); border: 1px solid var(--border);
border-radius: 5px; border-radius: 5px;
margin-bottom: 1rem; margin-bottom: 1rem;
} }
summary { summary {
cursor: pointer; cursor: pointer;
font-weight: bold;
}
details[open] {
padding-bottom: .75rem;
}
details[open] summary {
margin-bottom: .5rem;
}
details[open]>*:last-child {
margin-bottom: 0;
}
/* Format tables */
table {
border-collapse: collapse;
width: 100%
}
td,
th {
border: 1px solid var(--border);
text-align: left;
padding: .5rem;
}
th {
background: var(--accent-bg);
font-weight: bold; font-weight: bold;
} }
tr:nth-child(even) { details[open] {
/* Set every other cell slightly darker. Improves readability. */ padding-bottom: 0.75rem;
background: var(--accent-bg); }
}
table caption { details[open] summary {
font-weight: bold; margin-bottom: 0.5rem;
margin-bottom: .5rem; }
}
/* Lists */ details[open] > *:last-child {
ol, margin-bottom: 0;
ul { }
padding-left: 3rem;
}
/* Format forms */ /* Format tables */
textarea, table {
select, border-collapse: collapse;
input { width: 100%;
}
td,
th {
border: 1px solid var(--border);
text-align: left;
padding: 0.5rem;
}
th {
background: var(--accent-bg);
font-weight: bold;
}
tr:nth-child(even) {
/* Set every other cell slightly darker. Improves readability. */
background: var(--accent-bg);
}
table caption {
font-weight: bold;
margin-bottom: 0.5rem;
}
/* Lists */
ol,
ul {
padding-left: 3rem;
}
/* Format forms */
textarea,
select,
input {
font-size: inherit; font-size: inherit;
font-family: inherit; font-family: inherit;
padding: .5rem; padding: 0.5rem;
margin-bottom: .5rem; margin-bottom: 0.5rem;
color: var(--text); color: var(--text);
background: var(--bg); background: var(--bg);
border: 1px solid var(--border); border: 1px solid var(--border);
border-radius: 5px; border-radius: 5px;
box-shadow: none; box-shadow: none;
box-sizing: border-box; box-sizing: border-box;
width: 60%; width: 60%;
} }
/* Make the textarea wider than other inputs */ /* Make the textarea wider than other inputs */
textarea { textarea {
width: 80% width: 80%;
} }
/* Makes input fields wider on smaller screens */ /* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) { @media only screen and (max-width: 720px) {
textarea, textarea,
select, select,
input { input {
width: 100%; width: 100%;
} }
} }
/* Ensures the checkbox and radio inputs do not have a set width like other input fields */ /* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type="checkbox"], input[type="radio"]{ input[type="checkbox"],
input[type="radio"] {
width: auto; width: auto;
} }
/* do not show border around file selector button */ /* do not show border around file selector button */
input[type="file"] { input[type="file"] {
border: 0; border: 0;
} }
/* Without this any HTML using <fieldset> shows ugly borders and has additional padding/margin. (Issue #3) */ /* Without this any HTML using <fieldset> shows ugly borders and has additional padding/margin. (Issue #3) */
fieldset { fieldset {
border: 0; border: 0;
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
/* Misc body elements */ /* Misc body elements */
hr { hr {
color: var(--border); color: var(--border);
border-top: 1px; border-top: 1px;
margin: 1rem auto; margin: 1rem auto;
} }
mark { mark {
padding: 2px 5px; padding: 2px 5px;
border-radius: 4px; border-radius: 4px;
background: var(--marked); background: var(--marked);
} }
main img, main video { main img,
main video {
max-width: 100%; max-width: 100%;
border-radius: 5px; border-radius: 5px;
} }
figure { figure {
margin: 0; margin: 0;
} }
figcaption { figcaption {
font-size: .9rem; font-size: 0.9rem;
color: var(--text-light); color: var(--text-light);
text-align: center; text-align: center;
margin-bottom: 1rem; margin-bottom: 1rem;
} }
blockquote { blockquote {
margin: 2rem 0 2rem 2rem; margin: 2rem 0 2rem 2rem;
padding: .4rem .8rem; padding: 0.4rem 0.8rem;
border-left: .35rem solid var(--accent); border-left: 0.35rem solid var(--accent);
opacity: .8; opacity: 0.8;
font-style: italic; font-style: italic;
} }
cite { cite {
font-size: 0.9rem; font-size: 0.9rem;
color: var(--text-light); color: var(--text-light);
font-style: normal; font-style: normal;
} }
/* Use mono font for code like elements */ /* Use mono font for code like elements */
code, code,
pre, pre,
kbd, kbd,
samp { samp {
font-size: 1.075rem; font-size: 1.075rem;
font-family: var(--mono-font); font-family: var(--mono-font);
color: var(--code); color: var(--code);
} }
kbd { kbd {
color: var(--preformatted); color: var(--preformatted);
border: 1px solid var(--preformatted); border: 1px solid var(--preformatted);
border-bottom: 3px solid var(--preformatted); border-bottom: 3px solid var(--preformatted);
border-radius: 5px; border-radius: 5px;
padding: .1rem; padding: 0.1rem;
} }
pre { pre {
padding: 1rem 1.4rem; padding: 1rem 1.4rem;
max-width: 100%; max-width: 100%;
overflow: auto; overflow: auto;
color: var(--preformatted); color: var(--preformatted);
background: var(--accent-bg); background: var(--accent-bg);
border: 1px solid var(--border); border: 1px solid var(--border);
border-radius: 5px; border-radius: 5px;
} }
/* Fix embedded code within pre */ /* Fix embedded code within pre */
pre code { pre code {
color: var(--preformatted); color: var(--preformatted);
background: none; background: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
/* CSS for Openring */ /* CSS for Openring */
.webring { .webring {
margin-top: 2rem; margin-top: 2rem;
}
.wr-articles {
display: flex;
@media (max-width: 640px) {
flex-direction: column;
} }
}
.wr-articles { .wr-article {
display: flex; flex: 1 1 0;
display: flex;
flex-direction: column;
background: #323542;
padding: 0.5rem;
@media(max-width: 640px) { margin: 0 0.5rem;
flex-direction: column;
}
}
.wr-article { @media (max-width: 640px) {
flex: 1 1 0; margin: 0.5rem 0;
display: flex;
flex-direction: column;
background: #323542;
padding: 0.5rem;
margin: 0 0.5rem;
@media(max-width: 640px) {
margin: 0.5rem 0;
}
}
.wr-article:first-child {
margin-left: 0;
}
.wr-article:last-child {
margin-right: 0;
}
.wr-summary {
font-size: 0.8rem;
flex: 1 1 0;
color: rgb(235, 235, 235);
}
.wr-attribution {
float: right;
font-size: 0.8rem;
color: rgb(192, 191, 191);
line-height: 3;
}
.wr-date {
color: rgb(192, 191, 191);
}
.wr-source {
color: rgb(192, 191, 191);
} }
}
.wr-article:first-child {
margin-left: 0;
}
.wr-article:last-child {
margin-right: 0;
}
.wr-summary {
font-size: 0.8rem;
flex: 1 1 0;
color: rgb(235, 235, 235);
}
.wr-attribution {
float: right;
font-size: 0.8rem;
color: rgb(192, 191, 191);
line-height: 3;
}
.wr-date {
color: rgb(192, 191, 191);
}
.wr-source {
color: rgb(192, 191, 191);
}
.mastodon-comment {
background-color: var(--body-background);
border-radius: var(--card-border-radius);
padding: var(--card-padding);
margin-bottom: 1rem;
display: flex;
}
.mastodon-comment .content {
flex-grow: 2;
}
.mastodon-comment .avatar img {
margin-right: 1rem;
min-width: 60px;
}
.mastodon-comment .author {
padding-top: 0;
display: flex;
}
.mastodon-comment .author .date {
margin-left: auto;
}
.mastodon-comment .disabled {
color: var(--accent-color);
}
.mastodon-comment-content p:first-child {
margin-top: 0;
}

View File

@ -28,13 +28,12 @@
{{ end }} {{ end }}
</p> </p>
{{ partial "fedi-comments" . }}
<a href="#"><button class="top">Back to top</button></a>
<!--<a href="sc"><button class="top">Load comments (Mastodon)</button></a>-->
{{ if $.Site.Params.openring }} {{ if $.Site.Params.openring }}
{{ partial "openring-out" . -}} {{ partial "openring-out" . -}}
{{ end }} {{ end }}
<a href="#"><button class="top">Back to top</button></a>
{{ end }} {{ end }}

View File

@ -0,0 +1,74 @@
{{ with .Params.comments }}
<h3>Comments</h3>
<p>
You may <a class="link" href="https://{{ .host }}/@{{ .user }}/{{ .id }}" target="_blank">view</a>
or <a class="link" href="https://{{ .host }}/interact/{{ .id }}?type=reply" target="_blank">reply</a>
if you have an account anywhere in the Fediverse.
</p>
<p id="mastodon-comments-list"><button id="load-comment">Load comments</button></p>
<noscript>
<p>
You would need JavaScript to view comments here on this page.
However, you can still <a class="link" href="https://{{ .host }}/@{{ .user }}/{{ .id }}" target="_blank">view</a>
or <a class="link" href="https://{{ .host }}/interact/{{ .id }}?type=reply" target="_blank">reply</a>
if you have an account anywhere in the Fediverse.
</p>
</noscript>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/2.2.6/purify.min.js "></script>
<script type="text/javascript">
function escapeHtml(unsafe) {
return unsafe
.replace(/&/g, "&amp;")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;")
.replace(/'/g, "&#039;");
}
document.getElementById("load-comment").addEventListener("click", function() {
document.getElementById("load-comment").innerHTML = "Loading... 🚀";
fetch('https://{{ .host }}/api/v1/statuses/{{ .id }}/context')
.then(function(response) {
return response.json();
})
.then(function(data) {
if(data['descendants'] &&
Array.isArray(data['descendants']) &&
data['descendants'].length > 0) {
document.getElementById('mastodon-comments-list').innerHTML = "";
data['descendants'].forEach(function(reply) {
reply.account.display_name = escapeHtml(reply.account.display_name);
reply.account.emojis.forEach(emoji => {
reply.account.display_name = reply.account.display_name.replace(`:${emoji.shortcode}:`,
`<img src="${escapeHtml(emoji.static_url)}" alt="Emoji ${emoji.shortcode}" height="20" width="20" />`);
});
mastodonComment =
`<div class="mastodon-comment">
<div class="avatar">
<img src="${escapeHtml(reply.account.avatar_static)}" height=60 width=60 alt="">
</div>
<div class="content">
<div class="author">
<a href="${reply.account.url}" rel="nofollow">
<span>${reply.account.display_name}</span>
<span class="disabled">${escapeHtml(reply.account.acct)}</span>
</a>
<a class="date" href="${reply.uri}" rel="nofollow">
${reply.created_at.substr(0, 10)}
</a>
</div>
<div class="mastodon-comment-content">${reply.content}</div>
</div>
</div>`;
document.getElementById('mastodon-comments-list').appendChild(DOMPurify.sanitize(mastodonComment, {'RETURN_DOM_FRAGMENT': true}));
});
} else {
document.getElementById('mastodon-comments-list').innerHTML = "<p>No comments, add yours?</p>";
}
});
});
</script>
{{ end }}