2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-09-29 18:00:45 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-16 11:20:52 -05:00
|
|
|
import IconButton from './icon_button';
|
2017-12-04 02:26:40 -05:00
|
|
|
import DropdownMenuContainer from 'flavours/glitch/containers/dropdown_menu_container';
|
2016-11-18 09:36:16 -05:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-05-26 08:05:52 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-12-04 02:26:40 -05:00
|
|
|
import { me } from 'flavours/glitch/util/initial_state';
|
2017-11-17 22:11:18 -05:00
|
|
|
import RelativeTimestamp from './relative_timestamp';
|
2016-11-18 09:36:16 -05:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
delete: { id: 'status.delete', defaultMessage: 'Delete' },
|
2018-06-15 15:29:04 -04:00
|
|
|
redraft: { id: 'status.redraft', defaultMessage: 'Delete & re-draft' },
|
2018-04-10 15:38:02 -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}' },
|
2017-04-03 03:56:01 -04:00
|
|
|
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
|
2017-02-28 18:53:11 -05:00
|
|
|
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
|
2016-11-18 09:36:16 -05:00
|
|
|
reply: { id: 'status.reply', defaultMessage: 'Reply' },
|
2017-07-25 14:38:39 -04:00
|
|
|
share: { id: 'status.share', defaultMessage: 'Share' },
|
2017-10-16 03:31:47 -04:00
|
|
|
more: { id: 'status.more', defaultMessage: 'More' },
|
2017-04-19 08:20:04 -04:00
|
|
|
replyAll: { id: 'status.replyAll', defaultMessage: 'Reply to thread' },
|
2017-04-27 06:03:28 -04:00
|
|
|
reblog: { id: 'status.reblog', defaultMessage: 'Boost' },
|
2018-01-17 05:48:30 -05:00
|
|
|
reblog_private: { id: 'status.reblog_private', defaultMessage: 'Boost to original audience' },
|
2017-04-27 06:03:28 -04:00
|
|
|
cannot_reblog: { id: 'status.cannot_reblog', defaultMessage: 'This post cannot be boosted' },
|
2016-12-11 16:49:25 -05:00
|
|
|
favourite: { id: 'status.favourite', defaultMessage: 'Favourite' },
|
2018-04-11 13:42:25 -04:00
|
|
|
bookmark: { id: 'status.bookmark', defaultMessage: 'Bookmark' },
|
2017-02-28 18:53:11 -05: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-14 21:04:13 -04: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 19:41:18 -04:00
|
|
|
pin: { id: 'status.pin', defaultMessage: 'Pin on profile' },
|
|
|
|
unpin: { id: 'status.unpin', defaultMessage: 'Unpin from profile' },
|
2017-09-01 15:30:13 -04:00
|
|
|
embed: { id: 'status.embed', defaultMessage: 'Embed' },
|
2016-11-18 09:36:16 -05:00
|
|
|
});
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2018-08-20 05:56:34 -04:00
|
|
|
const obfuscatedCount = count => {
|
|
|
|
if (count < 0) {
|
|
|
|
return 0;
|
|
|
|
} else if (count <= 1) {
|
|
|
|
return count;
|
|
|
|
} else {
|
|
|
|
return '1+';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
@injectIntl
|
|
|
|
export default class StatusActionBar extends ImmutablePureComponent {
|
2017-04-21 14:05:35 -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,
|
|
|
|
onFavourite: PropTypes.func,
|
|
|
|
onReblog: PropTypes.func,
|
|
|
|
onDelete: PropTypes.func,
|
2018-04-10 15:38:02 -04:00
|
|
|
onDirect: PropTypes.func,
|
2017-05-12 08:44:10 -04:00
|
|
|
onMention: PropTypes.func,
|
|
|
|
onMute: PropTypes.func,
|
|
|
|
onBlock: PropTypes.func,
|
|
|
|
onReport: PropTypes.func,
|
2017-09-01 15:30:13 -04: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-14 21:04:13 -04:00
|
|
|
onMuteConversation: PropTypes.func,
|
2017-08-24 19:41:18 -04:00
|
|
|
onPin: PropTypes.func,
|
2018-04-11 13:42:25 -04:00
|
|
|
onBookmark: 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-14 21:04:13 -04:00
|
|
|
withDismiss: PropTypes.bool,
|
2018-08-22 07:17:21 -04:00
|
|
|
showReplyCount: PropTypes.bool,
|
2017-05-20 11:31:47 -04:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-05-26 08:05:52 -04: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 07:17:21 -04:00
|
|
|
'showReplyCount',
|
2017-05-26 08:05:52 -04:00
|
|
|
'withDismiss',
|
|
|
|
]
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleReplyClick = () => {
|
2017-06-20 14:40:03 -04:00
|
|
|
this.props.onReply(this.props.status, this.context.router.history);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2017-07-25 14:38:39 -04:00
|
|
|
handleShareClick = () => {
|
|
|
|
navigator.share({
|
|
|
|
text: this.props.status.get('search_index'),
|
|
|
|
url: this.props.status.get('url'),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-09 13:06:00 -05:00
|
|
|
handleFavouriteClick = (e) => {
|
|
|
|
this.props.onFavourite(this.props.status, e);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2018-04-11 13:42:25 -04:00
|
|
|
handleBookmarkClick = (e) => {
|
|
|
|
this.props.onBookmark(this.props.status, e);
|
|
|
|
}
|
|
|
|
|
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-09-29 18:00:45 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleDeleteClick = () => {
|
2018-08-31 10:41:58 -04:00
|
|
|
this.props.onDelete(this.props.status, this.context.router.history);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2018-06-15 15:29:04 -04:00
|
|
|
handleRedraftClick = () => {
|
2018-08-31 10:41:58 -04:00
|
|
|
this.props.onDelete(this.props.status, this.context.router.history, true);
|
2018-06-15 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
2017-08-24 19:41:18 -04:00
|
|
|
handlePinClick = () => {
|
|
|
|
this.props.onPin(this.props.status);
|
|
|
|
}
|
|
|
|
|
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-10-24 11:11:02 -04:00
|
|
|
|
2018-04-10 15:38:02 -04:00
|
|
|
handleDirectClick = () => {
|
|
|
|
this.props.onDirect(this.props.status.get('account'), this.context.router.history);
|
|
|
|
}
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleMuteClick = () => {
|
2017-04-03 03:56:01 -04:00
|
|
|
this.props.onMute(this.props.status.get('account'));
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-03 03:56:01 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleBlockClick = () => {
|
2016-11-23 16:57:57 -05:00
|
|
|
this.props.onBlock(this.props.status.get('account'));
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-23 16:57:57 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleOpen = () => {
|
2017-06-20 14:40:03 -04:00
|
|
|
this.context.router.history.push(`/statuses/${this.props.status.get('id')}`);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-12-11 16:49:25 -05:00
|
|
|
|
2017-09-01 15:30:13 -04:00
|
|
|
handleEmbed = () => {
|
|
|
|
this.props.onEmbed(this.props.status);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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
|
|
|
handleConversationMuteClick = () => {
|
|
|
|
this.props.onMuteConversation(this.props.status);
|
|
|
|
}
|
|
|
|
|
2016-09-29 18:00:45 -04:00
|
|
|
render () {
|
2018-08-22 07:17:21 -04:00
|
|
|
const { status, intl, withDismiss, showReplyCount } = this.props;
|
2017-09-02 08:01:44 -04: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-14 21:04:13 -04:00
|
|
|
const mutingConversation = status.get('muted');
|
2017-09-02 08:01:44 -04:00
|
|
|
const anonymousAccess = !me;
|
|
|
|
const publicStatus = ['public', 'unlisted'].includes(status.get('visibility'));
|
2018-01-17 05:48:30 -05:00
|
|
|
const reblogDisabled = anonymousAccess || (status.get('visibility') === 'direct' || (status.get('visibility') === 'private' && me !== status.getIn(['account', 'id'])));
|
|
|
|
const reblogMessage = status.get('visibility') === 'private' ? messages.reblog_private : messages.reblog;
|
2017-05-10 18:28:10 -04:00
|
|
|
|
2016-10-09 16:19:15 -04:00
|
|
|
let menu = [];
|
2017-05-10 18:28:10 -04:00
|
|
|
let reblogIcon = 'retweet';
|
|
|
|
let replyIcon;
|
|
|
|
let replyTitle;
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2016-12-11 16:49:25 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.open), action: this.handleOpen });
|
2017-09-02 08:01:44 -04:00
|
|
|
|
|
|
|
if (publicStatus) {
|
|
|
|
menu.push({ text: intl.formatMessage(messages.embed), action: this.handleEmbed });
|
|
|
|
}
|
|
|
|
|
2017-02-28 18:53:11 -05:00
|
|
|
menu.push(null);
|
2016-12-11 16:49:25 -05:00
|
|
|
|
2017-09-08 06:00:30 -04:00
|
|
|
if (status.getIn(['account', 'id']) === me || withDismiss) {
|
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
|
|
|
menu.push({ text: intl.formatMessage(mutingConversation ? messages.unmuteConversation : messages.muteConversation), action: this.handleConversationMuteClick });
|
|
|
|
menu.push(null);
|
|
|
|
}
|
|
|
|
|
2016-09-29 18:00:45 -04:00
|
|
|
if (status.getIn(['account', 'id']) === me) {
|
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 });
|
|
|
|
}
|
|
|
|
|
2016-11-18 09:36:16 -05:00
|
|
|
menu.push({ text: intl.formatMessage(messages.delete), action: this.handleDeleteClick });
|
2018-06-15 15:29:04 -04:00
|
|
|
menu.push({ text: intl.formatMessage(messages.redraft), action: this.handleRedraftClick });
|
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-10 15:38:02 -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-04-03 03:56:01 -04:00
|
|
|
menu.push({ text: intl.formatMessage(messages.mute, { name: status.getIn(['account', 'username']) }), action: this.handleMuteClick });
|
2017-02-28 18:53:11 -05: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 });
|
2016-09-29 18:00:45 -04:00
|
|
|
}
|
|
|
|
|
2017-04-19 08:20:04 -04:00
|
|
|
if (status.get('in_reply_to_id', null) === null) {
|
2017-06-05 21:56:36 -04:00
|
|
|
replyIcon = 'reply';
|
2017-05-10 18:28:10 -04:00
|
|
|
replyTitle = intl.formatMessage(messages.reply);
|
2017-04-19 08:20:04 -04:00
|
|
|
} else {
|
2017-06-05 21:56:36 -04:00
|
|
|
replyIcon = 'reply-all';
|
2017-05-10 18:28:10 -04:00
|
|
|
replyTitle = intl.formatMessage(messages.replyAll);
|
2017-04-19 08:20:04 -04:00
|
|
|
}
|
2017-04-14 20:57:26 -04:00
|
|
|
|
2017-07-25 14:38:39 -04:00
|
|
|
const shareButton = ('share' in navigator) && status.get('visibility') === 'public' && (
|
|
|
|
<IconButton className='status__action-bar-button' title={intl.formatMessage(messages.share)} icon='share-alt' onClick={this.handleShareClick} />
|
|
|
|
);
|
|
|
|
|
2018-08-22 07:17:21 -04:00
|
|
|
let replyButton = (
|
|
|
|
<IconButton
|
|
|
|
className='status__action-bar-button'
|
|
|
|
disabled={anonymousAccess}
|
|
|
|
title={replyTitle}
|
|
|
|
icon={replyIcon}
|
|
|
|
onClick={this.handleReplyClick}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
if (showReplyCount) {
|
|
|
|
replyButton = (
|
2018-08-20 05:56:34 -04:00
|
|
|
<div className='status__action-bar__counter'>
|
2018-08-22 07:17:21 -04:00
|
|
|
{replyButton}
|
2018-08-20 05:56:34 -04:00
|
|
|
<span className='status__action-bar__counter__label' >{obfuscatedCount(status.get('replies_count'))}</span>
|
|
|
|
</div>
|
2018-08-22 07:17:21 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='status__action-bar'>
|
|
|
|
{replyButton}
|
2018-01-17 05:48:30 -05:00
|
|
|
<IconButton className='status__action-bar-button' disabled={reblogDisabled} active={status.get('reblogged')} pressed={status.get('reblogged')} title={reblogDisabled ? intl.formatMessage(messages.cannot_reblog) : intl.formatMessage(reblogMessage)} icon={reblogIcon} onClick={this.handleReblogClick} />
|
2017-07-28 19:58:53 -04:00
|
|
|
<IconButton className='status__action-bar-button star-icon' disabled={anonymousAccess} animate active={status.get('favourited')} pressed={status.get('favourited')} title={intl.formatMessage(messages.favourite)} icon='star' onClick={this.handleFavouriteClick} />
|
2017-07-25 14:38:39 -04:00
|
|
|
{shareButton}
|
2018-05-21 12:57:51 -04:00
|
|
|
<IconButton 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} />
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
<div className='status__action-bar-dropdown'>
|
2017-10-16 03:31:47 -04:00
|
|
|
<DropdownMenuContainer disabled={anonymousAccess} status={status} items={menu} icon='ellipsis-h' size={18} direction='right' ariaLabel={intl.formatMessage(messages.more)} />
|
2016-09-29 18:00:45 -04:00
|
|
|
</div>
|
2017-11-17 22:11:18 -05:00
|
|
|
|
|
|
|
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
|
2016-09-29 18:00:45 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|