'use client'; import { trpc } from '@documenso/trpc/react'; import { Button } from '@documenso/ui/primitives/button'; import { useToast } from '@documenso/ui/primitives/use-toast'; export type TeamBillingPortalButtonProps = { buttonProps?: React.ComponentProps; teamId: number; }; export const TeamBillingPortalButton = ({ buttonProps, teamId }: TeamBillingPortalButtonProps) => { const { toast } = useToast(); const { mutateAsync: createBillingPortal, isLoading } = trpc.team.createBillingPortal.useMutation(); const handleCreatePortal = async () => { try { const sessionUrl = await createBillingPortal({ teamId }); window.open(sessionUrl, '_blank'); } catch (err) { toast({ title: 'Something went wrong', description: 'We are unable to proceed to the billing portal at this time. Please try again, or contact support.', variant: 'destructive', duration: 10000, }); } }; return ( ); };