Radio wave icon F1RUM

Un blog Hugo avec les commentaires de Mastodon

#logiciel

Inspiré par l’article de Carl, J’ai adapté sa solution pour intégrer les discussions Mastodon/Fediverse dans un site web statique en tant que système de commentaires.

Ici, je partage ce que j’ai fait dans mon thème Hugo.

nouveau fichier comments.html

themes/my_theme/layouts/partials/comments.html

{{ with .Params.comments }}
<div class="article-content">
  {{ $icon := index $.Site.Data.fontawesome.icons "comments" }}
  {{ $svg := $icon.svg.solid | default $icon.svg.regular | default $icon.svg.brands }}
  <h2><span class="icons">{{ safeHTML $svg.raw }}</span> {{ i18n "Comments" . }}</h2>
  <p>
    {{ i18n "Use_fediverse_account" . | safeHTML }}
  </p>
  <p id="mastodon-comments-list"><button id="load-comment">{{ i18n "Load_comments" . }}</button></p>
  <noscript><p>You need JavaScript to view the comments.</p></noscript>
  <script src="/js/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" />`);
                });
                reply.media_previews='';
                if(typeof reply.media_attachments !== "undefined") {
                  reply.media_attachments.forEach(media => {
                    if(typeof media.preview_url !== "undefined" && typeof media.type !== "undefined" && media.type=="image")
                      reply.media_previews+='<img src="'+media.preview_url+'" /> ';
                  });
                }
                mastodonComment =
                  `<div class="mastodon-container" id="${reply.id}">
                   <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 class="date" href="${reply.uri}" rel="nofollow">
                           ${reply.created_at.substr(0, 10)} ${reply.created_at.substr(11, 5)} ${reply.created_at.substr(-1)}
                         </a>
                         <a href="${reply.account.url}" rel="nofollow">
                           <span>${reply.account.display_name}</span>
                           <span class="disabled">/ @${escapeHtml(reply.account.acct)}</span>
                         </a>
                       </div>
                       <div class="mastodon-comment-content">${reply.content}</div> 
                       <div class="mastodon-comment-media">${reply.media_previews}</div> 
                     </div>
                   </div>
                   </div>`;
                reply_to_id = reply.in_reply_to_id;
                parentComment = document.getElementById(reply_to_id);
                if(parentComment !== null)
                  parentComment.appendChild(DOMPurify.sanitize(mastodonComment, {'RETURN_DOM_FRAGMENT': true}));
                else
                  document.getElementById('mastodon-comments-list').appendChild(DOMPurify.sanitize(mastodonComment, {'RETURN_DOM_FRAGMENT': true}));
              });
          } else {
            document.getElementById('mastodon-comments-list').innerHTML = "<p>{{ i18n "No_comment" . }}</p>";
          }
        });
      });
  </script>
</div>
{{ end }}

nouvelles traductions

themes/my_theme/i18n/fr.toml

[Comments]
  other = "Commentaires"
[Use_fediverse_account]
  other = 'Vous pouvez utilisez votre compte Mastodon ou Fediverse pour <strong><a class="button" href="https://{{ .host }}/interact/{{ .id }}?type=reply">répondre</a></strong> à ce <strong><a class="link" href="https://{{ .host }}/@{{ .username }}/{{ .id }}">pouet !</a></strong>'
[Load_comments]
  other = "Charger les commentaires"
[No_comment]
  other = "Pas encore de commentaire, soyez le premier à réagir !"

ajout du bloc de commentaires près de la fin du modèle

themes/my_theme/layouts/_default/single.html

  </header>
  {{ .Content }}

  {{ partial "comments.html" . }}
</article>

{{ end }}

ajout d’une bibliothèque de purification du contenu

Télécharger DOMPurify lib purify.min.js vers themes/my_theme/static/js/purify.min.js

Cette bibliothèque est sous licence Apache license 2.0 et Mozilla Public License 2.0

un peu de css à mettre dans les fichiers css existants de votre thème

themes/my_theme/static/css/quelquechose.css


.mastodon-container {
  margin-left: 1rem;
}

.mastodon-comment {
  border: 1px solid #999;
  border-radius: 6px;
  margin: 0.5rem 0;
  display: flex;
  padding: 0.5rem 1rem;
}

.mastodon-comment .avatar img {
  margin-right: 1rem;
  min-width: 60px;
}

.mastodon-comment .content {
  width: 100%;
}

.mastodon-comment .date {
  float: right;
}

.mastodon-comment .ellipsis::after {
  content: "\2026";
}

.mastodon-comment .invisible {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  width: 0;
  height: 0;
}

Il vous suffit ensuite d’ajouter le détail du pouet d’annonce, dans l’en-tête de votre article markdown

---
title: "Un blog Hugo avec les commentaires de Mastodon"
date: "2022-06-29"
tags: [logiciel]
draft: false
comments:
  host: mastodon.radio
  username: F1RUM
  id: 108562797715787695
---

Commentaires

Vous pouvez utilisez votre compte Mastodon ou Fediverse pour répondre à ce pouet !