@cyberhck/react-disqus-comments

React Disqus thread component

Usage no npm install needed!

<script type="module">
  import cyberhckReactDisqusComments from 'https://cdn.skypack.dev/@cyberhck/react-disqus-comments';
</script>

README

react-disqus-comments

This is a fork

Forked from the popular package by mzabriskie, but with a few fixes.

Installing

$ npm install react-disqus-comments

Example

var React = require('react');
var ReactDisqusComments = require('react-disqus-comments');

var App = createClass({
    
    handleNewComment: function(comment) {
        console.log(comment.text);
    }

    render: function () {
        return (
            <ReactDisqusComments
                shortname="example"
                identifier="something-unique-12345"
                title="Example Thread"
                url="http://www.example.com/example-thread"
                category_id="123456"
                onNewComment={this.handleNewComment}/>
        );
    }
});

React.render(<App/>, document.getElementById('container'));

License

MIT