46 lines
1.7 KiB
TypeScript
46 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { defineMessages, useIntl } from 'react-intl';
|
|
import { useDispatch } from 'react-redux';
|
|
|
|
import { unblockDomain } from 'soapbox/actions/domain-blocks';
|
|
|
|
import { HStack, IconButton, Text } from './ui';
|
|
|
|
const messages = defineMessages({
|
|
blockDomainConfirm: { id: 'confirmations.domain_block.confirm', defaultMessage: 'Hide entire domain' },
|
|
unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unhide {domain}' },
|
|
});
|
|
|
|
interface IDomain {
|
|
domain: string,
|
|
}
|
|
|
|
const Domain: React.FC<IDomain> = ({ domain }) => {
|
|
const dispatch = useDispatch();
|
|
const intl = useIntl();
|
|
|
|
// const onBlockDomain = () => {
|
|
// dispatch(openModal('CONFIRM', {
|
|
// icon: require('@tabler/icons/ban.svg'),
|
|
// heading: <FormattedMessage id='confirmations.domain_block.heading' defaultMessage='Block {domain}' values={{ domain }} />,
|
|
// message: <FormattedMessage id='confirmations.domain_block.message' defaultMessage='Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable.' values={{ domain: <strong>{domain}</strong> }} />,
|
|
// confirm: intl.formatMessage(messages.blockDomainConfirm),
|
|
// onConfirm: () => dispatch(blockDomain(domain)),
|
|
// }));
|
|
// }
|
|
|
|
const handleDomainUnblock = () => {
|
|
dispatch(unblockDomain(domain));
|
|
};
|
|
|
|
return (
|
|
<HStack alignItems='center' justifyContent='between' space={1} className='p-2'>
|
|
<Text tag='span'>
|
|
{domain}
|
|
</Text>
|
|
<IconButton iconClassName='h-5 w-5' src={require('@tabler/icons/lock-open.svg')} title={intl.formatMessage(messages.unblockDomain, { domain })} onClick={handleDomainUnblock} />
|
|
</HStack>
|
|
);
|
|
};
|
|
|
|
export default Domain;
|