supercomments

2.0.2 • Public • Published

Supercomments

Reddit comment threads without leaving your blog or website!

Screenshot

Don't you hate it when your blog post gets dozens of comments on Reddit but none on your own site? Supercomments lets you embed Reddit comment threads directly on your blog or website so the visitors don't have to go elsewhere to participate in the conversation. With Supercomments, you can do pretty much anything you can do on Reddit: post new comments, reply to existing comments, upvote, downvote and sort by date or relevance.

Supercomments is designed as an extension to the excellent Disqus commenting system. As such, visitors will be able to access both Disqus and Reddit comment threads in separate tabs using the same user interface. This means you even get features of Disqus that Reddit doesn't offer, like collapsing part of the discussion thread.

Installing

Create a Disqus site

Sign up for Disqus if you don't already have an account, then create a new site. You can skip this step if you already have Disqus on your site and just want to extend it to support Reddit threads using Supercomments.

Get your Reddit API key

Log into Reddit and go to the app preferences page. Create a new app, selecting the "installed app" type. Fill in whatever you want for name. For the redirect URI, you can use the URL of any site you control, since you will just be dropping in a short script to handle the OAuth redirect (see next section). For example, you could use the root URL of your website. Save the app and note down the consumer key (displayed under the app's name and "installed app" in the list of apps on your prefs page).

Set up the OAuth redirect script

Put the following code in the <head> of your website root or some other page that you control:

    <script type="text/javascript">
      var code = window.location.href.match(/.*#access_token=(.[^&]+)/);
      var csrf = window.location.href.match(/.*&state=(.[^&]+)/);
      var expires = window.location.href.match(/.*&expires_in=(.[^&]+)/);
      if (code && csrf) {
        window.opener.postMessage({ type: 'RedditAuthenticated', token: code[1], state: csrf[1], expires: expires[1] }, '*');
        window.close();
      }
    </script>

Make sure you set the redirect URI of your Reddit app accordingly (see previous section). This code lets you use your page as the redirect URI for OAuth by detecting when the Reddit authorization page redirects to your site (which is done in a popup window), then posting the relevant information (access token and CSRF state) to the Supercomments frame and closing the popup.

Upload the Supercomments script

Put the dist/supercomments-embed.min.js file somewhere on your web server. This is the only file you need to run Supercomments.

Add the Supercomments script

Add the following code to your blog or site template in the place you want Supercomments to appear (replacing the Disqus code if you have it installed already):

    <script>
      var supercommentsConfig = {
        url: window.location.href,
        reddit: {
          consumerKey: [your_reddit_consumer_key],
          redirectUri: [your_website_url]
        },
        disqus: {
          identifier: [your_disqus_id_(optional)],
          shortName: [your_disqus_shortname]
        }
      };
    </script>
    <div id="supercomments"></div>
    <script src="../js/supercomments-embed.min.js"></script>

Obviously you should replace the path to supercomments-embed.min.js with the path pointing to the file on your server.

If you don't know how to get your Disqus identifier, you should be okay omitting it since Disqus will use the URL of the post to identify it in this case.

Using Supercomments as React Component

  1. Install the supercomments using npm - npm install supercomments --save
  2. Use the Component:
import React from 'react';
import { render } from 'react-dom';
import Supercomments from './Supercomments';
 
render(
  <Supercomments
    url={window.supercommentsConfig.url}
    reddit={window.supercommentsConfig.reddit}
    disqus={window.supercommentsConfig.disqus}
  />,
  document.getElementById('supercomments')
);
 

Building

If you want to build your own version of Supercomments, just pull the repository, run npm install. This will create the supercomments-embed.min.js file in dist.

Readme

Keywords

none

Package Sidebar

Install

npm i supercomments

Weekly Downloads

0

Version

2.0.2

License

MIT

Last publish

Collaborators

  • tomkis