Initial Commit

This commit is contained in:
Ahmad 2024-02-14 21:30:10 -05:00
commit f3e2f01bd7
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
150 changed files with 13612 additions and 0 deletions

View file

@ -0,0 +1,66 @@
"use server";
import { auth } from "@clerk/nextjs";
import { revalidatePath } from "next/cache";
import { ACTION, ENTITY_TYPE } from "@prisma/client";
import { db } from "@/lib/db";
import { createAuditLog } from "@/lib/create-audit-log";
import { createSafeAction } from "@/lib/create-safe-action";
import { InputType, ReturnType } from "./types";
import { CreateCard } from "./schema";
const handler = async (data: InputType): Promise<ReturnType> => {
const { userId, orgId } = auth();
if (!userId || !orgId) return { error: "Unauthorized" };
const { title, boardId, listId } = data;
let card;
try {
const list = await db.list.findUnique({
where: {
id: listId,
board: {
orgId,
},
},
});
if (!list) return { error: "List not found" };
const lastCard = await db.card.findFirst({
where: { listId },
orderBy: { order: "desc" },
select: { order: true },
});
const newOrder = lastCard ? lastCard.order + 1 : 1;
card = await db.card.create({
data: {
title,
listId,
order: newOrder,
},
});
await createAuditLog({
entityId: card.id,
entityTitle: card.title,
entityType: ENTITY_TYPE.CARD,
action: ACTION.CREATE,
});
} catch (error) {
return {
error: "Failed to create card",
};
}
revalidatePath(`/board/${boardId}`);
return { data: card };
};
export const createCard = createSafeAction(CreateCard, handler);

View file

@ -0,0 +1,12 @@
import { z } from "zod";
export const CreateCard = z.object({
title: z.string({
required_error: "Card title is required",
invalid_type_error: "Card title must be a string",
}).min(2, {
message: "Card title must be at least 2 characters",
}),
boardId: z.string(),
listId: z.string(),
})

View file

@ -0,0 +1,9 @@
import { z } from "zod";
import { Card } from "@prisma/client";
import { ActionState } from "@/lib/create-safe-action";
import { CreateCard } from "./schema";
export type InputType = z.infer<typeof CreateCard>;
export type ReturnType = ActionState<InputType, Card>;