File size: 4,446 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
// @flow
import React, { useState } from 'react';
import { Manager, Reference, Popper } from 'react-popper';
import { connect } from 'react-redux';
import compose from 'recompose/compose';
import { openModal } from 'src/actions/modals';
import Flyout from 'src/components/flyout';
import OutsideClickHandler from 'src/components/outsideClickHandler';
import Icon from 'src/components/icon';
import { TextButton } from 'src/components/button';
import { withCurrentUser } from 'src/components/withCurrentUser';
import { FlyoutRow, DropWrap, Label } from '../style';
type Props = {
thread: Object,
// Injected
currentUser: Object,
dispatch: Function,
};
const ActionsDropdown = (props: Props) => {
const { thread, dispatch, currentUser } = props;
if (!currentUser) return null;
const {
channel: { channelPermissions },
community: { communityPermissions },
} = thread;
const isThreadAuthor =
currentUser && currentUser.id === thread.author.user.id;
const isChannelModerator = currentUser && channelPermissions.isModerator;
const isCommunityModerator = currentUser && communityPermissions.isModerator;
const isChannelOwner = currentUser && channelPermissions.isOwner;
const isCommunityOwner = currentUser && communityPermissions.isOwner;
const shouldRenderDeleteThreadAction =
isThreadAuthor ||
isChannelModerator ||
isCommunityModerator ||
isChannelOwner ||
isCommunityOwner;
const triggerDelete = e => {
e.preventDefault();
let message;
if (isCommunityOwner && !thread.isAuthor) {
message = `You are about to delete another person's thread. As the owner of the ${
thread.community.name
} community, you have permission to do this. The thread author will be notified that this thread was deleted.`;
} else if (isChannelOwner && !thread.isAuthor) {
message = `You are about to delete another person's thread. As the owner of the ${
thread.channel.name
} channel, you have permission to do this. The thread author will be notified that this thread was deleted.`;
} else {
message = 'Are you sure you want to delete this thread?';
}
return dispatch(
openModal('DELETE_DOUBLE_CHECK_MODAL', {
id: thread.id,
entity: 'thread',
message,
extraProps: {
thread,
},
})
);
};
const [flyoutOpen, setFlyoutOpen] = useState(false);
if (!shouldRenderDeleteThreadAction) {
return null;
}
return (
<DropWrap style={{ marginRight: '8px' }}>
<Manager>
<Reference>
{({ ref }) => {
return (
<span ref={ref}>
<Icon
glyph="settings"
onClick={() => setFlyoutOpen(!flyoutOpen)}
data-cy="thread-actions-dropdown-trigger"
/>
</span>
);
}}
</Reference>
{flyoutOpen && (
<OutsideClickHandler onOutsideClick={() => setFlyoutOpen(false)}>
<Popper
modifiers={{
flip: {
boundariesElement: 'viewport',
behavior: ['top', 'bottom', 'top'],
},
hide: { enable: false },
}}
>
{({ style, ref }) => {
return (
<div
ref={ref}
style={{
position: 'relative',
right: '170px',
top: '-40px',
}}
>
<Flyout data-cy="thread-actions-dropdown" style={style}>
{shouldRenderDeleteThreadAction && (
<FlyoutRow>
<TextButton
onClick={triggerDelete}
data-cy={'thread-dropdown-delete'}
>
<Icon size={24} glyph={'delete'} />
<Label>Delete</Label>
</TextButton>
</FlyoutRow>
)}
</Flyout>
</div>
);
}}
</Popper>
</OutsideClickHandler>
)}
</Manager>
</DropWrap>
);
};
export default compose(
withCurrentUser,
connect()
)(ActionsDropdown);
|