2016-09-22 00:32:27 +02:00
|
|
|
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';
|
2016-09-22 00:32:27 +02:00
|
|
|
|
|
|
|
const StatusContent = React.createClass({
|
|
|
|
|
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
|
|
|
propTypes: {
|
2016-11-10 23:21:24 +01:00
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onClick: React.PropTypes.func
|
2016-09-22 00:32:27 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
componentDidMount () {
|
2016-09-23 20:23:26 +02:00
|
|
|
const node = ReactDOM.findDOMNode(this);
|
|
|
|
const links = node.querySelectorAll('a');
|
2017-01-13 05:54:26 +01:00
|
|
|
const spoilers = node.querySelectorAll('.spoiler');
|
|
|
|
|
|
|
|
for (var i = 0; i < spoilers.length; ++i) {
|
|
|
|
let spoiler = spoilers[i];
|
|
|
|
spoiler.addEventListener('click', this.onSpoilerClick.bind(this, spoiler), true);
|
|
|
|
}
|
2016-09-23 20:23:26 +02:00
|
|
|
|
|
|
|
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 01:03:12 +02:00
|
|
|
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);
|
2016-09-23 20:23:26 +02:00
|
|
|
} else {
|
|
|
|
link.setAttribute('target', '_blank');
|
|
|
|
link.setAttribute('rel', 'noopener');
|
|
|
|
}
|
|
|
|
}
|
2016-09-22 00:32:27 +02:00
|
|
|
},
|
|
|
|
|
2016-09-23 20:23:26 +02:00
|
|
|
onMentionClick (mention, e) {
|
2016-09-22 00:32:27 +02:00
|
|
|
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();
|
2016-11-13 14:01:21 +01:00
|
|
|
this.context.router.push(`/timelines/tag/${hashtag}`);
|
2016-11-05 15:20:05 +01:00
|
|
|
}
|
2016-09-22 00:32:27 +02:00
|
|
|
},
|
|
|
|
|
2017-01-13 05:54:26 +01:00
|
|
|
onSpoilerClick (spoiler, e) {
|
|
|
|
if (e.button === 0) {
|
|
|
|
//only toggle if we're not clicking a visible link
|
|
|
|
var hasClass = $(spoiler).hasClass('spoiler-on');
|
|
|
|
if (hasClass || e.target === spoiler) {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
$(spoiler).siblings(".spoiler").andSelf().toggleClass('spoiler-on', !hasClass);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-01-24 17:05:44 +01: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)];
|
|
|
|
|
2017-01-24 18:51:09 +01:00
|
|
|
if (e.target.localName === 'a' || (e.target.parentNode && e.target.parentNode.localName === 'a')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-24 17:05:44 +01:00
|
|
|
if (deltaX + deltaY < 5) {
|
|
|
|
this.props.onClick();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.startXY = null;
|
2016-09-23 20:23:26 +02:00
|
|
|
},
|
|
|
|
|
2016-09-22 00:32:27 +02:00
|
|
|
render () {
|
2017-01-24 17:05:44 +01:00
|
|
|
const { status } = this.props;
|
2016-11-30 16:10:19 +01:00
|
|
|
|
2016-12-11 23:08:46 +01:00
|
|
|
const content = { __html: emojify(status.get('content')) };
|
2016-11-30 16:10:19 +01:00
|
|
|
|
2017-01-24 17:05:44 +01:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className='status__content'
|
|
|
|
style={{ cursor: 'pointer' }}
|
|
|
|
dangerouslySetInnerHTML={content}
|
|
|
|
onMouseDown={this.handleMouseDown}
|
|
|
|
onMouseUp={this.handleMouseUp}
|
|
|
|
/>
|
|
|
|
);
|
2016-09-22 00:32:27 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default StatusContent;
|