* add template migration & router * template CRUD * templated transactional emails API * zod schema fix & rearranging template columns
171 lines
4.1 KiB
TypeScript
171 lines
4.1 KiB
TypeScript
import { Prisma } from "@prisma/client";
|
|
import { TRPCError } from "@trpc/server";
|
|
import { EmailRenderer } from "@unsend/email-editor/src/renderer";
|
|
import { z } from "zod";
|
|
import { env } from "~/env";
|
|
import {
|
|
teamProcedure,
|
|
createTRPCRouter,
|
|
templateProcedure
|
|
} from "~/server/api/trpc";
|
|
import { nanoid } from "~/server/nanoid";
|
|
import {
|
|
getDocumentUploadUrl,
|
|
isStorageConfigured
|
|
} from "~/server/service/storage-service";
|
|
|
|
export const templateRouter = createTRPCRouter({
|
|
getTemplates: teamProcedure
|
|
.input(
|
|
z.object({
|
|
page: z.number().optional(),
|
|
})
|
|
)
|
|
.query(async ({ ctx: { db, team }, input }) => {
|
|
const page = input.page || 1;
|
|
const limit = 30;
|
|
const offset = (page - 1) * limit;
|
|
|
|
|
|
const whereConditions: Prisma.TemplateFindManyArgs["where"] = {
|
|
teamId: team.id,
|
|
};
|
|
|
|
|
|
const countP = db.template.count({ where: whereConditions });
|
|
|
|
const templatesP = db.template.findMany({
|
|
where: whereConditions,
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
subject: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
html: true,
|
|
},
|
|
orderBy: {
|
|
createdAt: "desc",
|
|
},
|
|
skip: offset,
|
|
take: limit,
|
|
});
|
|
|
|
const [templates, count] = await Promise.all([templatesP, countP]);
|
|
|
|
return { templates, totalPage: Math.ceil(count / limit) };
|
|
}),
|
|
|
|
createTemplate: teamProcedure
|
|
.input(
|
|
z.object({
|
|
name: z.string(),
|
|
subject: z.string(),
|
|
})
|
|
)
|
|
.mutation(async ({ ctx: { db, team }, input }) => {
|
|
const template = await db.template.create({
|
|
data: {
|
|
...input,
|
|
teamId: team.id,
|
|
},
|
|
});
|
|
|
|
return template;
|
|
}),
|
|
|
|
updateTemplate: templateProcedure
|
|
.input(
|
|
z.object({
|
|
name: z.string().optional(),
|
|
subject: z.string().optional(),
|
|
content: z.string().optional(),
|
|
})
|
|
)
|
|
.mutation(async ({ ctx: { db }, input }) => {
|
|
const { templateId, ...data } = input;
|
|
let html: string | null = null;
|
|
|
|
if (data.content) {
|
|
const jsonContent = data.content ? JSON.parse(data.content) : null;
|
|
|
|
const renderer = new EmailRenderer(jsonContent);
|
|
html = await renderer.render();
|
|
}
|
|
|
|
const template = await db.template.update({
|
|
where: { id: templateId },
|
|
data: {
|
|
...data,
|
|
html,
|
|
},
|
|
});
|
|
return template;
|
|
}),
|
|
|
|
deleteTemplate: templateProcedure.mutation(
|
|
async ({ ctx: { db, team }, input }) => {
|
|
const template = await db.template.delete({
|
|
where: { id: input.templateId, teamId: team.id },
|
|
});
|
|
return template;
|
|
}
|
|
),
|
|
|
|
getTemplate: templateProcedure.query(async ({ ctx: { db, team }, input }) => {
|
|
const template = await db.template.findUnique({
|
|
where: { id: input.templateId, teamId: team.id },
|
|
});
|
|
|
|
if (!template) {
|
|
throw new TRPCError({
|
|
code: "BAD_REQUEST",
|
|
message: "Template not found",
|
|
});
|
|
}
|
|
|
|
const imageUploadSupported = isStorageConfigured();
|
|
|
|
return {
|
|
...template,
|
|
imageUploadSupported,
|
|
};
|
|
}),
|
|
|
|
duplicateTemplate: templateProcedure.mutation(
|
|
async ({ ctx: { db, team, template }, input }) => {
|
|
const newTemplate = await db.template.create({
|
|
data: {
|
|
name: `${template.name} (Copy)`,
|
|
subject: template.subject,
|
|
content: template.content,
|
|
teamId: team.id
|
|
},
|
|
});
|
|
|
|
return newTemplate;
|
|
}
|
|
),
|
|
|
|
generateImagePresignedUrl: templateProcedure
|
|
.input(
|
|
z.object({
|
|
name: z.string(),
|
|
type: z.string(),
|
|
})
|
|
)
|
|
.mutation(async ({ ctx: { team }, input }) => {
|
|
const extension = input.name.split(".").pop();
|
|
const randomName = `${nanoid()}.${extension}`;
|
|
|
|
const url = await getDocumentUploadUrl(
|
|
`${team.id}/${randomName}`,
|
|
input.type
|
|
);
|
|
|
|
const imageUrl = `${env.S3_COMPATIBLE_PUBLIC_URL}/${team.id}/${randomName}`;
|
|
|
|
return { uploadUrl: url, imageUrl };
|
|
}),
|
|
});
|