2016-08-25 01:56:44 +10:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-17 03:20:52 +11:00
|
|
|
import Avatar from './avatar';
|
|
|
|
import RelativeTimestamp from './relative_timestamp';
|
|
|
|
import DisplayName from './display_name';
|
|
|
|
import MediaGallery from './media_gallery';
|
|
|
|
import VideoPlayer from './video_player';
|
2017-04-19 23:37:18 +10:00
|
|
|
import AttachmentList from './attachment_list';
|
2016-11-17 03:20:52 +11:00
|
|
|
import StatusContent from './status_content';
|
|
|
|
import StatusActionBar from './status_action_bar';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-11-19 10:28:42 +11:00
|
|
|
import emojify from '../emoji';
|
2017-02-26 11:34:56 +11:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2016-08-25 01:56:44 +10:00
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
class Status extends React.PureComponent {
|
|
|
|
|
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
|
|
this.handleAccountClick = this.handleAccountClick.bind(this);
|
|
|
|
}
|
2016-09-01 00:15:12 +10:00
|
|
|
|
2016-09-13 10:24:40 +10:00
|
|
|
handleClick () {
|
2016-09-16 08:21:51 +10:00
|
|
|
const { status } = this.props;
|
2016-09-22 08:32:27 +10:00
|
|
|
this.context.router.push(`/statuses/${status.getIn(['reblog', 'id'], status.get('id'))}`);
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2016-09-16 08:21:51 +10:00
|
|
|
|
|
|
|
handleAccountClick (id, e) {
|
|
|
|
if (e.button === 0) {
|
|
|
|
e.preventDefault();
|
2016-09-22 08:32:27 +10:00
|
|
|
this.context.router.push(`/accounts/${id}`);
|
2016-09-16 08:21:51 +10:00
|
|
|
}
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2016-09-13 10:24:40 +10:00
|
|
|
|
2016-08-25 05:08:00 +10:00
|
|
|
render () {
|
2016-10-18 10:16:50 +11:00
|
|
|
let media = '';
|
2017-02-09 11:20:09 +11:00
|
|
|
const { status, ...other } = this.props;
|
2016-09-06 04:38:31 +10:00
|
|
|
|
2016-10-25 20:13:16 +11:00
|
|
|
if (status === null) {
|
|
|
|
return <div />;
|
|
|
|
}
|
|
|
|
|
2016-10-18 10:44:26 +11:00
|
|
|
if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') {
|
2016-10-07 07:07:32 +11:00
|
|
|
let displayName = status.getIn(['account', 'display_name']);
|
|
|
|
|
|
|
|
if (displayName.length === 0) {
|
|
|
|
displayName = status.getIn(['account', 'username']);
|
|
|
|
}
|
|
|
|
|
2016-11-19 10:28:42 +11:00
|
|
|
const displayNameHTML = { __html: emojify(escapeTextContentForBrowser(displayName)) };
|
|
|
|
|
2016-09-01 22:12:11 +10:00
|
|
|
return (
|
2016-11-11 09:21:24 +11:00
|
|
|
<div style={{ cursor: 'default' }}>
|
2017-02-09 11:20:09 +11:00
|
|
|
<div className='status__prepend'>
|
2017-01-31 04:04:15 +11:00
|
|
|
<div style={{ position: 'absolute', 'left': '-26px'}}><i className='fa fa-fw fa-retweet' /></div>
|
2017-02-09 11:20:09 +11: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 dangerouslySetInnerHTML={displayNameHTML} /></a> }} />
|
2016-09-01 22:12:11 +10:00
|
|
|
</div>
|
|
|
|
|
2016-09-13 10:24:40 +10:00
|
|
|
<Status {...other} wrapped={true} status={status.get('reblog')} />
|
2016-09-01 22:12:11 +10:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-25 01:56:44 +10:00
|
|
|
|
2016-11-25 09:09:53 +11:00
|
|
|
if (status.get('media_attachments').size > 0 && !this.props.muted) {
|
2017-04-19 23:37:18 +10:00
|
|
|
if (status.get('media_attachments').some(item => item.get('type') === 'unknown')) {
|
|
|
|
|
|
|
|
} else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
2017-04-13 23:04:18 +10:00
|
|
|
media = <VideoPlayer media={status.getIn(['media_attachments', 0])} sensitive={status.get('sensitive')} onOpenVideo={this.props.onOpenVideo} />;
|
2016-09-18 02:05:02 +10:00
|
|
|
} else {
|
2017-04-17 20:14:03 +10:00
|
|
|
media = <MediaGallery media={status.get('media_attachments')} sensitive={status.get('sensitive')} height={110} onOpenMedia={this.props.onOpenMedia} autoPlayGif={this.props.autoPlayGif} />;
|
2016-09-18 02:05:02 +10:00
|
|
|
}
|
2016-09-06 04:38:31 +10:00
|
|
|
}
|
|
|
|
|
2016-08-25 01:56:44 +10:00
|
|
|
return (
|
2017-02-09 11:20:09 +11:00
|
|
|
<div className={this.props.muted ? 'status muted' : 'status'}>
|
2016-09-01 06:58:10 +10:00
|
|
|
<div style={{ fontSize: '15px' }}>
|
2016-09-01 20:13:41 +10:00
|
|
|
<div style={{ float: 'right', fontSize: '14px' }}>
|
2017-02-09 11:20:09 +11:00
|
|
|
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
|
2016-09-01 06:58:10 +10:00
|
|
|
</div>
|
2016-08-25 05:08:00 +10:00
|
|
|
|
2017-02-09 11:20:09 +11: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' }}>
|
2016-11-21 05:39:18 +11:00
|
|
|
<div className='status__avatar' style={{ position: 'absolute', left: '10px', top: '10px', width: '48px', height: '48px' }}>
|
2017-04-11 08:38:58 +10:00
|
|
|
<Avatar src={status.getIn(['account', 'avatar'])} staticSrc={status.getIn(['account', 'avatar_static'])} size={48} />
|
2016-08-25 05:08:00 +10:00
|
|
|
</div>
|
|
|
|
|
2016-09-01 22:12:11 +10:00
|
|
|
<DisplayName account={status.get('account')} />
|
2016-09-01 06:58:10 +10:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2016-11-11 09:21:24 +11:00
|
|
|
<StatusContent status={status} onClick={this.handleClick} />
|
2016-08-25 05:08:00 +10:00
|
|
|
|
2016-09-06 04:38:31 +10:00
|
|
|
{media}
|
|
|
|
|
2016-09-30 08:00:45 +10:00
|
|
|
<StatusActionBar {...this.props} />
|
2016-08-25 01:56:44 +10:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-09-01 00:15:12 +10:00
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
Status.contextTypes = {
|
|
|
|
router: PropTypes.object
|
|
|
|
};
|
|
|
|
|
|
|
|
Status.propTypes = {
|
|
|
|
status: ImmutablePropTypes.map,
|
|
|
|
wrapped: PropTypes.bool,
|
|
|
|
onReply: PropTypes.func,
|
|
|
|
onFavourite: PropTypes.func,
|
|
|
|
onReblog: PropTypes.func,
|
|
|
|
onDelete: PropTypes.func,
|
|
|
|
onOpenMedia: PropTypes.func,
|
|
|
|
onOpenVideo: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func,
|
|
|
|
me: PropTypes.number,
|
|
|
|
boostModal: PropTypes.bool,
|
|
|
|
autoPlayGif: PropTypes.bool,
|
|
|
|
muted: PropTypes.bool
|
|
|
|
};
|
2016-08-25 01:56:44 +10:00
|
|
|
|
|
|
|
export default Status;
|