* Add `emails.export_completed` notification to settings menu Signed-off-by: AKP <tom@tdpain.net> * Don't send email when export_completed notifications are disabled Signed-off-by: AKP <tom@tdpain.net> * Automatically subscribe new users to `export_completed` notifications Signed-off-by: AKP <tom@tdpain.net> * Alter secondary text on export page to mention optional notifications Signed-off-by: AKP <tom@tdpain.net> * Alter toast text on collection export for optional notifications Signed-off-by: AKP <tom@tdpain.net> * Only subscribe new admins to export notifs Signed-off-by: AKP <tom@tdpain.net> * Move `export_completed` notification decision into `beforeSend` Signed-off-by: AKP <tom@tdpain.net> * Update server/emails/templates/ExportFailureEmail.tsx Co-authored-by: Tom Moor <tom.moor@gmail.com> * Update server/emails/templates/ExportSuccessEmail.tsx Co-authored-by: Tom Moor <tom.moor@gmail.com> Signed-off-by: AKP <tom@tdpain.net> Co-authored-by: Tom Moor <tom.moor@gmail.com>
79 lines
2.0 KiB
TypeScript
79 lines
2.0 KiB
TypeScript
import * as React from "react";
|
||
import { NotificationSetting } from "@server/models";
|
||
import BaseEmail from "./BaseEmail";
|
||
import Body from "./components/Body";
|
||
import Button from "./components/Button";
|
||
import EmailTemplate from "./components/EmailLayout";
|
||
import EmptySpace from "./components/EmptySpace";
|
||
import Footer from "./components/Footer";
|
||
import Header from "./components/Header";
|
||
import Heading from "./components/Heading";
|
||
|
||
type Props = {
|
||
to: string;
|
||
userId: string;
|
||
teamUrl: string;
|
||
teamId: string;
|
||
};
|
||
|
||
/**
|
||
* Email sent to a user when their data export has failed for some reason.
|
||
*/
|
||
export default class ExportFailureEmail extends BaseEmail<Props> {
|
||
protected async beforeSend({ userId, teamId }: Props) {
|
||
const notificationSetting = await NotificationSetting.findOne({
|
||
where: {
|
||
userId,
|
||
teamId,
|
||
event: "emails.export_completed",
|
||
},
|
||
});
|
||
|
||
return notificationSetting !== null;
|
||
}
|
||
|
||
protected subject() {
|
||
return "Your requested export";
|
||
}
|
||
|
||
protected preview() {
|
||
return "Sorry, your requested data export has failed";
|
||
}
|
||
|
||
protected renderAsText() {
|
||
return `
|
||
Your Data Export
|
||
|
||
Sorry, your requested data export has failed, please visit the admin
|
||
section to try again – if the problem persists please contact support.
|
||
`;
|
||
}
|
||
|
||
protected render({ teamUrl }: Props) {
|
||
return (
|
||
<EmailTemplate>
|
||
<Header />
|
||
<Body>
|
||
<Heading>Your Data Export</Heading>
|
||
<p>
|
||
Sorry, your requested data export has failed, please visit the{" "}
|
||
<a
|
||
href={`${teamUrl}/settings/export`}
|
||
rel="noreferrer"
|
||
target="_blank"
|
||
>
|
||
admin section
|
||
</a>
|
||
. to try again – if the problem persists please contact support.
|
||
</p>
|
||
<EmptySpace height={10} />
|
||
<p>
|
||
<Button href={`${teamUrl}/settings/export`}>Go to export</Button>
|
||
</p>
|
||
</Body>
|
||
<Footer />
|
||
</EmailTemplate>
|
||
);
|
||
}
|
||
}
|