2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-09-29 22:00:45 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-16 16:20:52 +00:00
|
|
|
import IconButton from './icon_button';
|
2017-12-04 07:26:40 +00:00
|
|
|
import DropdownMenuContainer from 'flavours/glitch/containers/dropdown_menu_container';
|
2016-11-18 14:36:16 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-05-26 12:05:52 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2018-08-31 10:33:32 +00:00
|
|
|
import { me, isStaff } from 'flavours/glitch/util/initial_state';
|
2017-11-18 03:11:18 +00:00
|
|
|
import RelativeTimestamp from './relative_timestamp';
|
2018-09-25 12:46:14 +00:00
|
|
|
import { accountAdminLink, statusAdminLink } from 'flavours/glitch/util/backend_links';
|
2020-08-24 12:13:44 +00:00
|
|
|
import classNames from 'classnames';
|
2016-11-18 14:36:16 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
delete: { id: 'status.delete', defaultMessage: 'Delete' },
|
2018-06-15 19:29:04 +00:00
|
|
|
redraft: { id: 'status.redraft', defaultMessage: 'Delete & re-draft' },
|
2022-02-09 23:15:30 +00:00
|
|
|
edit: { id: 'status.edit', defaultMessage: 'Edit' },
|
2018-04-10 19:38:02 +00:00
|
|
|
direct: { id: 'status.direct', defaultMessage: 'Direct message @{name}' },
|
2017-02-28 23:53:11 +00:00
|
|
|
mention: { id: 'status.mention', defaultMessage: 'Mention @{name}' },
|
2017-04-03 07:56:01 +00:00
|
|
|
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
|
2017-02-28 23:53:11 +00:00
|
|
|
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
reply: { id: 'status.reply', defaultMessage: 'Reply' },
|
2017-07-25 18:38:39 +00:00
|
|
|
share: { id: 'status.share', defaultMessage: 'Share' },
|
2017-10-16 07:31:47 +00:00
|
|
|
more: { id: 'status.more', defaultMessage: 'More' },
|
2017-04-19 12:20:04 +00:00
|
|
|
replyAll: { id: 'status.replyAll', defaultMessage: 'Reply to thread' },
|
2017-04-27 10:03:28 +00:00
|
|
|
reblog: { id: 'status.reblog', defaultMessage: 'Boost' },
|
2020-08-22 22:08:31 +00:00
|
|
|
reblog_private: { id: 'status.reblog_private', defaultMessage: 'Boost with original visibility' },
|
2020-08-24 12:13:44 +00:00
|
|
|
cancel_reblog_private: { id: 'status.cancel_reblog_private', defaultMessage: 'Unboost' },
|
2017-04-27 10:03:28 +00:00
|
|
|
cannot_reblog: { id: 'status.cannot_reblog', defaultMessage: 'This post cannot be boosted' },
|
2016-12-11 21:49:25 +00:00
|
|
|
favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
|
2018-04-11 17:42:25 +00:00
|
|
|
bookmark: { id: 'status.bookmark', defaultMessage: 'Bookmark' },
|
2017-02-28 23:53:11 +00:00
|
|
|
open: { id: 'status.open', defaultMessage: 'Expand this status' },
|
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-15 01:04:13 +00:00
|
|
|
report: { id: 'status.report', defaultMessage: 'Report @{name}' },
|
|
|
|
muteConversation: { id: 'status.mute_conversation', defaultMessage: 'Mute conversation' },
|
|
|
|
unmuteConversation: { id: 'status.unmute_conversation', defaultMessage: 'Unmute conversation' },
|
2017-08-24 23:41:18 +00:00
|
|
|
pin: { id: 'status.pin', defaultMessage: 'Pin on profile' },
|
|
|
|
unpin: { id: 'status.unpin', defaultMessage: 'Unpin from profile' },
|
2017-09-01 19:30:13 +00:00
|
|
|
embed: { id: 'status.embed', defaultMessage: 'Embed' },
|
2018-08-31 10:33:32 +00:00
|
|
|
admin_account: { id: 'status.admin_account', defaultMessage: 'Open moderation interface for @{name}' },
|
|
|
|
admin_status: { id: 'status.admin_status', defaultMessage: 'Open this status in the moderation interface' },
|
2019-02-13 06:29:57 +00:00
|
|
|
copy: { id: 'status.copy', defaultMessage: 'Copy link to status' },
|
2019-07-12 14:01:33 +00:00
|
|
|
hide: { id: 'status.hide', defaultMessage: 'Hide toot' },
|
2022-01-19 21:37:27 +00:00
|
|
|
edited: { id: 'status.edited', defaultMessage: 'Edited {date}' },
|
2016-11-18 14:36:16 +00:00
|
|
|
});
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2019-09-09 13:16:08 +00:00
|
|
|
export default @injectIntl
|
|
|
|
class StatusActionBar extends ImmutablePureComponent {
|
2017-04-21 18:05:35 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static contextTypes = {
|
2017-05-20 15:31:47 +00:00
|
|
|
router: PropTypes.object,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
|
|
|
onReply: PropTypes.func,
|
|
|
|
onFavourite: PropTypes.func,
|
|
|
|
onReblog: PropTypes.func,
|
|
|
|
onDelete: PropTypes.func,
|
2018-04-10 19:38:02 +00:00
|
|
|
onDirect: PropTypes.func,
|
2017-05-12 12:44:10 +00:00
|
|
|
onMention: PropTypes.func,
|
|
|
|
onMute: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func,
|
|
|
|
onReport: PropTypes.func,
|
2017-09-01 19:30:13 +00:00
|
|
|
onEmbed: PropTypes.func,
|
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-15 01:04:13 +00:00
|
|
|
onMuteConversation: PropTypes.func,
|
2017-08-24 23:41:18 +00:00
|
|
|
onPin: PropTypes.func,
|
2018-04-11 17:42:25 +00:00
|
|
|
onBookmark: PropTypes.func,
|
2019-07-12 14:01:33 +00:00
|
|
|
onFilter: PropTypes.func,
|
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-15 01:04:13 +00:00
|
|
|
withDismiss: PropTypes.bool,
|
2018-08-22 11:17:21 +00:00
|
|
|
showReplyCount: PropTypes.bool,
|
2019-06-09 10:07:23 +00:00
|
|
|
directMessage: PropTypes.bool,
|
2020-07-09 13:09:19 +00:00
|
|
|
scrollKey: PropTypes.string,
|
2017-05-20 15:31:47 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2017-05-26 12:05:52 +00:00
|
|
|
// Avoid checking props that are functions (and whose equality will always
|
|
|
|
// evaluate to false. See react-immutable-pure-component for usage.
|
|
|
|
updateOnProps = [
|
|
|
|
'status',
|
2018-08-22 11:17:21 +00:00
|
|
|
'showReplyCount',
|
2017-05-26 12:05:52 +00:00
|
|
|
'withDismiss',
|
|
|
|
]
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleReplyClick = () => {
|
2019-02-17 11:39:44 +00:00
|
|
|
if (me) {
|
|
|
|
this.props.onReply(this.props.status, this.context.router.history);
|
|
|
|
} else {
|
|
|
|
this._openInteractionDialog('reply');
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2017-07-25 18:38:39 +00:00
|
|
|
handleShareClick = () => {
|
|
|
|
navigator.share({
|
|
|
|
text: this.props.status.get('search_index'),
|
|
|
|
url: this.props.status.get('url'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-09 18:06:00 +00:00
|
|
|
handleFavouriteClick = (e) => {
|
2019-02-17 11:39:44 +00:00
|
|
|
if (me) {
|
|
|
|
this.props.onFavourite(this.props.status, e);
|
|
|
|
} else {
|
|
|
|
this._openInteractionDialog('favourite');
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2018-04-11 17:42:25 +00:00
|
|
|
handleBookmarkClick = (e) => {
|
|
|
|
this.props.onBookmark(this.props.status, e);
|
|
|
|
}
|
|
|
|
|
2019-02-17 11:39:44 +00:00
|
|
|
handleReblogClick = e => {
|
|
|
|
if (me) {
|
|
|
|
this.props.onReblog(this.props.status, e);
|
|
|
|
} else {
|
|
|
|
this._openInteractionDialog('reblog');
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2019-02-17 11:39:44 +00:00
|
|
|
_openInteractionDialog = type => {
|
|
|
|
window.open(`/interact/${this.props.status.get('id')}?type=${type}`, 'mastodon-intent', 'width=445,height=600,resizable=no,menubar=no,status=no,scrollbars=yes');
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleDeleteClick = () => {
|
2018-08-31 14:41:58 +00:00
|
|
|
this.props.onDelete(this.props.status, this.context.router.history);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-09-29 22:00:45 +00:00
|
|
|
|
2018-06-15 19:29:04 +00:00
|
|
|
handleRedraftClick = () => {
|
2018-08-31 14:41:58 +00:00
|
|
|
this.props.onDelete(this.props.status, this.context.router.history, true);
|
2018-06-15 19:29:04 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 23:15:30 +00:00
|
|
|
handleEditClick = () => {
|
|
|
|
this.props.onEdit(this.props.status, this.context.router.history);
|
|
|
|
}
|
|
|
|
|
2017-08-24 23:41:18 +00:00
|
|
|
handlePinClick = () => {
|
|
|
|
this.props.onPin(this.props.status);
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleMentionClick = () => {
|
2017-06-20 18:40:03 +00:00
|
|
|
this.props.onMention(this.props.status.get('account'), this.context.router.history);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-24 15:11:02 +00:00
|
|
|
|
2018-04-10 19:38:02 +00:00
|
|
|
handleDirectClick = () => {
|
|
|
|
this.props.onDirect(this.props.status.get('account'), this.context.router.history);
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleMuteClick = () => {
|
2017-04-03 07:56:01 +00:00
|
|
|
this.props.onMute(this.props.status.get('account'));
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-03 07:56:01 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleBlockClick = () => {
|
2019-03-26 16:34:02 +00:00
|
|
|
this.props.onBlock(this.props.status);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-11-23 21:57:57 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleOpen = () => {
|
2019-04-15 20:23:05 +00:00
|
|
|
let state = {...this.context.router.history.location.state};
|
2021-07-13 09:07:16 +00:00
|
|
|
if (state.mastodonModalKey) {
|
2021-09-26 03:46:13 +00:00
|
|
|
this.context.router.history.replace(`/@${this.props.status.getIn(['account', 'acct'])}/${this.props.status.get('id')}`, { mastodonBackSteps: (state.mastodonBackSteps || 0) + 1 });
|
2019-06-02 09:51:49 +00:00
|
|
|
} else {
|
|
|
|
state.mastodonBackSteps = (state.mastodonBackSteps || 0) + 1;
|
2021-09-26 03:46:13 +00:00
|
|
|
this.context.router.history.push(`/@${this.props.status.getIn(['account', 'acct'])}/${this.props.status.get('id')}`, state);
|
2019-06-02 09:51:49 +00:00
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-12-11 21:49:25 +00:00
|
|
|
|
2017-09-01 19:30:13 +00:00
|
|
|
handleEmbed = () => {
|
|
|
|
this.props.onEmbed(this.props.status);
|
|
|
|
}
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleReport = () => {
|
2017-02-14 19:59:26 +00:00
|
|
|
this.props.onReport(this.props.status);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-02-14 19:59:26 +00:00
|
|
|
|
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-15 01:04:13 +00:00
|
|
|
handleConversationMuteClick = () => {
|
|
|
|
this.props.onMuteConversation(this.props.status);
|
|
|
|
}
|
|
|
|
|
2019-02-13 06:29:57 +00:00
|
|
|
handleCopy = () => {
|
|
|
|
const url = this.props.status.get('url');
|
|
|
|
const textarea = document.createElement('textarea');
|
|
|
|
|
|
|
|
textarea.textContent = url;
|
|
|
|
textarea.style.position = 'fixed';
|
|
|
|
|
|
|
|
document.body.appendChild(textarea);
|
|
|
|
|
|
|
|
try {
|
|
|
|
textarea.select();
|
|
|
|
document.execCommand('copy');
|
|
|
|
} catch (e) {
|
|
|
|
|
|
|
|
} finally {
|
|
|
|
document.body.removeChild(textarea);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-12 14:01:33 +00:00
|
|
|
handleFilterClick = () => {
|
|
|
|
this.props.onFilter();
|
|
|
|
}
|
|
|
|
|
2016-09-29 22:00:45 +00:00
|
|
|
render () {
|
2020-07-09 13:09:19 +00:00
|
|
|
const { status, intl, withDismiss, showReplyCount, directMessage, scrollKey } = this.props;
|
2017-09-02 12:01:44 +00:00
|
|
|
|
|
|
|
const anonymousAccess = !me;
|
2021-02-11 00:05:04 +00:00
|
|
|
const mutingConversation = status.get('muted');
|
2017-09-02 12:01:44 +00:00
|
|
|
const publicStatus = ['public', 'unlisted'].includes(status.get('visibility'));
|
2022-01-16 23:49:55 +00:00
|
|
|
const pinnableStatus = ['public', 'unlisted', 'private'].includes(status.get('visibility'));
|
2021-02-11 00:05:04 +00:00
|
|
|
const writtenByMe = status.getIn(['account', 'id']) === me;
|
2017-05-10 22:28:10 +00:00
|
|
|
|
2016-10-09 20:19:15 +00:00
|
|
|
let menu = [];
|
2017-05-10 22:28:10 +00:00
|
|
|
let reblogIcon = 'retweet';
|
|
|
|
let replyIcon;
|
|
|
|
let replyTitle;
|
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 });
|
2017-09-02 12:01:44 +00:00
|
|
|
|
|
|
|
if (publicStatus) {
|
2019-02-13 06:29:57 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.copy), action: this.handleCopy });
|
2017-09-02 12:01:44 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.embed), action: this.handleEmbed });
|
|
|
|
}
|
|
|
|
|
2017-02-28 23:53:11 +00:00
|
|
|
menu.push(null);
|
2016-12-11 21:49:25 +00:00
|
|
|
|
2022-01-16 23:49:55 +00:00
|
|
|
if (writtenByMe && pinnableStatus) {
|
2021-02-11 00:05:04 +00:00
|
|
|
menu.push({ text: intl.formatMessage(status.get('pinned') ? messages.unpin : messages.pin), action: this.handlePinClick });
|
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-15 01:04:13 +00:00
|
|
|
menu.push(null);
|
|
|
|
}
|
|
|
|
|
2021-02-11 00:05:04 +00:00
|
|
|
if (writtenByMe || withDismiss) {
|
|
|
|
menu.push({ text: intl.formatMessage(mutingConversation ? messages.unmuteConversation : messages.muteConversation), action: this.handleConversationMuteClick });
|
|
|
|
menu.push(null);
|
|
|
|
}
|
2017-08-24 23:41:18 +00:00
|
|
|
|
2021-02-11 00:05:04 +00:00
|
|
|
if (writtenByMe) {
|
2022-02-09 23:15:30 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.edit), action: this.handleEditClick });
|
2016-11-18 14:36:16 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.delete), action: this.handleDeleteClick });
|
2018-06-15 19:29:04 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.redraft), action: this.handleRedraftClick });
|
2016-10-24 15:11:02 +00:00
|
|
|
} else {
|
2017-02-28 23:53:11 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mention, { name: status.getIn(['account', 'username']) }), action: this.handleMentionClick });
|
2018-04-10 19:38:02 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.direct, { name: status.getIn(['account', 'username']) }), action: this.handleDirectClick });
|
2017-02-28 23:53:11 +00:00
|
|
|
menu.push(null);
|
2017-04-03 07:56:01 +00:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mute, { name: status.getIn(['account', 'username']) }), action: this.handleMuteClick });
|
2017-02-28 23:53:11 +00: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 });
|
2019-02-13 06:29:57 +00:00
|
|
|
|
2018-09-25 12:46:14 +00:00
|
|
|
if (isStaff && (accountAdminLink || statusAdminLink)) {
|
2018-08-31 10:33:32 +00:00
|
|
|
menu.push(null);
|
2018-09-25 12:46:14 +00:00
|
|
|
if (accountAdminLink !== undefined) {
|
|
|
|
menu.push({
|
|
|
|
text: intl.formatMessage(messages.admin_account, { name: status.getIn(['account', 'username']) }),
|
|
|
|
href: accountAdminLink(status.getIn(['account', 'id'])),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (statusAdminLink !== undefined) {
|
|
|
|
menu.push({
|
|
|
|
text: intl.formatMessage(messages.admin_status),
|
|
|
|
href: statusAdminLink(status.getIn(['account', 'id']), status.get('id')),
|
|
|
|
});
|
|
|
|
}
|
2018-08-31 10:33:32 +00:00
|
|
|
}
|
2016-09-29 22:00:45 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:20:04 +00:00
|
|
|
if (status.get('in_reply_to_id', null) === null) {
|
2017-06-06 01:56:36 +00:00
|
|
|
replyIcon = 'reply';
|
2017-05-10 22:28:10 +00:00
|
|
|
replyTitle = intl.formatMessage(messages.reply);
|
2017-04-19 12:20:04 +00:00
|
|
|
} else {
|
2017-06-06 01:56:36 +00:00
|
|
|
replyIcon = 'reply-all';
|
2017-05-10 22:28:10 +00:00
|
|
|
replyTitle = intl.formatMessage(messages.replyAll);
|
2017-04-19 12:20:04 +00:00
|
|
|
}
|
2017-04-15 00:57:26 +00:00
|
|
|
|
2020-02-07 12:21:25 +00:00
|
|
|
const shareButton = ('share' in navigator) && publicStatus && (
|
2017-07-25 18:38:39 +00:00
|
|
|
<IconButton className='status__action-bar-button' title={intl.formatMessage(messages.share)} icon='share-alt' onClick={this.handleShareClick} />
|
|
|
|
);
|
|
|
|
|
2019-07-12 14:01:33 +00:00
|
|
|
const filterButton = status.get('filtered') && (
|
|
|
|
<IconButton className='status__action-bar-button' title={intl.formatMessage(messages.hide)} icon='eye' onClick={this.handleFilterClick} />
|
|
|
|
);
|
|
|
|
|
2018-08-22 11:17:21 +00:00
|
|
|
let replyButton = (
|
|
|
|
<IconButton
|
|
|
|
className='status__action-bar-button'
|
|
|
|
title={replyTitle}
|
|
|
|
icon={replyIcon}
|
|
|
|
onClick={this.handleReplyClick}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
if (showReplyCount) {
|
|
|
|
replyButton = (
|
2020-09-28 11:29:43 +00:00
|
|
|
<IconButton
|
|
|
|
className='status__action-bar-button'
|
|
|
|
title={replyTitle}
|
|
|
|
icon={replyIcon}
|
|
|
|
onClick={this.handleReplyClick}
|
|
|
|
counter={status.get('replies_count')}
|
|
|
|
obfuscateCount
|
|
|
|
/>
|
2018-08-22 11:17:21 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-08-24 12:13:44 +00:00
|
|
|
const reblogPrivate = status.getIn(['account', 'id']) === me && status.get('visibility') === 'private';
|
|
|
|
|
|
|
|
let reblogTitle = '';
|
|
|
|
if (status.get('reblogged')) {
|
|
|
|
reblogTitle = intl.formatMessage(messages.cancel_reblog_private);
|
|
|
|
} else if (publicStatus) {
|
|
|
|
reblogTitle = intl.formatMessage(messages.reblog);
|
|
|
|
} else if (reblogPrivate) {
|
|
|
|
reblogTitle = intl.formatMessage(messages.reblog_private);
|
|
|
|
} else {
|
|
|
|
reblogTitle = intl.formatMessage(messages.cannot_reblog);
|
|
|
|
}
|
|
|
|
|
2018-08-22 11:17:21 +00:00
|
|
|
return (
|
|
|
|
<div className='status__action-bar'>
|
|
|
|
{replyButton}
|
2019-06-09 10:07:23 +00:00
|
|
|
{!directMessage && [
|
2020-08-24 12:13:44 +00:00
|
|
|
<IconButton key='reblog-button' className={classNames('status__action-bar-button', { reblogPrivate })} disabled={!publicStatus && !reblogPrivate} active={status.get('reblogged')} pressed={status.get('reblogged')} title={reblogTitle} icon={reblogIcon} onClick={this.handleReblogClick} />,
|
2019-06-29 08:43:45 +00:00
|
|
|
<IconButton key='favourite-button' className='status__action-bar-button star-icon' animate active={status.get('favourited')} pressed={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} />,
|
2019-06-09 10:07:23 +00:00
|
|
|
shareButton,
|
2019-06-29 08:43:45 +00:00
|
|
|
<IconButton key='bookmark-button' className='status__action-bar-button bookmark-icon' disabled={anonymousAccess} active={status.get('bookmarked')} pressed={status.get('bookmarked')} title={intl.formatMessage(messages.bookmark)} icon='bookmark' onClick={this.handleBookmarkClick} />,
|
2019-07-12 14:01:33 +00:00
|
|
|
filterButton,
|
2019-06-29 08:43:45 +00:00
|
|
|
<div key='dropdown-button' className='status__action-bar-dropdown'>
|
2020-07-09 13:09:19 +00:00
|
|
|
<DropdownMenuContainer
|
|
|
|
scrollKey={scrollKey}
|
|
|
|
disabled={anonymousAccess}
|
|
|
|
status={status}
|
|
|
|
items={menu}
|
|
|
|
icon='ellipsis-h'
|
|
|
|
size={18}
|
|
|
|
direction='right'
|
|
|
|
ariaLabel={intl.formatMessage(messages.more)}
|
|
|
|
/>
|
2019-06-09 10:07:23 +00:00
|
|
|
</div>,
|
|
|
|
]}
|
2017-11-18 03:11:18 +00:00
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'>
|
|
|
|
<RelativeTimestamp timestamp={status.get('created_at')} />{status.get('edited_at') && <abbr title={intl.formatMessage(messages.edited, { date: intl.formatDate(status.get('edited_at'), { hour12: false, year: 'numeric', month: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit' }) })}> *</abbr>}
|
|
|
|
</a>
|
2016-09-29 22:00:45 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|