249 lines
7.8 KiB
TypeScript
249 lines
7.8 KiB
TypeScript
import { z } from "zod";
|
|
import { and, desc, eq, isNull, sql } from "drizzle-orm";
|
|
|
|
import { cards, cardsToLabels, labels, lists } from "~/server/db/schema";
|
|
import { generateUID } from "~/utils/generateUID";
|
|
|
|
import {
|
|
createTRPCRouter,
|
|
publicProcedure,
|
|
} from "~/server/api/trpc";
|
|
|
|
export const cardRouter = createTRPCRouter({
|
|
create: publicProcedure
|
|
.input(
|
|
z.object({
|
|
title: z.string().min(1),
|
|
listPublicId: z.string().min(12),
|
|
}),
|
|
)
|
|
.mutation(({ ctx, input }) => {
|
|
const userId = ctx.session?.user.id;
|
|
|
|
if (!userId) return;
|
|
|
|
return ctx.db.transaction(async (tx) => {
|
|
const list = await tx.query.lists.findFirst({
|
|
where: eq(lists.publicId, input.listPublicId),
|
|
columns: {
|
|
id: true
|
|
}
|
|
});
|
|
|
|
if (!list) return;
|
|
|
|
const latestCard = await tx.query.cards.findFirst({
|
|
where: and(eq(cards.listId, list.id), isNull(cards.deletedAt)),
|
|
columns: {
|
|
index: true
|
|
},
|
|
orderBy: desc(cards.index)
|
|
});
|
|
|
|
return tx.insert(cards).values({
|
|
publicId: generateUID(),
|
|
title: input.title,
|
|
createdBy: userId,
|
|
listId: list.id,
|
|
index: latestCard ? latestCard.index + 1 : 0
|
|
});
|
|
})
|
|
}),
|
|
addOrRemoveLabel: publicProcedure
|
|
.input(
|
|
z.object({
|
|
cardPublicId: z.string().min(12),
|
|
labelPublicId: z.string().min(12),
|
|
}),
|
|
)
|
|
.mutation(({ ctx, input }) => {
|
|
const userId = ctx.session?.user.id;
|
|
|
|
if (!userId) return;
|
|
|
|
return ctx.db.transaction(async (tx) => {
|
|
const card = await tx.query.cards.findFirst({
|
|
where: and(eq(cards.publicId, input.cardPublicId), isNull(cards.deletedAt)),
|
|
});
|
|
|
|
const label = await tx.query.labels.findFirst({
|
|
where: eq(labels.publicId, input.labelPublicId),
|
|
});
|
|
|
|
if (!card || !label) return;
|
|
|
|
const labelExists = await tx.query.cardsToLabels.findFirst({
|
|
where: and(eq(cardsToLabels.cardId, card.id), eq(cardsToLabels.labelId, label.id)),
|
|
});
|
|
|
|
if (labelExists) {
|
|
return tx.delete(cardsToLabels).where(and(eq(cardsToLabels.cardId, card.id), eq(cardsToLabels.labelId, label.id)),);
|
|
}
|
|
|
|
return tx.insert(cardsToLabels).values({
|
|
cardId: card.id,
|
|
labelId: label.id,
|
|
});
|
|
})
|
|
}),
|
|
byId: publicProcedure
|
|
.input(z.object({ id: z.string().min(12) }))
|
|
.query(({ ctx, input }) =>
|
|
ctx.db.query.cards.findFirst({
|
|
with: {
|
|
labels: {
|
|
columns: {
|
|
labelId: false,
|
|
cardId: false,
|
|
},
|
|
with: {
|
|
label: {
|
|
columns: {
|
|
publicId: true,
|
|
name: true,
|
|
colourCode: true,
|
|
}
|
|
}
|
|
}
|
|
},
|
|
list: {
|
|
columns: {
|
|
publicId: true,
|
|
},
|
|
with: {
|
|
board: {
|
|
columns: {
|
|
publicId: true,
|
|
name: true,
|
|
},
|
|
with: {
|
|
labels: {
|
|
columns: {
|
|
publicId: true,
|
|
colourCode: true,
|
|
name: true,
|
|
}
|
|
},
|
|
lists: {
|
|
columns: {
|
|
publicId: true,
|
|
name: true,
|
|
},
|
|
where: isNull(lists.deletedAt)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
where: and(eq(cards.publicId, input.id), isNull(cards.deletedAt)),
|
|
})
|
|
),
|
|
update: publicProcedure
|
|
.input(
|
|
z.object({
|
|
cardId: z.string().min(12),
|
|
title: z.string().min(1),
|
|
description: z.string(),
|
|
}))
|
|
.mutation(({ ctx, input }) => {
|
|
const userId = ctx.session?.user.id;
|
|
|
|
if (!userId) return;
|
|
|
|
return ctx.db.update(cards).set({ title: input.title, description: input.description }).where(and(eq(cards.publicId, input.cardId), isNull(cards.deletedAt)));
|
|
}),
|
|
delete: publicProcedure
|
|
.input(
|
|
z.object({
|
|
cardPublicId: z.string().min(12),
|
|
}))
|
|
.mutation(({ ctx, input }) => {
|
|
const userId = ctx.session?.user.id;
|
|
|
|
if (!userId) return;
|
|
|
|
return ctx.db.transaction(async (tx) => {
|
|
const card = await tx.query.cards.findFirst({
|
|
where: eq(cards.publicId, input.cardPublicId),
|
|
})
|
|
|
|
if (!card) return;
|
|
|
|
await tx.update(cards).set({ deletedAt: new Date(), deletedBy: userId}).where(eq(cards.publicId, input.cardPublicId));
|
|
|
|
await tx.execute(sql`UPDATE ${cards} SET ${cards.index} = ${cards.index} - 1 WHERE ${cards.listId} = ${card.listId} AND ${cards.index} > ${card.index} AND ${cards.deletedAt} IS NULL;`);
|
|
})
|
|
}),
|
|
reorder: publicProcedure
|
|
.input(
|
|
z.object({
|
|
cardId: z.string().min(12),
|
|
newListId: z.string().min(12),
|
|
newIndex: z.number().optional(),
|
|
}))
|
|
.mutation(({ ctx, input }) => {
|
|
const userId = ctx.session?.user.id;
|
|
|
|
if (!userId) return;
|
|
|
|
return ctx.db.transaction(async (tx) => {
|
|
const card = await tx.query.cards.findFirst({
|
|
with: {
|
|
list: true,
|
|
},
|
|
where: and(eq(cards.publicId, input.cardId), isNull(cards.deletedAt)),
|
|
});
|
|
|
|
if (!card) return;
|
|
|
|
const currentList = card.list;
|
|
const currentIndex = card.index;
|
|
|
|
let newIndex = input.newIndex;
|
|
|
|
const newList = await tx.query.lists.findFirst({
|
|
with: {
|
|
cards: {
|
|
orderBy: [desc(cards.index)],
|
|
limit: 1,
|
|
},
|
|
},
|
|
where: and(eq(lists.publicId, input.newListId), isNull(cards.deletedAt)),
|
|
});
|
|
|
|
if (!newList) return;
|
|
|
|
if (newIndex === undefined) {
|
|
const lastCardIndex = newList.cards.length ? newList.cards[0]?.index : undefined;
|
|
|
|
newIndex = lastCardIndex !== undefined ? lastCardIndex + 1 : 0;
|
|
}
|
|
|
|
if (!currentList?.id || !newList?.id) return;
|
|
|
|
if (currentList.id === newList.id) {
|
|
await tx.execute(sql`
|
|
UPDATE ${cards}
|
|
SET ${cards.index} =
|
|
CASE
|
|
WHEN ${cards.index} = ${currentIndex} THEN ${newIndex}
|
|
WHEN ${currentIndex} < ${newIndex} AND ${cards.index} > ${currentIndex} AND ${cards.index} <= ${newIndex} THEN ${cards.index} - 1
|
|
WHEN ${currentIndex} > ${newIndex} AND ${cards.index} >= ${newIndex} AND ${cards.index} < ${currentIndex} THEN ${cards.index} + 1
|
|
ELSE ${cards.index}
|
|
END
|
|
WHERE ${cards.listId} = ${currentList.id} AND ${cards.deletedAt} IS NULL;
|
|
`);
|
|
} else {
|
|
await tx.execute(sql`UPDATE ${cards} SET ${cards.index} = ${cards.index} + 1 WHERE ${cards.listId} = ${newList.id} AND ${cards.index} >= ${newIndex} AND ${cards.deletedAt} IS NULL;`)
|
|
|
|
await tx.execute(sql`UPDATE ${cards} SET ${cards.index} = ${cards.index} - 1 WHERE ${cards.listId} = ${currentList.id} AND ${cards.index} >= ${currentIndex} AND ${cards.deletedAt} IS NULL;`)
|
|
|
|
await tx
|
|
.update(cards)
|
|
.set({ listId: newList.id, index: newIndex })
|
|
.where(and(eq(cards.publicId, input.cardId), isNull(cards.deletedAt)));
|
|
}
|
|
})
|
|
})
|
|
}); |