beavyHQ/beavy

View on GitHub
beavy_modules/comments/frontend/views/Comment.jsx

Summary

Maintainability
B
4 hrs
Test Coverage
import React, { Component, PropTypes } from 'react'
import { connect } from 'react-redux'
import { getStoreEntity } from 'utils'
import LoadEditor from 'components/Editor'
import { FormattedMessage } from 'react-intl'

class WriteReply extends React.Component {
  constructor (props) {
    super()
    this.state = {
      editing: false,
      editor: null
    }
    this.options = {
      docFormat: 'html',
      menuBar: false,
      inlineMenu: true,
      buttonMenu: true
    }
    LoadEditor.then(x => this.setState({editor: x}))
  }

  render () {
    if (this.state.editing) {
      if (!this.state.editor) {
        return <FormattedMessage id='loading' defaultMessage='loading...' />
      }
      const Editor = this.state.editor
      return (
        <div>
          <FormattedMessage tag='h3' id='reply' />
          <Editor value={''} options={this.options} ref='editor'/>
          <button onClick={::this.send}>
            <FormattedMessage id='send' defaultMessage='send' />
          </button>
        </div>
      )
    }
    return (
      <div>
        <FormattedMessage tag='h3' id='reply' />
        <div onClick={x => this.setState({editing: true})}>
          <FormattedMessage id='activate-for-reply=' defaultMessage='click to reply='/>
        </div>
     </div>
   )
  }
  send () {
    alert(this.refs.editor.pm.getContent('markdown'))
  }
}

class PrivateMessageView extends Component {

  static propTypes = {
    dispatch: PropTypes.func,
    message: PropTypes.object.isRequired
  }

  render () {
    const { message } = this.props

    return <div>
            <span>{message.created_at}</span>
            <h2>{message.title}</h2>
            <WriteReply />
          </div>
  }
}

function mapStateToProps (state, ownProps) {
  const { commentId } = ownProps.params
  const message = getStoreEntity(state, {id: commentId, type: 'comment'})

  return { message }
}

export default connect(
  mapStateToProps
)(PrivateMessageView)