mastodon/app/assets/javascripts/components/components/status_content.jsx

70 lines
2.0 KiB
React
Raw Normal View History

import ImmutablePropTypes from 'react-immutable-proptypes';
2016-11-08 21:45:51 +01:00
import PureRenderMixin from 'react-addons-pure-render-mixin';
2016-11-15 18:38:57 +01:00
import emojify from '../emoji';
const StatusContent = React.createClass({
contextTypes: {
router: React.PropTypes.object
},
propTypes: {
status: ImmutablePropTypes.map.isRequired,
onClick: React.PropTypes.func
},
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);
2016-11-05 17:54:19 +01:00
} else if (link.textContent[0] === '#' || (link.previousSibling && link.previousSibling.textContent && link.previousSibling.textContent[link.previousSibling.textContent.length - 1] === '#')) {
2016-11-05 15:20:05 +01:00
link.addEventListener('click', this.onHashtagClick.bind(this, link.text), false);
} else {
link.setAttribute('target', '_blank');
link.setAttribute('rel', 'noopener');
}
2016-11-05 15:20:05 +01:00
link.addEventListener('click', this.onNormalClick, false);
}
},
onMentionClick (mention, e) {
if (e.button === 0) {
e.preventDefault();
this.context.router.push(`/accounts/${mention.get('id')}`);
}
2016-11-05 15:20:05 +01:00
},
2016-10-03 18:17:06 +02:00
2016-11-05 15:20:05 +01:00
onHashtagClick (hashtag, e) {
hashtag = hashtag.replace(/^#/, '').toLowerCase();
if (e.button === 0) {
e.preventDefault();
this.context.router.push(`/timelines/tag/${hashtag}`);
2016-11-05 15:20:05 +01:00
}
},
onNormalClick (e) {
e.stopPropagation();
},
render () {
2016-11-30 16:10:19 +01:00
const { status, onClick } = this.props;
const content = { __html: emojify(status.get('content')) };
2016-11-30 16:10:19 +01:00
return <div className='status__content' style={{ cursor: 'pointer' }} dangerouslySetInnerHTML={content} onClick={onClick} />;
},
});
export default StatusContent;