var React = require('react') var Link = require('react-router').Link var Icon = require('icon.jsx') var UserID = require('userID.jsx') var GetIPFS = require('getipfs.jsx') var Comment = require('comment.jsx').Comment module.exports = function (boardsAPI) { return React.createClass({ getInitialState: function () { return { parent: false, api: false } }, componentDidMount: function () { boardsAPI.use(boards => { boards.getEventEmitter().on('init', err => { if (!err && this.isMounted()) { this.init(boards) } }) if (this.isMounted() && boards.isInit) { this.init(boards) } }) }, componentWillReceiveProps: function (nextProps) { if (this.props.params !== nextProps.params) { boardsAPI.use(boards => this.downloadComment(boards, nextProps)) } }, downloadComment: function (boards, props) { this.setState({ comment: false }) boards.downloadComment(props.params.commenthash, props.params.userid, props.params.boardname, (err, comment) => { if (err) { this.setState({ comment: { title: 'Error', text: err.Message || err.Error } }) } else { if (!comment.parent && comment.text) { // Redirect to post page this.props.history.push('/@' + this.props.params.userid + '/' + this.props.params.boardname + '/' + this.props.params.commenthash) } else { this.setState({ comment }) } } }) }, init: function (boards) { if (this.state.init) return this.setState({ api: true, boards, canReply: boards.isInit && !boards.limited }) this.downloadComment(boards, this.props) }, getContext: function () { if (this.props.params.userid) { if (this.props.params.boardname) { return
Comment by in #{this.props.params.boardname} to {this.props.params.posthash}
} else { return
Comment by
} } else return
You are viewing a single comment
}, showComment: function () { if (this.state.comment) { return } else { return

Finding content...

} }, render: function () { if (this.state.api) { return
{this.getContext()}
{this.showComment()}
} else { return } } }) }