2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-16 11:20:52 -05:00
|
|
|
import IconButton from '../../../components/icon_button';
|
2016-09-25 08:20:29 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-07-27 16:31:59 -04:00
|
|
|
import DropdownMenuContainer from '../../../containers/dropdown_menu_container';
|
2016-11-18 09:36:16 -05:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-10-30 22:27:48 -04:00
|
|
|
import { me } from '../../../initial_state';
|
2016-11-18 09:36:16 -05:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
delete: { id: 'status.delete', defaultMessage: 'Delete' },
|
2018-04-09 11:09:11 -04:00
|
|
|
direct: { id: 'status.direct', defaultMessage: 'Direct message @{name}' },
|
2017-02-28 18:53:11 -05:00
|
|
|
mention: { id: 'status.mention', defaultMessage: 'Mention @{name}' },
|
2016-11-18 09:36:16 -05:00
|
|
|
reply: { id: 'status.reply', defaultMessage: 'Reply' },
|
2017-04-27 06:03:28 -04:00
|
|
|
reblog: { id: 'status.reblog', defaultMessage: 'Boost' },
|
2018-04-17 17:35:45 -04:00
|
|
|
reblog_private: { id: 'status.reblog_private', defaultMessage: 'Boost to original audience' },
|
|
|
|
cancel_reblog_private: { id: 'status.cancel_reblog_private', defaultMessage: 'Unboost' },
|
2017-04-27 06:03:28 -04:00
|
|
|
cannot_reblog: { id: 'status.cannot_reblog', defaultMessage: 'This post cannot be boosted' },
|
2017-02-14 14:59:26 -05:00
|
|
|
favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
|
2017-12-25 14:56:05 -05:00
|
|
|
mute: { id: 'status.mute', defaultMessage: 'Mute @{name}' },
|
|
|
|
muteConversation: { id: 'status.mute_conversation', defaultMessage: 'Mute conversation' },
|
|
|
|
unmuteConversation: { id: 'status.unmute_conversation', defaultMessage: 'Unmute conversation' },
|
|
|
|
block: { id: 'status.block', defaultMessage: 'Block @{name}' },
|
Feature conversations muting (#3017)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
2017-05-14 21:04:13 -04:00
|
|
|
report: { id: 'status.report', defaultMessage: 'Report @{name}' },
|
2017-07-27 18:55:15 -04:00
|
|
|
share: { id: 'status.share', defaultMessage: 'Share' },
|
2017-08-24 19:41:18 -04:00
|
|
|
pin: { id: 'status.pin', defaultMessage: 'Pin on profile' },
|
|
|
|
unpin: { id: 'status.unpin', defaultMessage: 'Unpin from profile' },
|
2017-08-30 21:38:35 -04:00
|
|
|
embed: { id: 'status.embed', defaultMessage: 'Embed' },
|
2016-11-18 09:36:16 -05:00
|
|
|
});
|
2016-09-25 08:20:29 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
@injectIntl
|
|
|
|
export default class ActionBar extends React.PureComponent {
|
2016-10-09 16:19:15 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static contextTypes = {
|
2017-05-20 11:31:47 -04:00
|
|
|
router: PropTypes.object,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onReply: PropTypes.func.isRequired,
|
|
|
|
onReblog: PropTypes.func.isRequired,
|
|
|
|
onFavourite: PropTypes.func.isRequired,
|
|
|
|
onDelete: PropTypes.func.isRequired,
|
2018-04-09 11:09:11 -04:00
|
|
|
onDirect: PropTypes.func.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
onMention: PropTypes.func.isRequired,
|
2017-12-25 14:56:05 -05:00
|
|
|
onMute: PropTypes.func,
|
|
|
|
onMuteConversation: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func,
|
2017-05-12 08:44:10 -04:00
|
|
|
onReport: PropTypes.func,
|
2017-08-24 19:41:18 -04:00
|
|
|
onPin: PropTypes.func,
|
2017-08-30 21:38:35 -04:00
|
|
|
onEmbed: PropTypes.func,
|
2017-05-20 11:31:47 -04:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleReplyClick = () => {
|
2016-11-10 17:21:24 -05:00
|
|
|
this.props.onReply(this.props.status);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-09 19:32:32 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleReblogClick = (e) => {
|
2017-04-11 08:34:14 -04:00
|
|
|
this.props.onReblog(this.props.status, e);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-09 19:32:32 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleFavouriteClick = () => {
|
2016-11-10 17:21:24 -05:00
|
|
|
this.props.onFavourite(this.props.status);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-09 19:32:32 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleDeleteClick = () => {
|
2016-11-10 17:21:24 -05:00
|
|
|
this.props.onDelete(this.props.status);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-09 19:32:32 -05:00
|
|
|
|
2018-04-09 11:09:11 -04:00
|
|
|
handleDirectClick = () => {
|
|
|
|
this.props.onDirect(this.props.status.get('account'), this.context.router.history);
|
|
|
|
}
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleMentionClick = () => {
|
2017-06-20 14:40:03 -04:00
|
|
|
this.props.onMention(this.props.status.get('account'), this.context.router.history);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-09 19:32:32 -05:00
|
|
|
|
2017-12-25 14:56:05 -05:00
|
|
|
handleMuteClick = () => {
|
|
|
|
this.props.onMute(this.props.status.get('account'));
|
|
|
|
}
|
|
|
|
|
|
|
|
handleConversationMuteClick = () => {
|
|
|
|
this.props.onMuteConversation(this.props.status);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleBlockClick = () => {
|
|
|
|
this.props.onBlock(this.props.status.get('account'));
|
|
|
|
}
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleReport = () => {
|
2017-02-14 14:59:26 -05:00
|
|
|
this.props.onReport(this.props.status);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-02-14 14:59:26 -05:00
|
|
|
|
2017-08-24 19:41:18 -04:00
|
|
|
handlePinClick = () => {
|
|
|
|
this.props.onPin(this.props.status);
|
|
|
|
}
|
|
|
|
|
2017-07-27 18:55:15 -04:00
|
|
|
handleShare = () => {
|
|
|
|
navigator.share({
|
|
|
|
text: this.props.status.get('search_index'),
|
|
|
|
url: this.props.status.get('url'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-30 21:38:35 -04:00
|
|
|
handleEmbed = () => {
|
|
|
|
this.props.onEmbed(this.props.status);
|
|
|
|
}
|
|
|
|
|
2016-09-25 08:20:29 -04:00
|
|
|
render () {
|
2017-10-30 22:27:48 -04:00
|
|
|
const { status, intl } = this.props;
|
2016-10-09 16:19:15 -04:00
|
|
|
|
2017-09-02 08:01:44 -04:00
|
|
|
const publicStatus = ['public', 'unlisted'].includes(status.get('visibility'));
|
2017-12-25 14:56:05 -05:00
|
|
|
const mutingConversation = status.get('muted');
|
2017-09-02 08:01:44 -04:00
|
|
|
|
2016-10-09 16:19:15 -04:00
|
|
|
let menu = [];
|
|
|
|
|
2017-09-02 08:01:44 -04:00
|
|
|
if (publicStatus) {
|
|
|
|
menu.push({ text: intl.formatMessage(messages.embed), action: this.handleEmbed });
|
2018-04-09 11:09:11 -04:00
|
|
|
menu.push(null);
|
2017-09-02 08:01:44 -04:00
|
|
|
}
|
2017-08-30 21:38:35 -04:00
|
|
|
|
2016-10-09 16:19:15 -04:00
|
|
|
if (me === status.getIn(['account', 'id'])) {
|
2017-09-02 08:01:44 -04:00
|
|
|
if (publicStatus) {
|
2017-08-24 19:41:18 -04:00
|
|
|
menu.push({ text: intl.formatMessage(status.get('pinned') ? messages.unpin : messages.pin), action: this.handlePinClick });
|
2018-04-17 17:35:45 -04:00
|
|
|
} else {
|
2018-04-20 08:58:33 -04:00
|
|
|
if (status.get('visibility') === 'private') {
|
|
|
|
menu.push({ text: intl.formatMessage(status.get('reblogged') ? messages.cancel_reblog_private : messages.reblog_private), action: this.handleReblogClick });
|
|
|
|
}
|
2017-08-24 19:41:18 -04:00
|
|
|
}
|
|
|
|
|
2017-12-25 14:56:05 -05:00
|
|
|
menu.push(null);
|
|
|
|
menu.push({ text: intl.formatMessage(mutingConversation ? messages.unmuteConversation : messages.muteConversation), action: this.handleConversationMuteClick });
|
|
|
|
menu.push(null);
|
2016-11-18 09:36:16 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.delete), action: this.handleDeleteClick });
|
2016-10-24 11:11:02 -04:00
|
|
|
} else {
|
2017-02-28 18:53:11 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mention, { name: status.getIn(['account', 'username']) }), action: this.handleMentionClick });
|
2018-04-09 11:09:11 -04:00
|
|
|
menu.push({ text: intl.formatMessage(messages.direct, { name: status.getIn(['account', 'username']) }), action: this.handleDirectClick });
|
2017-02-28 18:53:11 -05:00
|
|
|
menu.push(null);
|
2017-12-25 14:56:05 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mute, { name: status.getIn(['account', 'username']) }), action: this.handleMuteClick });
|
|
|
|
menu.push({ text: intl.formatMessage(messages.block, { name: status.getIn(['account', 'username']) }), action: this.handleBlockClick });
|
2017-02-28 18:53:11 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.report, { name: status.getIn(['account', 'username']) }), action: this.handleReport });
|
2016-10-09 16:19:15 -04:00
|
|
|
}
|
2016-09-25 08:20:29 -04:00
|
|
|
|
2017-07-27 18:55:15 -04:00
|
|
|
const shareButton = ('share' in navigator) && status.get('visibility') === 'public' && (
|
|
|
|
<div className='detailed-status__button'><IconButton title={intl.formatMessage(messages.share)} icon='share-alt' onClick={this.handleShare} /></div>
|
|
|
|
);
|
|
|
|
|
2017-04-14 20:57:26 -04:00
|
|
|
let reblogIcon = 'retweet';
|
|
|
|
if (status.get('visibility') === 'direct') reblogIcon = 'envelope';
|
|
|
|
else if (status.get('visibility') === 'private') reblogIcon = 'lock';
|
|
|
|
|
2017-04-26 19:53:55 -04:00
|
|
|
let reblog_disabled = (status.get('visibility') === 'direct' || status.get('visibility') === 'private');
|
|
|
|
|
2016-09-25 08:20:29 -04:00
|
|
|
return (
|
2017-02-08 19:20:09 -05:00
|
|
|
<div className='detailed-status__action-bar'>
|
2017-04-22 22:26:55 -04: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 19:53:55 -04: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-06-06 07:20:07 -04:00
|
|
|
<div className='detailed-status__button'><IconButton animate active={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} activeStyle={{ color: '#ca8f04' }} /></div>
|
2017-07-27 18:55:15 -04:00
|
|
|
{shareButton}
|
2017-05-10 18:28:10 -04:00
|
|
|
|
|
|
|
<div className='detailed-status__action-bar-dropdown'>
|
2017-11-25 09:41:08 -05:00
|
|
|
<DropdownMenuContainer size={18} icon='ellipsis-h' items={menu} direction='left' title='More' />
|
2017-05-10 18:28:10 -04:00
|
|
|
</div>
|
2016-09-25 08:20:29 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|