2016-11-16 16:20:52 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-09-25 12:20:29 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-16 16:20:52 +00:00
|
|
|
import Avatar from '../../../components/avatar';
|
|
|
|
import DisplayName from '../../../components/display_name';
|
|
|
|
import StatusContent from '../../../components/status_content';
|
|
|
|
import MediaGallery from '../../../components/media_gallery';
|
|
|
|
import VideoPlayer from '../../../components/video_player';
|
|
|
|
import { Link } from 'react-router';
|
|
|
|
import { FormattedDate, FormattedNumber } from 'react-intl';
|
2016-09-25 12:20:29 +00:00
|
|
|
|
|
|
|
const DetailedStatus = React.createClass({
|
|
|
|
|
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
|
|
|
propTypes: {
|
2016-10-24 16:07:40 +00:00
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onOpenMedia: React.PropTypes.func.isRequired
|
2016-09-25 12:20:29 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
handleAccountClick (e) {
|
|
|
|
if (e.button === 0) {
|
|
|
|
e.preventDefault();
|
|
|
|
this.context.router.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
e.stopPropagation();
|
|
|
|
},
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const status = this.props.status.get('reblog') ? this.props.status.get('reblog') : this.props.status;
|
2016-09-25 12:58:07 +00:00
|
|
|
let media = '';
|
|
|
|
|
|
|
|
if (status.get('media_attachments').size > 0) {
|
|
|
|
if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
2016-11-23 17:53:23 +00:00
|
|
|
media = <VideoPlayer sensitive={status.get('sensitive')} media={status.getIn(['media_attachments', 0])} width={317} height={178} />;
|
2016-09-25 12:58:07 +00:00
|
|
|
} else {
|
2016-11-23 17:53:23 +00:00
|
|
|
media = <MediaGallery sensitive={status.get('sensitive')} media={status.get('media_attachments')} height={300} onOpenMedia={this.props.onOpenMedia} />;
|
2016-09-25 12:58:07 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-25 12:20:29 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div style={{ background: '#2f3441', padding: '14px 10px' }} className='detailed-status'>
|
|
|
|
<a href={status.getIn(['account', 'url'])} onClick={this.handleAccountClick} className='detailed-status__display-name' style={{ display: 'block', overflow: 'hidden', marginBottom: '15px' }}>
|
|
|
|
<div style={{ float: 'left', marginRight: '10px' }}><Avatar src={status.getIn(['account', 'avatar'])} size={48} /></div>
|
|
|
|
<DisplayName account={status.get('account')} />
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<StatusContent status={status} />
|
|
|
|
|
2016-09-25 12:58:07 +00:00
|
|
|
{media}
|
|
|
|
|
2016-09-25 12:20:29 +00:00
|
|
|
<div style={{ marginTop: '15px', color: '#616b86', fontSize: '14px', lineHeight: '18px' }}>
|
2016-11-17 15:34:36 +00:00
|
|
|
<a className='detailed-status__datetime' style={{ color: 'inherit' }} href={status.get('url')} target='_blank' rel='noopener'><FormattedDate value={new Date(status.get('created_at'))} hour12={false} year='numeric' month='short' day='2-digit' hour='2-digit' minute='2-digit' /></a> · <Link to={`/statuses/${status.get('id')}/reblogs`} style={{ color: 'inherit', textDecoration: 'none' }}><i className='fa fa-retweet' /><span style={{ fontWeight: '500', fontSize: '12px', marginLeft: '6px', display: 'inline-block' }}><FormattedNumber value={status.get('reblogs_count')} /></span></Link> · <Link to={`/statuses/${status.get('id')}/favourites`} style={{ color: 'inherit', textDecoration: 'none' }}><i className='fa fa-star' /><span style={{ fontWeight: '500', fontSize: '12px', marginLeft: '6px', display: 'inline-block' }}><FormattedNumber value={status.get('favourites_count')} /></span></Link>
|
2016-09-25 12:20:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default DetailedStatus;
|