45
common/resources/client/custom-domains/datatable/delete-domain-button.tsx
Executable file
45
common/resources/client/custom-domains/datatable/delete-domain-button.tsx
Executable file
@@ -0,0 +1,45 @@
|
||||
import {DialogTrigger} from '@common/ui/overlays/dialog/dialog-trigger';
|
||||
import {Button} from '@common/ui/buttons/button';
|
||||
import {Trans} from '@common/i18n/trans';
|
||||
import {ConfirmationDialog} from '@common/ui/overlays/dialog/confirmation-dialog';
|
||||
import React from 'react';
|
||||
import {useDeleteDomain} from '@common/custom-domains/datatable/requests/use-delete-domain';
|
||||
import {CustomDomain} from '@common/custom-domains/custom-domain';
|
||||
|
||||
interface DeleteDomainButtonProps {
|
||||
domain: CustomDomain;
|
||||
}
|
||||
export function DeleteDomainButton({domain}: DeleteDomainButtonProps) {
|
||||
const deleteDomain = useDeleteDomain();
|
||||
|
||||
return (
|
||||
<DialogTrigger
|
||||
type="modal"
|
||||
onClose={isConfirmed => {
|
||||
if (isConfirmed) {
|
||||
deleteDomain.mutate({domain});
|
||||
}
|
||||
}}
|
||||
>
|
||||
<Button
|
||||
variant="outline"
|
||||
color="danger"
|
||||
size="xs"
|
||||
disabled={deleteDomain.isPending}
|
||||
>
|
||||
<Trans message="Remove" />
|
||||
</Button>
|
||||
<ConfirmationDialog
|
||||
title={<Trans message="Remove domain?" />}
|
||||
body={
|
||||
<Trans
|
||||
message="Are you sure you want to remove “:domain“?"
|
||||
values={{domain: domain.host}}
|
||||
/>
|
||||
}
|
||||
confirm={<Trans message="Remove" />}
|
||||
isDanger
|
||||
/>
|
||||
</DialogTrigger>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user