2016-08-24 16:56:44 +01: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-08-24 16:56:44 +01:00
|
|
|
|
|
|
|
const Status = React.createClass({
|
2016-08-31 15:15:12 +01:00
|
|
|
|
2016-09-21 23:32:27 +01:00
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
2016-08-24 16:56:44 +01:00
|
|
|
propTypes: {
|
2016-10-30 14:06:43 +00:00
|
|
|
status: ImmutablePropTypes.map,
|
2016-09-13 01:24:40 +01:00
|
|
|
wrapped: React.PropTypes.bool,
|
2016-09-01 12:21:48 +01:00
|
|
|
onReply: React.PropTypes.func,
|
|
|
|
onFavourite: React.PropTypes.func,
|
2016-09-29 23:00:45 +01:00
|
|
|
onReblog: React.PropTypes.func,
|
|
|
|
onDelete: React.PropTypes.func,
|
2016-10-24 17:07:40 +01:00
|
|
|
onOpenMedia: React.PropTypes.func,
|
2016-11-04 11:48:53 +00:00
|
|
|
me: React.PropTypes.number,
|
|
|
|
now: React.PropTypes.any
|
2016-08-24 16:56:44 +01:00
|
|
|
},
|
|
|
|
|
2016-08-31 15:15:12 +01:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-09-13 01:24:40 +01:00
|
|
|
handleClick () {
|
2016-09-15 23:21:51 +01:00
|
|
|
const { status } = this.props;
|
2016-09-21 23:32:27 +01:00
|
|
|
this.context.router.push(`/statuses/${status.getIn(['reblog', 'id'], status.get('id'))}`);
|
2016-09-15 23:21:51 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
handleAccountClick (id, e) {
|
|
|
|
if (e.button === 0) {
|
|
|
|
e.preventDefault();
|
2016-09-21 23:32:27 +01:00
|
|
|
this.context.router.push(`/accounts/${id}`);
|
2016-09-15 23:21:51 +01:00
|
|
|
}
|
2016-09-13 01:24:40 +01:00
|
|
|
},
|
|
|
|
|
2016-08-24 20:08:00 +01:00
|
|
|
render () {
|
2016-10-18 00:16:50 +01:00
|
|
|
let media = '';
|
2016-11-04 11:48:53 +00:00
|
|
|
const { status, now, ...other } = this.props;
|
2016-09-05 19:38:31 +01:00
|
|
|
|
2016-10-25 10:13:16 +01:00
|
|
|
if (status === null) {
|
|
|
|
return <div />;
|
|
|
|
}
|
|
|
|
|
2016-10-18 00:44:26 +01:00
|
|
|
if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') {
|
2016-10-06 21:07:32 +01:00
|
|
|
let displayName = status.getIn(['account', 'display_name']);
|
|
|
|
|
|
|
|
if (displayName.length === 0) {
|
|
|
|
displayName = status.getIn(['account', 'username']);
|
|
|
|
}
|
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
return (
|
2016-11-10 22:21:24 +00:00
|
|
|
<div style={{ cursor: 'default' }}>
|
2016-09-01 13:12:11 +01:00
|
|
|
<div style={{ marginLeft: '68px', color: '#616b86', padding: '8px 0', paddingBottom: '2px', fontSize: '14px', position: 'relative' }}>
|
|
|
|
<div style={{ position: 'absolute', 'left': '-26px'}}><i className='fa fa-fw fa-retweet'></i></div>
|
2016-11-16 16:20:52 +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'><strong style={{ color: '#616b86'}}>{displayName}</strong></a> }} />
|
2016-09-01 13:12:11 +01:00
|
|
|
</div>
|
|
|
|
|
2016-09-13 01:24:40 +01:00
|
|
|
<Status {...other} wrapped={true} status={status.get('reblog')} />
|
2016-09-01 13:12:11 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-24 16:56:44 +01:00
|
|
|
|
2016-09-05 19:38:31 +01:00
|
|
|
if (status.get('media_attachments').size > 0) {
|
2016-09-17 17:05:02 +01:00
|
|
|
if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
|
|
|
media = <VideoPlayer media={status.getIn(['media_attachments', 0])} />;
|
|
|
|
} else {
|
2016-10-24 17:07:40 +01:00
|
|
|
media = <MediaGallery media={status.get('media_attachments')} height={110} onOpenMedia={this.props.onOpenMedia} />;
|
2016-09-17 17:05:02 +01:00
|
|
|
}
|
2016-09-05 19:38:31 +01:00
|
|
|
}
|
|
|
|
|
2016-08-24 16:56:44 +01:00
|
|
|
return (
|
2016-11-10 22:21:24 +00:00
|
|
|
<div style={{ padding: '8px 10px', paddingLeft: '68px', position: 'relative', minHeight: '48px', borderBottom: '1px solid #363c4b', cursor: 'default' }}>
|
2016-08-31 21:58:10 +01:00
|
|
|
<div style={{ fontSize: '15px' }}>
|
2016-09-01 11:13:41 +01: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 21:58:10 +01:00
|
|
|
</div>
|
2016-08-24 20:08:00 +01:00
|
|
|
|
2016-09-15 23:21:51 +01: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-08-31 21:58:10 +01:00
|
|
|
<div style={{ position: 'absolute', left: '10px', top: '10px', width: '48px', height: '48px' }}>
|
|
|
|
<Avatar src={status.getIn(['account', 'avatar'])} size={48} />
|
2016-08-24 20:08:00 +01:00
|
|
|
</div>
|
|
|
|
|
2016-09-01 13:12:11 +01:00
|
|
|
<DisplayName account={status.get('account')} />
|
2016-08-31 21:58:10 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2016-11-10 22:21:24 +00:00
|
|
|
<StatusContent status={status} onClick={this.handleClick} />
|
2016-08-24 20:08:00 +01:00
|
|
|
|
2016-09-05 19:38:31 +01:00
|
|
|
{media}
|
|
|
|
|
2016-09-29 23:00:45 +01:00
|
|
|
<StatusActionBar {...this.props} />
|
2016-08-24 16:56:44 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 15:15:12 +01:00
|
|
|
|
2016-08-24 16:56:44 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
export default Status;
|