chore: Move to Typescript (#2783)
This PR moves the entire project to Typescript. Due to the ~1000 ignores this will lead to a messy codebase for a while, but the churn is worth it – all of those ignore comments are places that were never type-safe previously. closes #1282
This commit is contained in:
52
server/emails/ExportSuccessEmail.tsx
Normal file
52
server/emails/ExportSuccessEmail.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
import * as React from "react";
|
||||
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";
|
||||
|
||||
export const exportEmailSuccessText = `
|
||||
Your Data Export
|
||||
|
||||
Your requested data export is complete, the exported files are also available in the admin section.
|
||||
`;
|
||||
|
||||
export const ExportSuccessEmail = ({
|
||||
id,
|
||||
teamUrl,
|
||||
}: {
|
||||
id: string;
|
||||
teamUrl: string;
|
||||
}) => {
|
||||
return (
|
||||
<EmailTemplate>
|
||||
<Header />
|
||||
|
||||
<Body>
|
||||
<Heading>Your Data Export</Heading>
|
||||
<p>
|
||||
Your requested data export is complete, the exported files are also
|
||||
available in the{" "}
|
||||
<a
|
||||
href={`${teamUrl}/settings/import-export`}
|
||||
rel="noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
admin section
|
||||
</a>
|
||||
.
|
||||
</p>
|
||||
<EmptySpace height={10} />
|
||||
<p>
|
||||
<Button href={`${teamUrl}/api/fileOperations.redirect?id=${id}`}>
|
||||
Download
|
||||
</Button>
|
||||
</p>
|
||||
</Body>
|
||||
|
||||
<Footer />
|
||||
</EmailTemplate>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user