2020-03-26 03:11:32 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes'
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
2020-05-07 00:40:54 +01:00
|
|
|
import { FormattedMessage, defineMessages, injectIntl } from 'react-intl'
|
|
|
|
import { me, isStaff, boostModal, deleteModal } from '../../initial_state'
|
|
|
|
import {
|
|
|
|
repost,
|
|
|
|
unrepost,
|
|
|
|
pin,
|
|
|
|
unpin,
|
|
|
|
} from '../../actions/interactions';
|
|
|
|
import {
|
|
|
|
muteStatus,
|
|
|
|
unmuteStatus,
|
|
|
|
deleteStatus,
|
|
|
|
editStatus,
|
|
|
|
} from '../../actions/statuses';
|
2020-05-15 04:36:10 +01:00
|
|
|
import { quoteCompose } from '../../actions/compose'
|
2020-05-07 00:40:54 +01:00
|
|
|
import {
|
|
|
|
fetchGroupRelationships,
|
|
|
|
createRemovedAccount,
|
|
|
|
groupRemoveStatus,
|
|
|
|
} from '../../actions/groups'
|
|
|
|
import { initMuteModal } from '../../actions/mutes'
|
|
|
|
import { initReport } from '../../actions/reports'
|
|
|
|
import { openModal } from '../../actions/modal'
|
|
|
|
import { closePopover } from '../../actions/popover'
|
2020-05-27 06:13:46 +01:00
|
|
|
import { MODAL_EMBED } from '../../constants'
|
2020-03-25 03:08:43 +00:00
|
|
|
import PopoverLayout from './popover_layout'
|
|
|
|
import List from '../list'
|
|
|
|
|
2020-03-26 03:11:32 +00:00
|
|
|
const messages = defineMessages({
|
|
|
|
delete: { id: 'status.delete', defaultMessage: 'Delete' },
|
|
|
|
edit: { id: 'status.edit', defaultMessage: 'Edit' },
|
|
|
|
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
|
|
|
|
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
|
|
|
|
reply: { id: 'status.reply', defaultMessage: 'Reply' },
|
|
|
|
more: { id: 'status.more', defaultMessage: 'More' },
|
|
|
|
share: { id: 'status.share', defaultMessage: 'Share' },
|
|
|
|
replyAll: { id: 'status.replyAll', defaultMessage: 'Reply to thread' },
|
|
|
|
repost: { id: 'repost', defaultMessage: 'Repost' },
|
|
|
|
quote: { id: 'status.quote', defaultMessage: 'Quote' },
|
2020-05-07 00:40:54 +01:00
|
|
|
repost_private: { id: 'status.repost', defaultMessage: 'Repost' },
|
2020-05-01 06:50:27 +01:00
|
|
|
cancel_repost_private: { id: 'status.cancel_repost_private', defaultMessage: 'Remove Repost' },
|
2020-03-26 03:11:32 +00:00
|
|
|
cannot_repost: { id: 'status.cannot_repost', defaultMessage: 'This post cannot be reposted' },
|
|
|
|
cannot_quote: { id: 'status.cannot_quote', defaultMessage: 'This post cannot be quoted' },
|
|
|
|
like: { id: 'status.like', defaultMessage: 'Like' },
|
|
|
|
report: { id: 'status.report', defaultMessage: 'Report @{name}' },
|
|
|
|
muteConversation: { id: 'status.mute_conversation', defaultMessage: 'Mute conversation' },
|
|
|
|
unmuteConversation: { id: 'status.unmute_conversation', defaultMessage: 'Unmute conversation' },
|
|
|
|
pin: { id: 'status.pin', defaultMessage: 'Pin on profile' },
|
|
|
|
unpin: { id: 'status.unpin', defaultMessage: 'Unpin from profile' },
|
|
|
|
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' },
|
|
|
|
group_remove_account: { id: 'status.remove_account_from_group', defaultMessage: 'Remove account from group' },
|
|
|
|
group_remove_post: { id: 'status.remove_post_from_group', defaultMessage: 'Remove status from group' },
|
2020-05-07 00:40:54 +01:00
|
|
|
repostWithComment: { id: 'repost_with_comment', defaultMessage: 'Repost with comment' },
|
2020-05-27 06:13:46 +01:00
|
|
|
embed: { id: 'status.embed', defaultMessage: 'Embed' },
|
|
|
|
email: { id: 'status.email', defaultMessage: 'Email this gab' },
|
|
|
|
copy: { id: 'status.copy', defaultMessage: 'Copy link to status' },
|
2020-03-26 03:11:32 +00:00
|
|
|
})
|
2020-03-25 03:08:43 +00:00
|
|
|
|
2020-05-07 00:40:54 +01:00
|
|
|
const mapStateToProps = (state, { status }) => {
|
|
|
|
if (!me) return null
|
2020-05-01 06:50:27 +01:00
|
|
|
|
2020-05-07 00:40:54 +01:00
|
|
|
const groupId = status ? status.getIn(['group', 'id']) : undefined
|
|
|
|
const groupRelationships = state.getIn(['group_relationships', groupId])
|
|
|
|
|
|
|
|
return {
|
|
|
|
groupId,
|
|
|
|
groupRelationships,
|
|
|
|
}
|
|
|
|
}
|
2020-05-01 06:50:27 +01:00
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
|
|
|
2020-05-07 00:40:54 +01:00
|
|
|
onMuteConversation(status) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
|
|
|
|
if (status.get('muted')) {
|
|
|
|
dispatch(unmuteStatus(status.get('id')))
|
|
|
|
} else {
|
|
|
|
dispatch(muteStatus(status.get('id')))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onPin(status) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
|
|
|
|
if (status.get('pinned')) {
|
|
|
|
dispatch(unpin(status))
|
|
|
|
} else {
|
|
|
|
dispatch(pin(status))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onQuote(status, router) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
|
|
|
|
dispatch((_, getState) => {
|
|
|
|
const state = getState()
|
|
|
|
if (state.getIn(['compose', 'text']).trim().length !== 0) {
|
|
|
|
dispatch(openModal(MODAL_CONFIRM, {
|
|
|
|
message: intl.formatMessage(messages.quoteMessage),
|
|
|
|
confirm: intl.formatMessage(messages.quoteConfirm),
|
|
|
|
onConfirm: () => dispatch(quoteCompose(status, router)),
|
|
|
|
}))
|
|
|
|
} else {
|
|
|
|
dispatch(quoteCompose(status, router))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
onRepost(status) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
const alreadyReposted = status.get('reblogged')
|
|
|
|
|
|
|
|
if (boostModal && !alreadyReposted) {
|
|
|
|
dispatch(openModal(MODAL_BOOST, {
|
|
|
|
status,
|
|
|
|
onRepost: () => dispatch(repost(status)),
|
|
|
|
}))
|
|
|
|
} else {
|
|
|
|
if (alreadyReposted) {
|
|
|
|
dispatch(unrepost(status))
|
|
|
|
} else {
|
|
|
|
dispatch(repost(status))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onDelete(status, history) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
|
|
|
|
if (!deleteModal) {
|
|
|
|
dispatch(deleteStatus(status.get('id'), history))
|
|
|
|
} else {
|
|
|
|
dispatch(openModal('CONFIRM', {
|
|
|
|
message: <FormattedMessage id='confirmations.delete.message' defaultMessage='Are you sure you want to delete this status?' />,
|
|
|
|
confirm: <FormattedMessage id='confirmations.delete.confirm' defaultMessage='Delete' />,
|
|
|
|
onConfirm: () => dispatch(deleteStatus(status.get('id'), history)),
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onEdit(status) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
dispatch(editStatus(status))
|
|
|
|
},
|
|
|
|
|
|
|
|
onMute(account) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
dispatch(initMuteModal(account))
|
|
|
|
},
|
|
|
|
|
|
|
|
onBlock(status) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
const account = status.get('account')
|
|
|
|
dispatch(openModal('BLOCK_ACCOUNT', {
|
|
|
|
accountId: account.get('id'),
|
|
|
|
}))
|
|
|
|
},
|
|
|
|
|
|
|
|
onReport(status) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
dispatch(initReport(status.get('account'), status))
|
|
|
|
},
|
|
|
|
|
|
|
|
onGroupRemoveAccount(groupId, accountId) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
dispatch(createRemovedAccount(groupId, accountId))
|
|
|
|
},
|
|
|
|
|
|
|
|
onGroupRemoveStatus(groupId, statusId) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
dispatch(groupRemoveStatus(groupId, statusId))
|
|
|
|
},
|
|
|
|
|
|
|
|
onFetchGroupRelationships(groupId) {
|
|
|
|
dispatch(fetchGroupRelationships([groupId]))
|
2020-05-27 06:13:46 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
onOpenEmbedModal(url) {
|
|
|
|
dispatch(closePopover())
|
|
|
|
dispatch(openModal(MODAL_EMBED, {
|
|
|
|
url,
|
|
|
|
}))
|
|
|
|
},
|
|
|
|
|
|
|
|
onClosePopover: () => dispatch(closePopover()),
|
2020-05-01 06:50:27 +01:00
|
|
|
})
|
|
|
|
|
2020-03-26 03:11:32 +00:00
|
|
|
export default
|
|
|
|
@injectIntl
|
2020-05-01 06:50:27 +01:00
|
|
|
@connect(mapStateToProps, mapDispatchToProps)
|
2020-03-26 03:11:32 +00:00
|
|
|
class StatusOptionsPopover extends ImmutablePureComponent {
|
2020-05-01 06:50:27 +01:00
|
|
|
|
2020-05-15 04:17:31 +01:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
}
|
|
|
|
|
2020-03-26 03:11:32 +00:00
|
|
|
static propTypes = {
|
|
|
|
status: ImmutablePropTypes.map.isRequired,
|
2020-05-07 00:40:54 +01:00
|
|
|
groupRelationships: ImmutablePropTypes.map,
|
|
|
|
groupId: PropTypes.string,
|
|
|
|
onQuote: PropTypes.func.isRequired,
|
|
|
|
onRepost: PropTypes.func.isRequired,
|
|
|
|
onDelete: PropTypes.func.isRequired,
|
|
|
|
onMute: PropTypes.func.isRequired,
|
|
|
|
onBlock: PropTypes.func.isRequired,
|
|
|
|
onReport: PropTypes.func.isRequired,
|
|
|
|
onMuteConversation: PropTypes.func.isRequired,
|
|
|
|
onPin: PropTypes.func.isRequired,
|
2020-03-26 03:11:32 +00:00
|
|
|
intl: PropTypes.object.isRequired,
|
2020-05-07 00:40:54 +01:00
|
|
|
onFetchGroupRelationships: PropTypes.func.isRequired,
|
2020-05-27 06:13:46 +01:00
|
|
|
onOpenEmbedModal: PropTypes.func.isRequired,
|
|
|
|
onClosePopover: PropTypes.func.isRequired,
|
2020-05-13 01:36:54 +01:00
|
|
|
isXS: PropTypes.bool,
|
2020-03-26 03:11:32 +00:00
|
|
|
}
|
2020-04-22 06:00:11 +01:00
|
|
|
|
2020-05-01 06:50:27 +01:00
|
|
|
updateOnProps = [
|
|
|
|
'status',
|
2020-05-07 00:40:54 +01:00
|
|
|
'groupRelationships',
|
2020-05-13 01:36:54 +01:00
|
|
|
'isXS',
|
2020-05-01 06:50:27 +01:00
|
|
|
]
|
2020-04-22 06:00:11 +01:00
|
|
|
|
2020-05-07 00:40:54 +01:00
|
|
|
componentDidMount() {
|
|
|
|
if (!this.props.groupRelationships && this.props.groupId) {
|
|
|
|
this.props.onFetchGroupRelationships(this.props.groupId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 06:00:11 +01:00
|
|
|
handleConversationMuteClick = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onMuteConversation(this.props.status)
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
2020-05-07 00:40:54 +01:00
|
|
|
|
2020-04-22 06:00:11 +01:00
|
|
|
handleGroupRemoveAccount = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
const { status } = this.props
|
2020-03-25 03:08:43 +00:00
|
|
|
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onGroupRemoveAccount(status.getIn(['group', 'id']), status.getIn(['account', 'id']))
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
2020-03-04 03:45:16 +00:00
|
|
|
|
2020-04-22 06:00:11 +01:00
|
|
|
handleGroupRemovePost = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
const { status } = this.props
|
2020-03-25 03:08:43 +00:00
|
|
|
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onGroupRemoveStatus(status.getIn(['group', 'id']), status.get('id'))
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
handleReport = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onReport(this.props.status)
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
handleBlockClick = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onBlock(this.props.status)
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
handleMuteClick = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onMute(this.props.status.get('account'))
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
handlePinClick = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onPin(this.props.status)
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
handleDeleteClick = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onDelete(this.props.status)
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
handleEditClick = () => {
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onEdit(this.props.status)
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
handleRepostClick = (e) => {
|
2020-05-07 00:40:54 +01:00
|
|
|
this.props.onRepost(this.props.status, e)
|
2020-04-22 06:00:11 +01:00
|
|
|
}
|
|
|
|
|
2020-05-15 04:36:10 +01:00
|
|
|
handleQuoteClick = (e) => {
|
|
|
|
this.props.onQuote(this.props.status, this.context.router)
|
|
|
|
}
|
|
|
|
|
2020-05-27 06:13:46 +01:00
|
|
|
handleOnOpenEmbedModal = () => {
|
|
|
|
this.props.onOpenEmbedModal(this.props.status.get('url'))
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
document.body.removeChild(textarea);
|
2020-07-06 21:13:44 +01:00
|
|
|
this.handleClosePopover()
|
|
|
|
}
|
|
|
|
|
|
|
|
handleClosePopover = () => {
|
2020-05-27 06:13:46 +01:00
|
|
|
this.props.onClosePopover()
|
|
|
|
}
|
|
|
|
|
2020-05-01 06:50:27 +01:00
|
|
|
render() {
|
2020-04-22 06:00:11 +01:00
|
|
|
const {
|
|
|
|
status,
|
|
|
|
intl,
|
2020-05-07 00:40:54 +01:00
|
|
|
groupRelationships,
|
2020-05-13 01:36:54 +01:00
|
|
|
isXS,
|
2020-04-22 06:00:11 +01:00
|
|
|
} = this.props
|
|
|
|
|
|
|
|
const mutingConversation = status.get('muted')
|
|
|
|
const publicStatus = ['public', 'unlisted'].includes(status.get('visibility'))
|
2020-05-07 00:40:54 +01:00
|
|
|
const isReply = !!status.get('in_reply_to_id')
|
|
|
|
const withGroupAdmin = !!groupRelationships ? groupRelationships.get('admin') : false
|
2020-05-27 06:13:46 +01:00
|
|
|
const mailToHref = !status ? undefined : `mailto:?subject=Gab&body=${status.get('url')}`
|
2020-04-22 06:00:11 +01:00
|
|
|
|
2020-05-07 00:40:54 +01:00
|
|
|
let menu = []
|
2020-03-25 03:08:43 +00:00
|
|
|
|
2020-05-01 06:50:27 +01:00
|
|
|
if (me) {
|
2020-05-07 00:40:54 +01:00
|
|
|
if (status.getIn(['account', 'id']) === me) {
|
2020-03-26 03:11:32 +00:00
|
|
|
menu.push({
|
2020-05-01 06:50:27 +01:00
|
|
|
icon: 'audio-mute',
|
2020-03-26 03:11:32 +00:00
|
|
|
hideArrow: true,
|
2020-05-01 06:50:27 +01:00
|
|
|
title: intl.formatMessage(mutingConversation ? messages.unmuteConversation : messages.muteConversation),
|
|
|
|
onClick: this.handleConversationMuteClick,
|
2020-03-26 03:11:32 +00:00
|
|
|
})
|
2020-05-07 00:40:54 +01:00
|
|
|
}
|
2020-05-01 06:50:27 +01:00
|
|
|
|
2020-05-07 00:40:54 +01:00
|
|
|
if (isReply) {
|
|
|
|
menu.push({
|
|
|
|
icon: 'repost',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(status.get('reblogged') ? messages.cancel_repost_private : messages.repost_private),
|
|
|
|
onClick: this.handleRepostClick,
|
|
|
|
})
|
|
|
|
menu.push({
|
|
|
|
icon: 'pencil',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.repostWithComment),
|
2020-05-15 04:36:10 +01:00
|
|
|
onClick: this.handleQuoteClick,
|
2020-05-07 00:40:54 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status.getIn(['account', 'id']) === me) {
|
|
|
|
if (publicStatus) {
|
2020-03-26 03:11:32 +00:00
|
|
|
menu.push({
|
2020-05-01 06:50:27 +01:00
|
|
|
icon: 'pin',
|
2020-04-22 06:00:11 +01:00
|
|
|
hideArrow: true,
|
2020-05-01 06:50:27 +01:00
|
|
|
title: intl.formatMessage(status.get('pinned') ? messages.unpin : messages.pin),
|
|
|
|
onClick: this.handlePinClick,
|
2020-03-26 03:11:32 +00:00
|
|
|
})
|
2020-05-07 00:40:54 +01:00
|
|
|
}
|
|
|
|
|
2020-04-22 06:00:11 +01:00
|
|
|
menu.push({
|
2020-05-01 06:50:27 +01:00
|
|
|
icon: 'trash',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.delete),
|
2020-05-07 00:40:54 +01:00
|
|
|
onClick: this.handleDeleteClick,
|
|
|
|
})
|
2020-04-22 06:00:11 +01:00
|
|
|
menu.push({
|
2020-05-01 06:50:27 +01:00
|
|
|
icon: 'pencil',
|
|
|
|
hideArrow: true,
|
2020-05-07 00:40:54 +01:00
|
|
|
title: intl.formatMessage(messages.edit),
|
|
|
|
onClick: this.handleEditClick,
|
|
|
|
})
|
|
|
|
} else {
|
2020-05-01 06:50:27 +01:00
|
|
|
menu.push({
|
|
|
|
icon: 'audio-mute',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.mute, { name: status.getIn(['account', 'username']) }),
|
2020-05-07 00:40:54 +01:00
|
|
|
onClick: this.handleMuteClick,
|
|
|
|
})
|
2020-05-01 06:50:27 +01:00
|
|
|
menu.push({
|
2020-05-07 00:40:54 +01:00
|
|
|
icon: 'block',
|
2020-05-01 06:50:27 +01:00
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.block, { name: status.getIn(['account', 'username']) }),
|
2020-05-07 00:40:54 +01:00
|
|
|
onClick: this.handleBlockClick,
|
|
|
|
})
|
2020-05-01 06:50:27 +01:00
|
|
|
menu.push({
|
2020-05-07 00:40:54 +01:00
|
|
|
icon: 'warning',
|
2020-05-01 06:50:27 +01:00
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.report, { name: status.getIn(['account', 'username']) }),
|
2020-05-07 00:40:54 +01:00
|
|
|
onClick: this.handleReport,
|
|
|
|
})
|
|
|
|
}
|
2020-05-01 06:50:27 +01:00
|
|
|
}
|
2020-03-26 03:11:32 +00:00
|
|
|
|
2020-07-06 21:13:44 +01:00
|
|
|
menu.push(null)
|
2020-05-27 06:13:46 +01:00
|
|
|
menu.push({
|
|
|
|
icon: 'copy',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.copy),
|
|
|
|
onClick: this.handleCopy,
|
|
|
|
})
|
|
|
|
menu.push({
|
|
|
|
icon: 'email',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.email),
|
|
|
|
href: mailToHref,
|
|
|
|
})
|
|
|
|
menu.push({
|
|
|
|
icon: 'code',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.embed),
|
|
|
|
onClick: this.handleOnOpenEmbedModal,
|
|
|
|
})
|
|
|
|
|
2020-07-06 21:13:44 +01:00
|
|
|
if (withGroupAdmin) {
|
|
|
|
menu.push(null)
|
|
|
|
menu.push({
|
|
|
|
icon: 'trash',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.group_remove_account),
|
|
|
|
onClick: this.handleGroupRemoveAccount,
|
|
|
|
})
|
|
|
|
menu.push({
|
|
|
|
icon: 'trash',
|
|
|
|
hideArrow: true,
|
|
|
|
title: intl.formatMessage(messages.group_remove_post),
|
|
|
|
onClick: this.handleGroupRemovePost,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isStaff) {
|
|
|
|
menu.push(null)
|
|
|
|
|
|
|
|
menu.push({
|
|
|
|
title: intl.formatMessage(messages.admin_account, { name: status.getIn(['account', 'username']) }),
|
|
|
|
href: `/admin/accounts/${status.getIn(['account', 'id'])}`
|
|
|
|
})
|
|
|
|
menu.push({
|
|
|
|
title: intl.formatMessage(messages.admin_status),
|
|
|
|
href: `/admin/accounts/${status.getIn(['account', 'id'])}/statuses/${status.get('id')}`
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:56:07 +00:00
|
|
|
return (
|
2020-07-06 21:13:44 +01:00
|
|
|
<PopoverLayout
|
|
|
|
isXS={isXS}
|
|
|
|
onClose={this.handleClosePopover}
|
|
|
|
>
|
2020-03-25 03:08:43 +00:00
|
|
|
<List
|
2020-04-07 02:53:23 +01:00
|
|
|
size='large'
|
2020-03-25 03:08:43 +00:00
|
|
|
scrollKey='profile_options'
|
2020-05-01 06:50:27 +01:00
|
|
|
items={menu}
|
2020-03-25 03:08:43 +00:00
|
|
|
/>
|
|
|
|
</PopoverLayout>
|
2020-02-24 21:56:07 +00:00
|
|
|
)
|
|
|
|
}
|
2020-05-01 06:50:27 +01:00
|
|
|
|
2020-02-24 21:56:07 +00:00
|
|
|
}
|