mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import { msg } from '@lingui/core/macro';
|
|
import { useLingui } from '@lingui/react';
|
|
import { Trans } from '@lingui/react/macro';
|
|
import { Link2Icon } from 'lucide-react';
|
|
|
|
import { useCopyToClipboard } from '@documenso/lib/client-only/hooks/use-copy-to-clipboard';
|
|
import { formatDirectTemplatePath } from '@documenso/lib/utils/templates';
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
|
|
|
type TemplateDirectLinkBadgeProps = {
|
|
token: string;
|
|
enabled: boolean;
|
|
className?: string;
|
|
};
|
|
|
|
export const TemplateDirectLinkBadge = ({
|
|
token,
|
|
enabled,
|
|
className,
|
|
}: TemplateDirectLinkBadgeProps) => {
|
|
const [, copy] = useCopyToClipboard();
|
|
|
|
const { _ } = useLingui();
|
|
const { toast } = useToast();
|
|
|
|
const onCopyClick = async (token: string) =>
|
|
copy(formatDirectTemplatePath(token)).then(() => {
|
|
toast({
|
|
title: _(msg`Copied to clipboard`),
|
|
description: _(msg`The direct link has been copied to your clipboard`),
|
|
});
|
|
});
|
|
|
|
return (
|
|
<button
|
|
title="Copy direct link"
|
|
className={cn(
|
|
'flex flex-row items-center rounded border border-neutral-300 bg-neutral-200 px-1.5 py-0.5 text-xs dark:border-neutral-500 dark:bg-neutral-600',
|
|
className,
|
|
)}
|
|
onClick={async () => onCopyClick(token)}
|
|
>
|
|
<Link2Icon className="mr-1 h-3 w-3" />
|
|
{enabled ? <Trans>direct link</Trans> : <Trans>direct link disabled</Trans>}
|
|
</button>
|
|
);
|
|
};
|