2016-09-21 23:32:27 +01:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-08 20:45:51 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-11-15 17:38:57 +00:00
|
|
|
import emojify from '../emoji';
|
2016-09-21 23:32:27 +01:00
|
|
|
|
|
|
|
const StatusContent = React.createClass({
|
|
|
|
|
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
|
|
|
propTypes: {
|
2016-11-10 22:21:24 +00:00
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onClick: React.PropTypes.func
|
2016-09-21 23:32:27 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
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:54:19 +00:00
|
|
|
} else if (link.textContent[0] === '#' || (link.previousSibling && link.previousSibling.textContent && link.previousSibling.textContent[link.previousSibling.textContent.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();
|
2016-11-13 13:01:21 +00:00
|
|
|
this.context.router.push(`/timelines/tag/${hashtag}`);
|
2016-11-05 14:20:05 +00:00
|
|
|
}
|
2016-09-21 23:32:27 +01:00
|
|
|
},
|
|
|
|
|
2016-09-23 19:23:26 +01:00
|
|
|
onNormalClick (e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
},
|
|
|
|
|
2017-01-24 16:05:44 +00:00
|
|
|
handleMouseDown (e) {
|
|
|
|
this.startXY = [e.clientX, e.clientY];
|
|
|
|
},
|
|
|
|
|
|
|
|
handleMouseUp (e) {
|
|
|
|
const [ startX, startY ] = this.startXY;
|
|
|
|
const [ deltaX, deltaY ] = [Math.abs(e.clientX - startX), Math.abs(e.clientY - startY)];
|
|
|
|
|
|
|
|
if (deltaX + deltaY < 5) {
|
|
|
|
this.props.onClick();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.startXY = null;
|
|
|
|
},
|
|
|
|
|
2016-09-21 23:32:27 +01:00
|
|
|
render () {
|
2017-01-24 16:05:44 +00:00
|
|
|
const { status } = this.props;
|
2016-11-30 15:10:19 +00:00
|
|
|
|
2016-12-11 22:08:46 +00:00
|
|
|
const content = { __html: emojify(status.get('content')) };
|
2016-11-30 15:10:19 +00:00
|
|
|
|
2017-01-24 16:05:44 +00:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className='status__content'
|
|
|
|
style={{ cursor: 'pointer' }}
|
|
|
|
dangerouslySetInnerHTML={content}
|
|
|
|
onMouseDown={this.handleMouseDown}
|
|
|
|
onMouseUp={this.handleMouseUp}
|
|
|
|
/>
|
|
|
|
);
|
2016-09-21 23:32:27 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default StatusContent;
|