2016-11-16 16:20:52 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
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' },
|
|
|
|
mention: { id: 'status.mention', defaultMessage: 'Mention' },
|
|
|
|
reply: { id: 'status.reply', defaultMessage: 'Reply' },
|
|
|
|
reblog: { id: 'status.reblog', defaultMessage: 'Reblog' },
|
2017-02-14 19:59:26 +00:00
|
|
|
favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
|
|
|
|
report: { id: 'status.report', defaultMessage: 'Report' }
|
2016-11-18 14:36:16 +00:00
|
|
|
});
|
2016-09-25 12:20:29 +00:00
|
|
|
|
|
|
|
const ActionBar = React.createClass({
|
2016-10-09 20:19:15 +00:00
|
|
|
|
2017-01-30 20:40:55 +00:00
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
2016-09-25 12:20:29 +00:00
|
|
|
propTypes: {
|
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onReply: React.PropTypes.func.isRequired,
|
|
|
|
onReblog: React.PropTypes.func.isRequired,
|
2016-10-09 20:19:15 +00:00
|
|
|
onFavourite: React.PropTypes.func.isRequired,
|
|
|
|
onDelete: React.PropTypes.func.isRequired,
|
2016-10-24 15:11:02 +00:00
|
|
|
onMention: React.PropTypes.func.isRequired,
|
2017-02-14 19:59:26 +00:00
|
|
|
onReport: React.PropTypes.func,
|
2017-02-09 00:20:09 +00:00
|
|
|
me: React.PropTypes.number.isRequired,
|
|
|
|
intl: React.PropTypes.object.isRequired
|
2016-09-25 12:20:29 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-11-10 00:32:32 +00:00
|
|
|
handleReplyClick () {
|
2016-11-10 22:21:24 +00:00
|
|
|
this.props.onReply(this.props.status);
|
2016-11-10 00:32:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
handleReblogClick () {
|
2016-11-10 22:21:24 +00:00
|
|
|
this.props.onReblog(this.props.status);
|
2016-11-10 00:32:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
handleFavouriteClick () {
|
2016-11-10 22:21:24 +00:00
|
|
|
this.props.onFavourite(this.props.status);
|
2016-11-10 00:32:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
handleDeleteClick () {
|
2016-11-10 22:21:24 +00:00
|
|
|
this.props.onDelete(this.props.status);
|
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);
|
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');
|
|
|
|
},
|
|
|
|
|
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 {
|
2016-11-18 14:36:16 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mention), action: this.handleMentionClick });
|
2017-02-14 19:59:26 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.report), action: this.handleReport });
|
2016-10-09 20:19:15 +00:00
|
|
|
}
|
2016-09-25 12:20:29 +00:00
|
|
|
|
|
|
|
return (
|
2017-02-09 00:20:09 +00:00
|
|
|
<div className='detailed-status__action-bar'>
|
2016-11-18 14:36:16 +00:00
|
|
|
<div style={{ flex: '1 1 auto', textAlign: 'center' }}><IconButton title={intl.formatMessage(messages.reply)} icon='reply' onClick={this.handleReplyClick} /></div>
|
2016-12-24 00:33:55 +00:00
|
|
|
<div style={{ flex: '1 1 auto', textAlign: 'center' }}><IconButton disabled={status.get('visibility') === 'private'} active={status.get('reblogged')} title={intl.formatMessage(messages.reblog)} icon={status.get('visibility') === 'private' ? 'lock' : 'retweet'} onClick={this.handleReblogClick} /></div>
|
2017-01-11 03:21:49 +00:00
|
|
|
<div style={{ flex: '1 1 auto', textAlign: 'center' }}><IconButton animate={true} active={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} activeStyle={{ color: '#ca8f04' }} /></div>
|
2017-01-08 11:32:37 +00:00
|
|
|
<div style={{ flex: '1 1 auto', textAlign: 'center' }}><DropdownMenu size={18} icon='ellipsis-h' items={menu} direction="left" /></div>
|
2016-09-25 12:20:29 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-11-16 16:20:52 +00:00
|
|
|
export default injectIntl(ActionBar);
|