mirror of
https://github.com/fazo96/ipfs-boards
synced 2025-01-10 12:24:20 +01:00
70 lines
2.7 KiB
JavaScript
70 lines
2.7 KiB
JavaScript
var React = require('react')
|
|
var Markdown = require('markdown.jsx')
|
|
var UserID = require('userID.jsx')
|
|
var PostList = require('postlist.jsx')
|
|
var GetIPFS = require('getipfs.jsx')
|
|
|
|
module.exports = function (boardsAPI) {
|
|
return React.createClass({
|
|
getInitialState: function () {
|
|
return { name: this.props.params.boardname, api: false, whitelist: [] }
|
|
},
|
|
componentDidMount: function () {
|
|
boardsAPI.use(boards => {
|
|
/*
|
|
When a component inside the component being rendered by the router also needs
|
|
access to the boards api, it appears unitialized and never initializes to it
|
|
for no apparent reason. Calling init twice (one automgically and one
|
|
when the root component mounts) works as a cheap, horrible workaround
|
|
*/
|
|
boards.init()
|
|
if (!this.isMounted()) return
|
|
var ee = boards.getEventEmitter()
|
|
ee.on('init', err => {
|
|
if (!err && this.isMounted()) {
|
|
this.init(boards)
|
|
}
|
|
})
|
|
if (this.props.params.userid) {
|
|
ee.on('whitelist for ' + this.props.params.boardname + '@' + this.props.params.userid, (whitelist) => {
|
|
if (this.isMounted()) {
|
|
this.setState({ whitelist })
|
|
} else return true
|
|
})
|
|
ee.on('settings for ' + this.props.params.boardname + '@' + this.props.params.userid, (res) => {
|
|
if (!this.isMounted()) return true
|
|
if (res) this.setState({ name: res.fullname, description: res.description })
|
|
})
|
|
} else {
|
|
this.setState({ description: 'All the messages posted in __#' + this.props.params.boardname + '__' })
|
|
}
|
|
if (boards.isInit || this.state.api) {
|
|
this.init(boards)
|
|
}
|
|
})
|
|
},
|
|
init: function (boards) {
|
|
if (!this.state.init) {
|
|
if (this.props.params.userid) {
|
|
boards.getBoardSettings(this.props.params.userid, this.props.params.boardname)
|
|
}
|
|
this.setState({ init: true, api: true, boards: boards })
|
|
}
|
|
},
|
|
render: function () {
|
|
if (this.state.api) {
|
|
return (<div className="board">
|
|
<h2>{this.state.name}</h2>
|
|
<Markdown source={this.state.description} skipHtml={true} />
|
|
{this.props.params.userid ? <h5><UserID id={this.props.params.userid} api={this.state.boards} /></h5> : <p></p>}
|
|
<div className="whitelist">
|
|
{this.state.whitelist.map(i => <UserID id={i} key={i} api={this.state.boards} />)}
|
|
</div>
|
|
<hr />
|
|
<PostList board={this.props.params.boardname} admin={this.props.params.userid} api={this.state.boards} />
|
|
</div>)
|
|
} else return <GetIPFS api={this.state.boards} />
|
|
}
|
|
})
|
|
}
|