import React, { Component } from 'react'; import ReactDisqusComments from 'react-disqus-comments'; class Disqus extends Component { constructor(props) { super(props); this.state = { toasts: [] }; this.notifyAboutComment = this.notifyAboutComment.bind(this); this.onSnackbarDismiss = this.onSnackbarDismiss.bind(this); } onSnackbarDismiss() { const [, ...toasts] = this.state.toasts; this.setState({ toasts }); } notifyAboutComment() { const toasts = this.state.toasts.slice(); toasts.push({ text: 'New comment available!!' }); this.setState({ toasts }); } render() { const { postNode, siteMetadata } = this.props; if (!siteMetadata.disqusShortname) { return null; } const post = postNode.frontmatter; const url = siteMetadata.url + postNode.fields.slug; return ( ); } } export default Disqus;