2016-09-29 22:00:45 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-16 16:20:52 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import IconButton from './icon_button';
|
|
|
|
import DropdownMenu from './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' },
|
2016-11-23 21:57:57 +00:00
|
|
|
block: { id: 'account.block', defaultMessage: 'Block' },
|
2016-11-18 14:36:16 +00:00
|
|
|
reply: { id: 'status.reply', defaultMessage: 'Reply' },
|
|
|
|
reblog: { id: 'status.reblog', defaultMessage: 'Reblog' },
|
2016-12-11 21:49:25 +00:00
|
|
|
favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
|
|
|
|
open: { id: 'status.open', defaultMessage: 'Expand' }
|
2016-11-18 14:36:16 +00:00
|
|
|
});
|
2016-09-29 22:00:45 +00:00
|
|
|
|
|
|
|
const StatusActionBar = React.createClass({
|
2016-11-21 09:52:11 +00:00
|
|
|
|
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
2016-09-29 22:00:45 +00:00
|
|
|
propTypes: {
|
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onReply: React.PropTypes.func,
|
|
|
|
onFavourite: React.PropTypes.func,
|
|
|
|
onReblog: React.PropTypes.func,
|
2016-10-24 15:11:02 +00:00
|
|
|
onDelete: React.PropTypes.func,
|
2016-11-23 21:57:57 +00:00
|
|
|
onMention: React.PropTypes.func,
|
|
|
|
onBlock: React.PropTypes.func
|
2016-09-29 22:00:45 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
handleReplyClick () {
|
2016-11-21 09:52:11 +00:00
|
|
|
this.props.onReply(this.props.status, this.context.router);
|
2016-09-29 22:00:45 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
handleFavouriteClick () {
|
|
|
|
this.props.onFavourite(this.props.status);
|
|
|
|
},
|
|
|
|
|
|
|
|
handleReblogClick () {
|
|
|
|
this.props.onReblog(this.props.status);
|
|
|
|
},
|
|
|
|
|
2016-10-09 20:19:15 +00:00
|
|
|
handleDeleteClick () {
|
2016-09-29 22:00:45 +00:00
|
|
|
this.props.onDelete(this.props.status);
|
|
|
|
},
|
|
|
|
|
2016-10-24 15:11:02 +00:00
|
|
|
handleMentionClick () {
|
|
|
|
this.props.onMention(this.props.status.get('account'));
|
|
|
|
},
|
|
|
|
|
2016-11-23 21:57:57 +00:00
|
|
|
handleBlockClick () {
|
|
|
|
this.props.onBlock(this.props.status.get('account'));
|
|
|
|
},
|
|
|
|
|
2016-12-11 21:49:25 +00:00
|
|
|
handleOpen () {
|
|
|
|
this.context.router.push(`/statuses/${this.props.status.get('id')}`);
|
|
|
|
},
|
|
|
|
|
2016-09-29 22:00:45 +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 = [];
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2016-12-11 21:49:25 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.open), action: this.handleOpen });
|
|
|
|
|
2016-09-29 22:00:45 +00:00
|
|
|
if (status.getIn(['account', 'id']) === me) {
|
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 });
|
2016-11-23 21:57:57 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.block), action: this.handleBlockClick });
|
2016-09-29 22:00:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div style={{ marginTop: '10px', overflow: 'hidden' }}>
|
2016-11-18 14:36:16 +00:00
|
|
|
<div style={{ float: 'left', marginRight: '18px'}}><IconButton title={intl.formatMessage(messages.reply)} icon='reply' onClick={this.handleReplyClick} /></div>
|
2016-12-24 00:33:55 +00:00
|
|
|
<div style={{ float: 'left', marginRight: '18px'}}><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>
|
2016-11-18 14:36:16 +00:00
|
|
|
<div style={{ float: 'left', marginRight: '18px'}}><IconButton active={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} activeStyle={{ color: '#ca8f04' }} /></div>
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2016-11-10 22:21:24 +00:00
|
|
|
<div style={{ width: '18px', height: '18px', float: 'left' }}>
|
2016-10-09 20:19:15 +00:00
|
|
|
<DropdownMenu items={menu} icon='ellipsis-h' size={18} />
|
2016-09-29 22:00:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-11-16 16:20:52 +00:00
|
|
|
export default injectIntl(StatusActionBar);
|