2016-11-16 17:20:52 +01:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import IconButton from '../../../components/icon_button';
|
2016-09-25 14:20:29 +02:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-11-16 17:20:52 +01:00
|
|
|
import DropdownMenu from '../../../components/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' },
|
|
|
|
mention: { id: 'status.mention', defaultMessage: 'Mention' },
|
|
|
|
reply: { id: 'status.reply', defaultMessage: 'Reply' },
|
|
|
|
reblog: { id: 'status.reblog', defaultMessage: 'Reblog' },
|
|
|
|
favourite: { id: 'status.favourite', defaultMessage: 'Favourite' }
|
|
|
|
});
|
2016-09-25 14:20:29 +02:00
|
|
|
|
|
|
|
const ActionBar = React.createClass({
|
2016-10-09 22:19:15 +02:00
|
|
|
|
2017-01-30 21:40:55 +01:00
|
|
|
contextTypes: {
|
|
|
|
router: React.PropTypes.object
|
|
|
|
},
|
|
|
|
|
2016-09-25 14:20:29 +02:00
|
|
|
propTypes: {
|
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onReply: React.PropTypes.func.isRequired,
|
|
|
|
onReblog: React.PropTypes.func.isRequired,
|
2016-10-09 22:19:15 +02:00
|
|
|
onFavourite: React.PropTypes.func.isRequired,
|
|
|
|
onDelete: React.PropTypes.func.isRequired,
|
2016-10-24 17:11:02 +02:00
|
|
|
onMention: React.PropTypes.func.isRequired,
|
2016-10-09 22:19:15 +02:00
|
|
|
me: React.PropTypes.number.isRequired
|
2016-09-25 14:20:29 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-11-10 01:32:32 +01:00
|
|
|
handleReplyClick () {
|
2016-11-10 23:21:24 +01:00
|
|
|
this.props.onReply(this.props.status);
|
2016-11-10 01:32:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
handleReblogClick () {
|
2016-11-10 23:21:24 +01:00
|
|
|
this.props.onReblog(this.props.status);
|
2016-11-10 01:32:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
handleFavouriteClick () {
|
2016-11-10 23:21:24 +01:00
|
|
|
this.props.onFavourite(this.props.status);
|
2016-11-10 01:32:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
handleDeleteClick () {
|
2016-11-10 23:21:24 +01:00
|
|
|
this.props.onDelete(this.props.status);
|
2016-11-10 01:32:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
handleMentionClick () {
|
2017-01-30 21:40:55 +01:00
|
|
|
this.props.onMention(this.props.status.get('account'), this.context.router);
|
2016-11-10 01:32:32 +01:00
|
|
|
},
|
|
|
|
|
2016-09-25 14:20:29 +02:00
|
|
|
render () {
|
2016-11-16 17:20:52 +01:00
|
|
|
const { status, me, intl } = this.props;
|
2016-10-09 22:19:15 +02:00
|
|
|
|
|
|
|
let menu = [];
|
|
|
|
|
|
|
|
if (me === status.getIn(['account', 'id'])) {
|
2016-11-18 15:36:16 +01:00
|
|
|
menu.push({ text: intl.formatMessage(messages.delete), action: this.handleDeleteClick });
|
2016-10-24 17:11:02 +02:00
|
|
|
} else {
|
2016-11-18 15:36:16 +01:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mention), action: this.handleMentionClick });
|
2016-10-09 22:19:15 +02:00
|
|
|
}
|
2016-09-25 14:20:29 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div style={{ background: '#2f3441', display: 'flex', flexDirection: 'row', borderTop: '1px solid #363c4b', borderBottom: '1px solid #363c4b', padding: '10px 0' }}>
|
2016-11-18 15:36:16 +01:00
|
|
|
<div style={{ flex: '1 1 auto', textAlign: 'center' }}><IconButton title={intl.formatMessage(messages.reply)} icon='reply' onClick={this.handleReplyClick} /></div>
|
2016-12-24 01:33:55 +01: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 04:21:49 +01: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 12:32:37 +01:00
|
|
|
<div style={{ flex: '1 1 auto', textAlign: 'center' }}><DropdownMenu size={18} icon='ellipsis-h' items={menu} direction="left" /></div>
|
2016-09-25 14:20:29 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-11-16 17:20:52 +01:00
|
|
|
export default injectIntl(ActionBar);
|