- pgSchema "mesh" with 4 tables isolating the peer mesh domain - Enums: visibility, transport, tier, role - audit_log is metadata-only (E2E encryption enforced at broker/client) - Cascade on mesh delete, soft-delete via archivedAt/revokedAt Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { Heading, Preview, Text } from "@react-email/components";
|
|
import * as React from "react";
|
|
|
|
import { getTranslation } from "@turbostarter/i18n/server";
|
|
import { getOrigin } from "@turbostarter/shared/utils";
|
|
|
|
import { Button } from "../_components/button";
|
|
import { Layout } from "../_components/layout/layout";
|
|
|
|
import type {
|
|
EmailVariables,
|
|
EmailTemplate,
|
|
CommonEmailProps,
|
|
} from "../../types";
|
|
|
|
type Props = EmailVariables[typeof EmailTemplate.MAGIC_LINK] & CommonEmailProps;
|
|
|
|
export const MagicLink = async ({ url, locale }: Props) => {
|
|
const { t } = await getTranslation({ locale, ns: "auth" });
|
|
const origin = getOrigin(url);
|
|
|
|
return (
|
|
<Layout origin={origin} locale={locale}>
|
|
<Preview>{t("login.magicLink.email.preview")}</Preview>
|
|
<Heading className="leading-tight tracking-tight">
|
|
{t("login.magicLink.email.subject")}
|
|
</Heading>
|
|
|
|
<Text>{t("login.magicLink.email.body")}</Text>
|
|
|
|
<Button href={url}>{t("login.magicLink.email.cta")}</Button>
|
|
|
|
<Text>{t("login.magicLink.email.or")}</Text>
|
|
|
|
<code className="border-border bg-muted inline-block rounded-md border border-solid px-5 py-3.5 font-mono text-xs">
|
|
{url}
|
|
</code>
|
|
|
|
<Text className="text-muted-foreground">
|
|
{t("login.magicLink.email.disclaimer")}
|
|
</Text>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
MagicLink.subject = async ({ locale }: CommonEmailProps) => {
|
|
const { t } = await getTranslation({ locale, ns: "auth" });
|
|
return t("login.magicLink.email.subject");
|
|
};
|
|
|
|
MagicLink.PreviewProps = {
|
|
url: "http://localhost:3000/api/auth/magic-link/verify?token=123&callbackURL=/dashboard",
|
|
locale: "en",
|
|
};
|
|
|
|
export default MagicLink;
|