about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/status_content.jsx
blob: 98d914514b237fa1aba9ffaba9ae82bedb3e22c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import ImmutablePropTypes from 'react-immutable-proptypes';
import PureRenderMixin    from 'react-addons-pure-render-mixin';

const StatusContent = React.createClass({

  contextTypes: {
    router: React.PropTypes.object
  },

  propTypes: {
    status: ImmutablePropTypes.map.isRequired
  },

  mixins: [PureRenderMixin],

  componentDidMount () {
    const node = ReactDOM.findDOMNode(this);

    this.props.status.get('mentions').forEach(mention => {
      const links = node.querySelector(`a[href="${mention.get('url')}"]`);
      links.addEventListener('click', this.onLinkClick.bind(this, mention));
    });
  },

  onLinkClick (mention, e) {
    if (e.button === 0) {
      e.preventDefault();
      this.context.router.push(`/accounts/${mention.get('id')}`);
    }
    
    e.stopPropagation();
  },

  render () {
    const content = { __html: this.props.status.get('content') };
    return <div className='status__content' dangerouslySetInnerHTML={content} />;
  },

});

export default StatusContent;