2016-09-21 23:32:27 +01:00
|
|
|
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 () {
|
2016-09-23 19:23:26 +01:00
|
|
|
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) {
|
2016-10-14 00:03:12 +01:00
|
|
|
link.addEventListener('click', this.onMentionClick.bind(this, mention), false);
|
2016-11-05 16:48:53 +00:00
|
|
|
} else if (link.text[0] === '#' || (link.previousSibling && link.previousSibling.text && link.previousSibling.text[link.previousSibling.text.length - 1] === '#')) {
|
2016-11-05 14:20:05 +00:00
|
|
|
link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false);
|
2016-09-23 19:23:26 +01:00
|
|
|
} else {
|
|
|
|
link.setAttribute('target', '_blank');
|
|
|
|
link.setAttribute('rel', 'noopener');
|
|
|
|
}
|
2016-11-05 14:20:05 +00:00
|
|
|
|
|
|
|
link.addEventListener('click', this.onNormalClick, false);
|
2016-09-23 19:23:26 +01:00
|
|
|
}
|
2016-09-21 23:32:27 +01:00
|
|
|
},
|
|
|
|
|
2016-09-23 19:23:26 +01:00
|
|
|
onMentionClick (mention, e) {
|
2016-09-21 23:32:27 +01:00
|
|
|
if (e.button === 0) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.context.router.push(`/accounts/${mention.get('id')}`);
|
|
|
|
}
|
2016-11-05 14:20:05 +00:00
|
|
|
},
|
2016-10-03 17:17:06 +01:00
|
|
|
|
2016-11-05 14:20:05 +00:00
|
|
|
onHashtagClick (hashtag, e) {
|
|
|
|
hashtag = hashtag.replace(/^#/, '').toLowerCase();
|
|
|
|
|
|
|
|
if (e.button === 0) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.context.router.push(`/statuses/tag/${hashtag}`);
|
|
|
|
}
|
2016-09-21 23:32:27 +01:00
|
|
|
},
|
|
|
|
|
2016-09-23 19:23:26 +01:00
|
|
|
onNormalClick (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
},
|
|
|
|
|
2016-09-21 23:32:27 +01:00
|
|
|
render () {
|
|
|
|
const content = { __html: this.props.status.get('content') };
|
|
|
|
return <div className='status__content' dangerouslySetInnerHTML={content} />;
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default StatusContent;
|