Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
45 lines
1.0 KiB
TypeScript
45 lines
1.0 KiB
TypeScript
import { useCallback } from "react";
|
|
|
|
import { defineMessages, useIntl } from "react-intl";
|
|
|
|
import { IconButton } from "./icon_button";
|
|
|
|
const messages = defineMessages({
|
|
unblockDomain: {
|
|
id: "account.unblock_domain",
|
|
defaultMessage: "Unblock domain {domain}",
|
|
},
|
|
});
|
|
|
|
interface Props {
|
|
domain: string,
|
|
onUnblockDomain: (domain: string) => void,
|
|
}
|
|
|
|
export const Domain: React.FC<Props> = ({ domain, onUnblockDomain }) => {
|
|
const intl = useIntl();
|
|
|
|
const handleDomainUnblock = useCallback(() => {
|
|
onUnblockDomain(domain);
|
|
}, [domain, onUnblockDomain]);
|
|
|
|
return (
|
|
<div className='domain'>
|
|
<div className='domain__wrapper'>
|
|
<span className='domain__domain-name'>
|
|
<strong>{domain}</strong>
|
|
</span>
|
|
|
|
<div className='domain__buttons'>
|
|
<IconButton
|
|
active
|
|
icon='unlock'
|
|
title={intl.formatMessage(messages.unblockDomain, { domain })}
|
|
onClick={handleDomainUnblock}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|