2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-16 16:20:52 +00:00
|
|
|
import IconButton from '../../../components/icon_button';
|
2016-09-25 12:20:29 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-16 16:20:52 +00:00
|
|
|
import DropdownMenu from '../../../components/dropdown_menu';
|
2016-11-18 14:36:16 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
delete: { id: 'status.delete', defaultMessage: 'Delete' },
|
2017-02-28 23:53:11 +00:00
|
|
|
mention: { id: 'status.mention', defaultMessage: 'Mention @{name}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
reply: { id: 'status.reply', defaultMessage: 'Reply' },
|
2017-04-27 10:03:28 +00:00
|
|
|
reblog: { id: 'status.reblog', defaultMessage: 'Boost' },
|
|
|
|
cannot_reblog: { id: 'status.cannot_reblog', defaultMessage: 'This post cannot be boosted' },
|
2017-02-14 19:59:26 +00:00
|
|
|
favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
|
2017-02-28 23:53:11 +00:00
|
|
|
report: { id: 'status.report', defaultMessage: 'Report @{name}' }
|
2016-11-18 14:36:16 +00:00
|
|
|
});
|
2016-09-25 12:20:29 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class ActionBar extends React.PureComponent {
|
2016-10-09 20:19:15 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
constructor (props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.handleReplyClick = this.handleReplyClick.bind(this);
|
|
|
|
this.handleReblogClick = this.handleReblogClick.bind(this);
|
|
|
|
this.handleFavouriteClick = this.handleFavouriteClick.bind(this);
|
|
|
|
this.handleDeleteClick = this.handleDeleteClick.bind(this);
|
|
|
|
this.handleMentionClick = this.handleMentionClick.bind(this);
|
|
|
|
this.handleReport = this.handleReport.bind(this);
|
|
|
|
}
|
2016-09-25 12:20:29 +00:00
|
|
|
|
2016-11-10 00:32:32 +00:00
|
|
|
handleReplyClick () {
|
2016-11-10 22:21:24 +00:00
|
|
|
this.props.onReply(this.props.status);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-10 00:32:32 +00:00
|
|
|
|
2017-04-11 12:34:14 +00:00
|
|
|
handleReblogClick (e) {
|
|
|
|
this.props.onReblog(this.props.status, e);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-10 00:32:32 +00:00
|
|
|
|
|
|
|
handleFavouriteClick () {
|
2016-11-10 22:21:24 +00:00
|
|
|
this.props.onFavourite(this.props.status);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-10 00:32:32 +00:00
|
|
|
|
|
|
|
handleDeleteClick () {
|
2016-11-10 22:21:24 +00:00
|
|
|
this.props.onDelete(this.props.status);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-10 00:32:32 +00:00
|
|
|
|
|
|
|
handleMentionClick () {
|
2017-01-30 20:40:55 +00:00
|
|
|
this.props.onMention(this.props.status.get('account'), this.context.router);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-10 00:32:32 +00:00
|
|
|
|
2017-02-14 19:59:26 +00:00
|
|
|
handleReport () {
|
|
|
|
this.props.onReport(this.props.status);
|
|
|
|
this.context.router.push('/report');
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-02-14 19:59:26 +00:00
|
|
|
|
2016-09-25 12:20:29 +00:00
|
|
|
render () {
|
2016-11-16 16:20:52 +00:00
|
|
|
const { status, me, intl } = this.props;
|
2016-10-09 20:19:15 +00:00
|
|
|
|
|
|
|
let menu = [];
|
|
|
|
|
|
|
|
if (me === status.getIn(['account', 'id'])) {
|
2016-11-18 14:36:16 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.delete), action: this.handleDeleteClick });
|
2016-10-24 15:11:02 +00:00
|
|
|
} else {
|
2017-02-28 23:53:11 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mention, { name: status.getIn(['account', 'username']) }), action: this.handleMentionClick });
|
|
|
|
menu.push(null);
|
|
|
|
menu.push({ text: intl.formatMessage(messages.report, { name: status.getIn(['account', 'username']) }), action: this.handleReport });
|
2016-10-09 20:19:15 +00:00
|
|
|
}
|
2016-09-25 12:20:29 +00:00
|
|
|
|
2017-04-15 00:57:26 +00:00
|
|
|
let reblogIcon = 'retweet';
|
|
|
|
if (status.get('visibility') === 'direct') reblogIcon = 'envelope';
|
|
|
|
else if (status.get('visibility') === 'private') reblogIcon = 'lock';
|
|
|
|
|
2017-04-26 23:53:55 +00:00
|
|
|
let reblog_disabled = (status.get('visibility') === 'direct' || status.get('visibility') === 'private');
|
|
|
|
|
2016-09-25 12:20:29 +00:00
|
|
|
return (
|
2017-02-09 00:20:09 +00:00
|
|
|
<div className='detailed-status__action-bar'>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='detailed-status__button'><IconButton title={intl.formatMessage(messages.reply)} icon={status.get('in_reply_to_id', null) === null ? 'reply' : 'reply-all'} onClick={this.handleReplyClick} /></div>
|
2017-04-26 23:53:55 +00:00
|
|
|
<div className='detailed-status__button'><IconButton disabled={reblog_disabled} active={status.get('reblogged')} title={reblog_disabled ? intl.formatMessage(messages.cannot_reblog) : intl.formatMessage(messages.reblog)} icon={reblogIcon} onClick={this.handleReblogClick} /></div>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='detailed-status__button'><IconButton animate={true} active={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} activeStyle={{ color: '#ca8f04' }} /></div>
|
2017-05-10 22:28:10 +00:00
|
|
|
|
|
|
|
<div className='detailed-status__action-bar-dropdown'>
|
|
|
|
<DropdownMenu size={18} icon='ellipsis-h' items={menu} direction="left" ariaLabel="More" />
|
|
|
|
</div>
|
2016-09-25 12:20:29 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ActionBar.contextTypes = {
|
|
|
|
router: PropTypes.object
|
|
|
|
};
|
|
|
|
|
|
|
|
ActionBar.propTypes = {
|
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onReply: PropTypes.func.isRequired,
|
|
|
|
onReblog: PropTypes.func.isRequired,
|
|
|
|
onFavourite: PropTypes.func.isRequired,
|
|
|
|
onDelete: PropTypes.func.isRequired,
|
|
|
|
onMention: PropTypes.func.isRequired,
|
|
|
|
onReport: PropTypes.func,
|
|
|
|
me: PropTypes.number.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired
|
|
|
|
};
|
2016-09-25 12:20:29 +00:00
|
|
|
|
2016-11-16 16:20:52 +00:00
|
|
|
export default injectIntl(ActionBar);
|