tasko/actions/copy-card/index.ts

70 lines
1.6 KiB
TypeScript
Raw Normal View History

2024-02-16 01:49:19 +00:00
'use server';
2024-02-15 02:30:10 +00:00
2024-03-21 21:15:27 +00:00
import { auth } from '@clerk/nextjs/server';
2024-02-16 01:49:19 +00:00
import { revalidatePath } from 'next/cache';
import { ACTION, ENTITY_TYPE } from '@prisma/client';
2024-02-15 02:30:10 +00:00
2024-02-16 01:49:19 +00:00
import { db } from '@/lib/db';
import { createAuditLog } from '@/lib/create-audit-log';
import { createSafeAction } from '@/lib/create-safe-action';
2024-02-15 02:30:10 +00:00
2024-02-16 01:49:19 +00:00
import { InputType, ReturnType } from './types';
import { CopyCard } from './schema';
2024-02-15 02:30:10 +00:00
const handler = async (data: InputType): Promise<ReturnType> => {
const { userId, orgId } = auth();
2024-02-16 01:49:19 +00:00
if (!userId || !orgId) return { error: 'Unauthorized' };
2024-02-15 02:30:10 +00:00
const { id, boardId } = data;
let card;
try {
const cardToCopy = await db.card.findUnique({
where: {
id,
list: {
board: {
orgId,
},
},
},
});
2024-02-16 01:49:19 +00:00
if (!cardToCopy) return { error: 'Card not found' };
2024-02-15 02:30:10 +00:00
const lastCard = await db.card.findFirst({
where: { listId: cardToCopy.listId },
2024-02-16 01:49:19 +00:00
orderBy: { order: 'desc' },
2024-02-15 02:30:10 +00:00
select: { order: true },
});
const newOrder = lastCard ? lastCard.order + 1 : 1;
card = await db.card.create({
data: {
title: `${cardToCopy.title} - Copy`,
description: cardToCopy.description,
order: newOrder,
listId: cardToCopy.listId,
2024-02-16 01:49:19 +00:00
},
});
2024-02-15 02:30:10 +00:00
await createAuditLog({
entityTitle: card.title,
entityType: ENTITY_TYPE.CARD,
entityId: card.id,
action: ACTION.CREATE,
});
} catch (error) {
return {
2024-02-16 01:49:19 +00:00
error: 'Failed to copy card',
2024-02-15 02:30:10 +00:00
};
}
revalidatePath(`/board/${boardId}`);
return { data: card };
};
export const copyCard = createSafeAction(CopyCard, handler);