Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 17, 2021 06:03 pm GMT

How to add comments to your Gatsby blog

Does your Gatsby blog have a commenting system set up? If not, you could be missing out! Comments help drive engagement by giving your readers an avenue to ask you questions and add useful information to your blog posts.

Gatsby doesnt provide comments out of the box, but Ill be showing you how easy it is to get started with two separate commenting systems - utterances and GraphComment.

Add comments to your Gatsby blog with utterances

How does utterances work?

utterances is a commenting system built on top of Github. Users will have to authenticate with their Github account before they can leave a comment on your site:

User leaving comment on blog with utterances.

This will create a new issue in a Github repo of your choice, and the comment will appear there.

Same comment as blog, but in a Github issue

If another comment is left on the same page, a comment will be added to that same Github issue.

This integration with Github makes utterances a good choice if you're running a blog that is mainly read by other developers (since they will most likely have Github accounts).

Setting up utterances

You can follow the set-up steps from the utterances documentation. Namely:

  1. Make a new public repository on Github for your comments.
  2. Go to the utterances Github app, and install it on that repository.

Add a comments component to your Gatsby blog

Youll be given a script to add to your site that looks like this:

<script src="https://utteranc.es/client.js"     repo="[emgoto/emgoto-comments]"     issue-term="pathname"     theme="github-light"     crossorigin="anonymous"     async></script>

Since were using React, we wont be able to just plop this script in. Instead, make a React component called Comments:

// src/components/comments.jsimport React, { useEffect } from 'react';const COMMENTS_ID = 'comments-container';const Comments = () => {    useEffect(() => {        const script = document.createElement('script');        script.src = 'https://utteranc.es/client.js';        script.setAttribute('repo', 'emgoto/emgoto-comments');        script.setAttribute('issue-term', 'pathname');        script.setAttribute('theme', 'dark-blue');        script.setAttribute('crossorigin', 'anonymous');        script.async = true;        const comments = document.getElementById(COMMENTS_ID);        if (comments) comments.appendChild(script);        // This function will get called when the component unmounts        // To make sure we don't end up with multiple instances of the comments component        return () => {            const comments = document.getElementById(COMMENTS_ID);            if (comments) comments.innerHTML = '';        };    }, []);    return (        <div id={COMMENTS_ID} />    );};export default Comments;

You can just copy-paste the code above, but make sure to change the repo line to your own comments repository.

After that, you can drop your new component into wherever you render your blog posts. I have a template file that is rendered on each blog post page, so I put mine at the bottom of that file:

// src/templates/blog-post.jsconst BlogPost = () => (    <>        // Code to render blog post content        <Comments />    </>);

And you're done! If you're reading this post on my website, you can scroll down to the bottom to view this component in action.

Theming and styling utterances

utterances provides 7 different colour schemes, including both dark mode and light mode options. You can try out all the options for yourself on the documentation page.

GIF rotating through all the different utterances color schemes

Since utterances renders in a iframe, you cant add your own CSS to modify the colour schemes. So youll have to choose one of the available options. If you really want to stick to your blogs colour scheme, you could also try raising a PR to add a new theme.

The iframe will be wrapped a div with the .utterances class name, so it is possible to make some positioning modifications there. utterances has some built-in margins and padding on their comments component, so if you wanted to remove that, you can do something like this:

.utterances {    margin: -16px 0;    padding: 0 -4px;}

Add comments to Gatsby with GraphComment

GraphComment works similarly to other comment systems like Disqus. They host the comments for you, and allow users to create an account with a username and avatar on their platform. They provide a free tier for up to 1 million data loads a month.

User leaving comment on blog, with GraphComment UI

Anonymous users also have the ability to leave comments. In your GraphComment settings, you can choose whether these anonymous comments are immediately published, or to hold off until you approve them first.

Comment left by anonymous user

Setting up GraphComment

After signing up for a GraphComment account, you'll need to add your site on the admin page.

GraphComment will then give you a script like this:

<div id="graphcomment"></div><script type="text/javascript">  window.gc_params = {    graphcomment_id: 'emgoto',    fixed_header_height: 0,  };  (function() {    var gc = document.createElement('script'); gc.type = 'text/javascript'; gc.async = true;    gc.src = 'https://graphcomment.com/js/integration.js?' + Date.now());    (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(gc);  })();</script>

Since were using React, well need to convert this into a React component:

import React, { useEffect } from 'react';const COMMENTS_ID = 'graphcomment';const Comments = () => {    useEffect(() => {        window.gc_params = {            graphcomment_id: 'emgoto',            fixed_header_height: 0,          };        const script = document.createElement('script');        script.src = 'https://graphcomment.com/js/integration.js?' + Date.now();        script.async = true;        const comments = document.getElementById(COMMENTS_ID);        if (comments) comments.appendChild(script);        // This function will get called when the component unmounts        // To make sure we don't end up with multiple instances of the comments component        return () => {            const comments = document.getElementById(COMMENTS_ID);            if (comments) comments.innerHTML = '';        };    }, []);    return <div id={COMMENTS_ID} />};export default Comments;

Make sure to change graphcomment_id to the ID you used when you added your site.

Then you can drop in this new <Comments /> component wherever you want to render it.

Theming and styling GraphComment

In my opinion the UI for GraphComment isnt as nice as utterances (which re-uses Github UI) but considering its a free service, I cant complain too much!

GraphComment is smart enough to detect whether your site is in light mode or dark mode and render accordingly. You can also choose a theme colour:

All this really does is choose the accent colour that renders on the page (in the below screenshot, it's blue).

Beyond this, there are no customisation options available.

Add a unit test for your comments component

After you've set up utterances or GraphComment, make sure to add a unit test to make sure that the script is rendering on the page:

//src/components/comments.test.jsimport React from 'react';import { render } from '@testing-library/react';import Comments from './index';describe('Comments component', () => {    test('should render comments script', () => {        const { container } = render(<Comments />);        const script = container.querySelector(            // choose one of the following lines below            // 'script[src="https://utteranc.es/client.js"]',            // 'script[src^="https://graphcomment.com/js/integration.js"]',        );        expect(script).toBeTruthy();    });});

Utterances vs Disqus (and other competitors)

Disqus is the most well-known commenting system and is used across many sites. However it has had some controversies in the past with affiliate links and injecting advertising code. For that reason, I decided to give Disqus a miss and see what other solutions were out there.

utterances lets readers leave comments using a Github account, so its a great solution if you run a developer-targeted blog. For other types of blogs, GraphComment is the only option I found that provides a free tier (excluding Disqus).

If you dont mind paying, it may be worth taking a look at other options like Commento or FastComments. Unfortunately there doesn't seem to be anything on the market that lets you heavily customise the design to suit your needs. The closest may be Hyvor which does provide a wide variety of appearance settings. Their system starts at $5 a month for 100k monthly pageviews.

Conclusion

Setting up comments on your Gatsby blog is a hassle-free experience with both utterances and GraphComment. utterances is a great option for developer blogs, while GraphComment does provide more features (like auto-moderation and keyword filtering) however this does come at the cost of a slightly less slick UI.

The biggest downside with both options is that you are limited to the provided colour schemes and design, and so the comments component may look slightly off compared to the rest of your site.


Original Link: https://dev.to/emma/how-to-add-comments-to-your-gatsby-blog-ljc

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To