159 lines
5.3 KiB
TypeScript
159 lines
5.3 KiB
TypeScript
import React, { useCallback, useState } from 'react';
|
|
import { useIntl, FormattedMessage, defineMessages } from 'react-intl';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import { closeReports } from 'soapbox/actions/admin';
|
|
import { deactivateUserModal, deleteUserModal } from 'soapbox/actions/moderation';
|
|
import snackbar from 'soapbox/actions/snackbar';
|
|
import Avatar from 'soapbox/components/avatar';
|
|
import HoverRefWrapper from 'soapbox/components/hover-ref-wrapper';
|
|
import { Accordion, Button, Stack, HStack, Text } from 'soapbox/components/ui';
|
|
import DropdownMenu from 'soapbox/containers/dropdown-menu-container';
|
|
import { useAppDispatch, useAppSelector } from 'soapbox/hooks';
|
|
import { makeGetReport } from 'soapbox/selectors';
|
|
|
|
import ReportStatus from './report-status';
|
|
|
|
import type { List as ImmutableList } from 'immutable';
|
|
import type { Account, AdminReport, Status } from 'soapbox/types/entities';
|
|
|
|
const messages = defineMessages({
|
|
reportClosed: { id: 'admin.reports.report_closed_message', defaultMessage: 'Report on @{name} was closed' },
|
|
deactivateUser: { id: 'admin.users.actions.deactivate_user', defaultMessage: 'Deactivate @{name}' },
|
|
deleteUser: { id: 'admin.users.actions.delete_user', defaultMessage: 'Delete @{name}' },
|
|
});
|
|
|
|
interface IReport {
|
|
id: string;
|
|
}
|
|
|
|
const Report: React.FC<IReport> = ({ id }) => {
|
|
const intl = useIntl();
|
|
const dispatch = useAppDispatch();
|
|
|
|
const getReport = useCallback(makeGetReport(), []);
|
|
|
|
const report = useAppSelector((state) => getReport(state, id) as AdminReport | undefined);
|
|
|
|
const [accordionExpanded, setAccordionExpanded] = useState(false);
|
|
|
|
if (!report) return null;
|
|
|
|
const account = report.account as Account;
|
|
const targetAccount = report.target_account as Account;
|
|
|
|
const makeMenu = () => {
|
|
return [{
|
|
text: intl.formatMessage(messages.deactivateUser, { name: targetAccount.username }),
|
|
action: handleDeactivateUser,
|
|
icon: require('@tabler/icons/hourglass-empty.svg'),
|
|
}, {
|
|
text: intl.formatMessage(messages.deleteUser, { name: targetAccount.username }),
|
|
action: handleDeleteUser,
|
|
icon: require('@tabler/icons/trash.svg'),
|
|
destructive: true,
|
|
}];
|
|
};
|
|
|
|
const handleCloseReport = () => {
|
|
dispatch(closeReports([report.id])).then(() => {
|
|
const message = intl.formatMessage(messages.reportClosed, { name: targetAccount.username as string });
|
|
dispatch(snackbar.success(message));
|
|
}).catch(() => {});
|
|
};
|
|
|
|
const handleDeactivateUser = () => {
|
|
const accountId = targetAccount.id;
|
|
dispatch(deactivateUserModal(intl, accountId, () => handleCloseReport()));
|
|
};
|
|
|
|
const handleDeleteUser = () => {
|
|
const accountId = targetAccount.id as string;
|
|
dispatch(deleteUserModal(intl, accountId, () => handleCloseReport()));
|
|
};
|
|
|
|
const handleAccordionToggle = (setting: boolean) => {
|
|
setAccordionExpanded(setting);
|
|
};
|
|
|
|
const menu = makeMenu();
|
|
const statuses = report.statuses as ImmutableList<Status>;
|
|
const statusCount = statuses.count();
|
|
const acct = targetAccount.acct as string;
|
|
const reporterAcct = account.acct as string;
|
|
|
|
return (
|
|
<HStack space={3} className='p-3' key={report.id}>
|
|
<HoverRefWrapper accountId={targetAccount.id} inline>
|
|
<Link to={`/@${acct}`} title={acct}>
|
|
<Avatar account={targetAccount} size={32} />
|
|
</Link>
|
|
</HoverRefWrapper>
|
|
|
|
<Stack space={3} className='overflow-hidden' grow>
|
|
<Text tag='h4' weight='bold'>
|
|
<FormattedMessage
|
|
id='admin.reports.report_title'
|
|
defaultMessage='Report on {acct}'
|
|
values={{ acct: (
|
|
<HoverRefWrapper accountId={account.id} inline>
|
|
<Link to={`/@${acct}`} title={acct}>@{acct}</Link>
|
|
</HoverRefWrapper>
|
|
) }}
|
|
/>
|
|
</Text>
|
|
|
|
{statusCount > 0 && (
|
|
<Accordion
|
|
headline={`Reported posts (${statusCount})`}
|
|
expanded={accordionExpanded}
|
|
onToggle={handleAccordionToggle}
|
|
>
|
|
<Stack space={4}>
|
|
{statuses.map(status => (
|
|
<ReportStatus
|
|
key={status.id}
|
|
report={report}
|
|
status={status}
|
|
/>
|
|
))}
|
|
</Stack>
|
|
</Accordion>
|
|
)}
|
|
|
|
<Stack>
|
|
{(report.comment || '').length > 0 && (
|
|
<Text
|
|
tag='blockquote'
|
|
dangerouslySetInnerHTML={{ __html: report.comment }}
|
|
/>
|
|
)}
|
|
|
|
<HStack space={1}>
|
|
<Text theme='muted' tag='span'>—</Text>
|
|
|
|
<HoverRefWrapper accountId={account.id} inline>
|
|
<Link
|
|
to={`/@${reporterAcct}`}
|
|
title={reporterAcct}
|
|
className='text-primary-600 dark:text-accent-blue hover:underline'
|
|
>
|
|
@{reporterAcct}
|
|
</Link>
|
|
</HoverRefWrapper>
|
|
</HStack>
|
|
</Stack>
|
|
</Stack>
|
|
|
|
<HStack space={2} alignItems='start' className='flex-none'>
|
|
<Button onClick={handleCloseReport}>
|
|
<FormattedMessage id='admin.reports.actions.close' defaultMessage='Close' />
|
|
</Button>
|
|
|
|
<DropdownMenu items={menu} src={require('@tabler/icons/dots-vertical.svg')} />
|
|
</HStack>
|
|
</HStack>
|
|
);
|
|
};
|
|
|
|
export default Report;
|