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); const links = node.querySelectorAll('a'); for (var i = 0; i < links.length; ++i) { let link = links[i]; let mention = this.props.status.get('mentions').find(item => link.href === item.get('url')); if (mention) { link.addEventListener('click', this.onMentionClick.bind(this, mention), false); } else if (link.text[0] === '#' || (link.previousSibling && link.previousSibling.text === '#')) { link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false); } else { link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener'); } link.addEventListener('click', this.onNormalClick, false); } }, onMentionClick (mention, e) { if (e.button === 0) { e.preventDefault(); this.context.router.push(`/accounts/${mention.get('id')}`); } }, onHashtagClick (hashtag, e) { hashtag = hashtag.replace(/^#/, '').toLowerCase(); if (e.button === 0) { e.preventDefault(); this.context.router.push(`/statuses/tag/${hashtag}`); } }, onNormalClick (e) { e.stopPropagation(); }, render () { const content = { __html: this.props.status.get('content') }; return
; }, }); export default StatusContent;