2016-08-24 15:56:44 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-16 16:20:52 +00:00
|
|
|
import Avatar from './avatar';
|
|
|
|
import RelativeTimestamp from './relative_timestamp';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import DisplayName from './display_name';
|
|
|
|
import MediaGallery from './media_gallery';
|
|
|
|
import VideoPlayer from './video_player';
|
|
|
|
import StatusContent from './status_content';
|
|
|
|
import StatusActionBar from './status_action_bar';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-11-18 23:28:42 +00:00
|
|
|
import emojify from '../emoji';
|
|
|
|
import escapeTextContentForBrowser from 'react/lib/escapeTextContentForBrowser';
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
const outerStyle = {
|
|
|
|
padding: '8px 10px',
|
|
|
|
paddingLeft: '68px',
|
|
|
|
position: 'relative',
|
|
|
|
minHeight: '48px',
|
|
|
|
borderBottom: '1px solid #363c4b',
|
|
|
|
cursor: 'default'
|
|
|
|
};
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
const Status = React.createClass({
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2016-09-21 22:32:27 +00:00
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
propTypes: {
|
2016-10-30 14:06:43 +00:00
|
|
|
status: ImmutablePropTypes.map,
|
2016-09-13 00:24:40 +00:00
|
|
|
wrapped: React.PropTypes.bool,
|
2016-09-01 11:21:48 +00:00
|
|
|
onReply: React.PropTypes.func,
|
|
|
|
onFavourite: React.PropTypes.func,
|
2016-09-29 22:00:45 +00:00
|
|
|
onReblog: React.PropTypes.func,
|
|
|
|
onDelete: React.PropTypes.func,
|
2016-10-24 16:07:40 +00:00
|
|
|
onOpenMedia: React.PropTypes.func,
|
2016-11-23 21:57:57 +00:00
|
|
|
onBlock: React.PropTypes.func,
|
2016-11-04 11:48:53 +00:00
|
|
|
me: React.PropTypes.number,
|
2016-11-20 18:39:18 +00:00
|
|
|
muted: React.PropTypes.bool
|
2016-08-24 15:56:44 +00:00
|
|
|
},
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-09-13 00:24:40 +00:00
|
|
|
handleClick () {
|
2016-09-15 22:21:51 +00:00
|
|
|
const { status } = this.props;
|
2016-09-21 22:32:27 +00:00
|
|
|
this.context.router.push(`/statuses/${status.getIn(['reblog', 'id'], status.get('id'))}`);
|
2016-09-15 22:21:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
handleAccountClick (id, e) {
|
|
|
|
if (e.button === 0) {
|
|
|
|
e.preventDefault();
|
2016-09-21 22:32:27 +00:00
|
|
|
this.context.router.push(`/accounts/${id}`);
|
2016-09-15 22:21:51 +00:00
|
|
|
}
|
2016-09-13 00:24:40 +00:00
|
|
|
},
|
|
|
|
|
2016-08-24 19:08:00 +00:00
|
|
|
render () {
|
2016-10-17 23:16:50 +00:00
|
|
|
let media = '';
|
2016-11-04 11:48:53 +00:00
|
|
|
const { status, now, ...other } = this.props;
|
2016-09-05 18:38:31 +00:00
|
|
|
|
2016-10-25 09:13:16 +00:00
|
|
|
if (status === null) {
|
|
|
|
return <div />;
|
|
|
|
}
|
|
|
|
|
2016-10-17 23:44:26 +00:00
|
|
|
if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') {
|
2016-10-06 20:07:32 +00:00
|
|
|
let displayName = status.getIn(['account', 'display_name']);
|
|
|
|
|
|
|
|
if (displayName.length === 0) {
|
|
|
|
displayName = status.getIn(['account', 'username']);
|
|
|
|
}
|
|
|
|
|
2016-11-18 23:28:42 +00:00
|
|
|
const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) };
|
|
|
|
|
2016-09-01 12:12:11 +00:00
|
|
|
return (
|
2016-11-10 22:21:24 +00:00
|
|
|
<div style={{ cursor: 'default' }}>
|
2016-09-01 12:12:11 +00:00
|
|
|
<div style={{ marginLeft: '68px', color: '#616b86', padding: '8px 0', paddingBottom: '2px', fontSize: '14px', position: 'relative' }}>
|
2017-01-30 17:04:15 +00:00
|
|
|
<div style={{ position: 'absolute', 'left': '-26px'}}><i className='fa fa-fw fa-retweet' /></div>
|
2016-11-18 23:28:42 +00:00
|
|
|
<FormattedMessage id='status.reblogged_by' defaultMessage='{name} reblogged' values={{ name: <a onClick={this.handleAccountClick.bind(this, status.getIn(['account', 'id']))} href={status.getIn(['account', 'url'])} className='status__display-name muted'><strong style={{ color: '#616b86'}} dangerouslySetInnerHTML={displayNameHTML} /></a> }} />
|
2016-09-01 12:12:11 +00:00
|
|
|
</div>
|
|
|
|
|
2016-09-13 00:24:40 +00:00
|
|
|
<Status {...other} wrapped={true} status={status.get('reblog')} />
|
2016-09-01 12:12:11 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-11-24 22:09:53 +00:00
|
|
|
if (status.get('media_attachments').size > 0 && !this.props.muted) {
|
2016-09-17 16:05:02 +00:00
|
|
|
if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
2016-11-23 10:23:32 +00:00
|
|
|
media = <VideoPlayer media={status.getIn(['media_attachments', 0])} sensitive={status.get('sensitive')} />;
|
2016-09-17 16:05:02 +00:00
|
|
|
} else {
|
2016-11-23 10:23:32 +00:00
|
|
|
media = <MediaGallery media={status.get('media_attachments')} sensitive={status.get('sensitive')} height={110} onOpenMedia={this.props.onOpenMedia} />;
|
2016-09-17 16:05:02 +00:00
|
|
|
}
|
2016-09-05 18:38:31 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
return (
|
2016-11-20 18:39:18 +00:00
|
|
|
<div className={this.props.muted ? 'muted' : ''} style={outerStyle}>
|
2016-08-31 20:58:10 +00:00
|
|
|
<div style={{ fontSize: '15px' }}>
|
2016-09-01 10:13:41 +00:00
|
|
|
<div style={{ float: 'right', fontSize: '14px' }}>
|
2016-11-04 11:48:53 +00:00
|
|
|
<a href={status.get('url')} className='status__relative-time' style={{ color: '#616b86' }} target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} now={now} /></a>
|
2016-08-31 20:58:10 +00:00
|
|
|
</div>
|
2016-08-24 19:08:00 +00:00
|
|
|
|
2016-09-15 22:21:51 +00:00
|
|
|
<a onClick={this.handleAccountClick.bind(this, status.getIn(['account', 'id']))} href={status.getIn(['account', 'url'])} className='status__display-name' style={{ display: 'block', maxWidth: '100%', paddingRight: '25px', color: '#616b86' }}>
|
2016-11-20 18:39:18 +00:00
|
|
|
<div className='status__avatar' style={{ position: 'absolute', left: '10px', top: '10px', width: '48px', height: '48px' }}>
|
2016-08-31 20:58:10 +00:00
|
|
|
<Avatar src={status.getIn(['account', 'avatar'])} size={48} />
|
2016-08-24 19:08:00 +00:00
|
|
|
</div>
|
|
|
|
|
2016-09-01 12:12:11 +00:00
|
|
|
<DisplayName account={status.get('account')} />
|
2016-08-31 20:58:10 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2016-11-10 22:21:24 +00:00
|
|
|
<StatusContent status={status} onClick={this.handleClick} />
|
2016-08-24 19:08:00 +00:00
|
|
|
|
2016-09-05 18:38:31 +00:00
|
|
|
{media}
|
|
|
|
|
2016-09-29 22:00:45 +00:00
|
|
|
<StatusActionBar {...this.props} />
|
2016-08-24 15:56:44 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 14:15:12 +00:00
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export default Status;
|