mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
Implemented Email Domains which allows Platform/Enterprise customers to send emails to recipients using their custom emails.
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
import { useLingui } from '@lingui/react/macro';
|
|
|
|
import { useCurrentOrganisation } from '@documenso/lib/client-only/providers/organisation';
|
|
import { trpc } from '@documenso/trpc/react';
|
|
import { SpinnerBox } from '@documenso/ui/primitives/spinner';
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
|
|
|
import {
|
|
EmailPreferencesForm,
|
|
type TEmailPreferencesFormSchema,
|
|
} from '~/components/forms/email-preferences-form';
|
|
import { SettingsHeader } from '~/components/general/settings-header';
|
|
import { appMetaTags } from '~/utils/meta';
|
|
|
|
export function meta() {
|
|
return appMetaTags('Email Preferences');
|
|
}
|
|
|
|
export default function OrganisationSettingsGeneral() {
|
|
const { t } = useLingui();
|
|
const { toast } = useToast();
|
|
|
|
const organisation = useCurrentOrganisation();
|
|
|
|
const { data: organisationWithSettings, isLoading: isLoadingOrganisation } =
|
|
trpc.organisation.get.useQuery({
|
|
organisationReference: organisation.url,
|
|
});
|
|
|
|
const { mutateAsync: updateOrganisationSettings } =
|
|
trpc.organisation.settings.update.useMutation();
|
|
|
|
const onEmailPreferencesSubmit = async (data: TEmailPreferencesFormSchema) => {
|
|
try {
|
|
const { emailId, emailReplyTo, emailDocumentSettings } = data;
|
|
|
|
await updateOrganisationSettings({
|
|
organisationId: organisation.id,
|
|
data: {
|
|
emailId,
|
|
emailReplyTo: emailReplyTo || null,
|
|
// emailReplyToName,
|
|
emailDocumentSettings,
|
|
},
|
|
});
|
|
|
|
toast({
|
|
title: t`Email preferences updated`,
|
|
description: t`Your email preferences have been updated`,
|
|
});
|
|
} catch (err) {
|
|
toast({
|
|
title: t`Something went wrong!`,
|
|
description: t`We were unable to update your email preferences at this time, please try again later`,
|
|
variant: 'destructive',
|
|
});
|
|
}
|
|
};
|
|
|
|
if (isLoadingOrganisation || !organisationWithSettings) {
|
|
return <SpinnerBox />;
|
|
}
|
|
|
|
return (
|
|
<div className="max-w-2xl">
|
|
<SettingsHeader
|
|
title={t`Email Preferences`}
|
|
subtitle={t`You can manage your email preferences here`}
|
|
/>
|
|
|
|
<section>
|
|
<EmailPreferencesForm
|
|
canInherit={false}
|
|
settings={organisationWithSettings.organisationGlobalSettings}
|
|
onFormSubmit={onEmailPreferencesSubmit}
|
|
/>
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|