mastodon/app/assets/javascripts/components/components/status.jsx

103 lines
3.8 KiB
React
Raw Normal View History

import ImmutablePropTypes from 'react-immutable-proptypes';
2016-08-24 19:08:00 +00:00
import Avatar from './avatar';
import RelativeTimestamp from './relative_timestamp';
import PureRenderMixin from 'react-addons-pure-render-mixin';
2016-09-01 12:12:11 +00:00
import DisplayName from './display_name';
import MediaGallery from './media_gallery';
2016-09-17 16:05:02 +00:00
import VideoPlayer from './video_player';
import StatusContent from './status_content';
2016-09-29 22:00:45 +00:00
import StatusActionBar from './status_action_bar';
const Status = React.createClass({
contextTypes: {
router: React.PropTypes.object
},
propTypes: {
2016-08-31 20:58:10 +00:00
status: ImmutablePropTypes.map.isRequired,
wrapped: React.PropTypes.bool,
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-09-29 22:00:45 +00:00
me: React.PropTypes.number
},
mixins: [PureRenderMixin],
handleClick () {
const { status } = this.props;
this.context.router.push(`/statuses/${status.getIn(['reblog', 'id'], status.get('id'))}`);
},
handleAccountClick (id, e) {
if (e.button === 0) {
e.preventDefault();
this.context.router.push(`/accounts/${id}`);
}
e.stopPropagation();
},
2016-08-24 19:08:00 +00:00
render () {
2016-10-17 23:16:50 +00:00
let media = '';
let { status, ...other } = this.props;
2016-10-17 23:44:26 +00:00
if (status.get('reblog', null) !== null && typeof status.get('reblog') === 'object') {
let displayName = status.getIn(['account', 'display_name']);
if (displayName.length === 0) {
displayName = status.getIn(['account', 'username']);
}
2016-09-01 12:12:11 +00:00
return (
<div style={{ cursor: 'pointer' }} onClick={this.handleClick}>
2016-09-01 12:12:11 +00: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>
<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> reblogged
2016-09-01 12:12:11 +00:00
</div>
<Status {...other} wrapped={true} status={status.get('reblog')} />
2016-09-01 12:12:11 +00:00
</div>
);
}
if (status.get('media_attachments').size > 0) {
2016-09-17 16:05:02 +00:00
if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
media = <VideoPlayer media={status.getIn(['media_attachments', 0])} />;
} else {
2016-10-24 16:07:40 +00:00
media = <MediaGallery media={status.get('media_attachments')} height={110} onOpenMedia={this.props.onOpenMedia} />;
2016-09-17 16:05:02 +00:00
}
}
return (
<div style={{ padding: '8px 10px', paddingLeft: '68px', position: 'relative', minHeight: '48px', borderBottom: '1px solid #363c4b', cursor: 'pointer' }} onClick={this.handleClick}>
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' }}>
<a href={status.get('url')} className='status__relative-time' style={{ color: '#616b86' }} target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
2016-08-31 20:58:10 +00:00
</div>
2016-08-24 19:08:00 +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-08-31 20:58:10 +00:00
<div style={{ position: 'absolute', left: '10px', top: '10px', width: '48px', height: '48px' }}>
<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>
<StatusContent status={status} />
2016-08-24 19:08:00 +00:00
{media}
2016-09-29 22:00:45 +00:00
<StatusActionBar {...this.props} />
</div>
);
}
});
export default Status;