mastodon/app/javascript/mastodon/components/status_action_bar.js

139 lines
5.4 KiB
JavaScript
Raw Normal View History

import React from 'react';
2016-09-30 00:00:45 +02:00
import ImmutablePropTypes from 'react-immutable-proptypes';
import PropTypes from 'prop-types';
import IconButton from './icon_button';
import DropdownMenu from './dropdown_menu';
2016-11-18 15:36:16 +01:00
import { defineMessages, injectIntl } from 'react-intl';
const messages = defineMessages({
delete: { id: 'status.delete', defaultMessage: 'Delete' },
2017-03-01 00:53:11 +01:00
mention: { id: 'status.mention', defaultMessage: 'Mention @{name}' },
2017-04-03 09:56:01 +02:00
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
2017-03-01 00:53:11 +01:00
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
2016-11-18 15:36:16 +01:00
reply: { id: 'status.reply', defaultMessage: 'Reply' },
replyAll: { id: 'status.replyAll', defaultMessage: 'Reply to thread' },
reblog: { id: 'status.reblog', defaultMessage: 'Boost' },
cannot_reblog: { id: 'status.cannot_reblog', defaultMessage: 'This post cannot be boosted' },
favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
2017-03-01 00:53:11 +01:00
open: { id: 'status.open', defaultMessage: 'Expand this status' },
report: { id: 'status.report', defaultMessage: 'Report @{name}' }
2016-11-18 15:36:16 +01:00
});
2016-09-30 00:00:45 +02:00
class StatusActionBar extends React.PureComponent {
constructor (props, context) {
super(props, context);
this.handleReplyClick = this.handleReplyClick.bind(this);
this.handleFavouriteClick = this.handleFavouriteClick.bind(this);
this.handleReblogClick = this.handleReblogClick.bind(this);
this.handleDeleteClick = this.handleDeleteClick.bind(this);
this.handleMentionClick = this.handleMentionClick.bind(this);
this.handleMuteClick = this.handleMuteClick.bind(this);
this.handleBlockClick = this.handleBlockClick.bind(this);
this.handleOpen = this.handleOpen.bind(this);
this.handleReport = this.handleReport.bind(this);
}
2016-09-30 00:00:45 +02:00
handleReplyClick () {
this.props.onReply(this.props.status, this.context.router);
}
2016-09-30 00:00:45 +02:00
handleFavouriteClick () {
this.props.onFavourite(this.props.status);
}
2016-09-30 00:00:45 +02:00
handleReblogClick (e) {
this.props.onReblog(this.props.status, e);
}
2016-09-30 00:00:45 +02:00
2016-10-09 22:19:15 +02:00
handleDeleteClick () {
2016-09-30 00:00:45 +02:00
this.props.onDelete(this.props.status);
}
2016-09-30 00:00:45 +02:00
handleMentionClick () {
this.props.onMention(this.props.status.get('account'), this.context.router);
}
2017-04-03 09:56:01 +02:00
handleMuteClick () {
this.props.onMute(this.props.status.get('account'));
}
2017-04-03 09:56:01 +02:00
handleBlockClick () {
this.props.onBlock(this.props.status.get('account'));
}
handleOpen () {
this.context.router.push(`/statuses/${this.props.status.get('id')}`);
}
handleReport () {
this.props.onReport(this.props.status);
this.context.router.push('/report');
}
2016-09-30 00:00:45 +02:00
render () {
const { status, me, intl } = this.props;
const reblog_disabled = status.get('visibility') === 'private' || status.get('visibility') === 'direct';
2016-10-09 22:19:15 +02:00
let menu = [];
2016-09-30 00:00:45 +02:00
menu.push({ text: intl.formatMessage(messages.open), action: this.handleOpen });
2017-03-01 00:53:11 +01:00
menu.push(null);
2016-09-30 00:00:45 +02:00
if (status.getIn(['account', 'id']) === me) {
2016-11-18 15:36:16 +01:00
menu.push({ text: intl.formatMessage(messages.delete), action: this.handleDeleteClick });
} else {
2017-03-01 00:53:11 +01:00
menu.push({ text: intl.formatMessage(messages.mention, { name: status.getIn(['account', 'username']) }), action: this.handleMentionClick });
menu.push(null);
2017-04-03 09:56:01 +02:00
menu.push({ text: intl.formatMessage(messages.mute, { name: status.getIn(['account', 'username']) }), action: this.handleMuteClick });
2017-03-01 00:53:11 +01:00
menu.push({ text: intl.formatMessage(messages.block, { name: status.getIn(['account', 'username']) }), action: this.handleBlockClick });
menu.push({ text: intl.formatMessage(messages.report, { name: status.getIn(['account', 'username']) }), action: this.handleReport });
2016-09-30 00:00:45 +02:00
}
let reblogIcon = 'retweet';
if (status.get('visibility') === 'direct') reblogIcon = 'envelope';
else if (status.get('visibility') === 'private') reblogIcon = 'lock';
let reply_icon;
let reply_title;
if (status.get('in_reply_to_id', null) === null) {
reply_icon = "reply";
reply_title = intl.formatMessage(messages.reply);
} else {
reply_icon = "reply-all";
reply_title = intl.formatMessage(messages.replyAll);
}
2016-09-30 00:00:45 +02:00
return (
<div className='status__action-bar'>
<div className='status__action-bar-button-wrapper'><IconButton title={reply_title} icon={reply_icon} onClick={this.handleReplyClick} /></div>
<div className='status__action-bar-button-wrapper'><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>
<div className='status__action-bar-button-wrapper'><IconButton animate={true} active={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} className='star-icon' /></div>
2016-09-30 00:00:45 +02:00
<div className='status__action-bar-dropdown'>
<DropdownMenu items={menu} icon='ellipsis-h' size={18} direction="right" ariaLabel="More"/>
2016-09-30 00:00:45 +02:00
</div>
</div>
);
}
}
StatusActionBar.contextTypes = {
router: PropTypes.object
};
StatusActionBar.propTypes = {
status: ImmutablePropTypes.map.isRequired,
onReply: PropTypes.func,
onFavourite: PropTypes.func,
onReblog: PropTypes.func,
onDelete: PropTypes.func,
onMention: PropTypes.func,
onMute: PropTypes.func,
onBlock: PropTypes.func,
onReport: PropTypes.func,
me: PropTypes.number.isRequired,
intl: PropTypes.object.isRequired
};
2016-09-30 00:00:45 +02:00
export default injectIntl(StatusActionBar);