166 lines
5.2 KiB
TypeScript
166 lines
5.2 KiB
TypeScript
import { useDroppable } from '@dnd-kit/core';
|
|
import { SortableContext, verticalListSortingStrategy } from '@dnd-kit/sortable';
|
|
import { ListWithCards, Card as CardType } from '../../types/kanban';
|
|
import { KanbanCard } from './KanbanCard';
|
|
import { CreateCardModal } from './CreateCardModal';
|
|
import { EditListModal } from './EditListModal';
|
|
import { DeleteListModal } from './DeleteListModal';
|
|
import Edit2Icon from '../icons/Edit2Icon';
|
|
import Trash2Icon from '../icons/Trash2Icon';
|
|
import { useModal } from '../../context/modals/useModal';
|
|
|
|
export interface KanbanColumnProps {
|
|
list: ListWithCards;
|
|
cards: CardType[];
|
|
onOpenCardModal: (card: CardType) => void;
|
|
onCardCreate: (data: { name: string; description?: string }) => Promise<void>;
|
|
onListEdit?: (name: string) => Promise<void>;
|
|
onListDelete?: () => Promise<void>;
|
|
dragHandleProps?: {
|
|
attributes: any;
|
|
listeners: any;
|
|
};
|
|
}
|
|
|
|
export function KanbanColumn({
|
|
list,
|
|
cards,
|
|
onOpenCardModal,
|
|
onCardCreate,
|
|
onListEdit,
|
|
onListDelete,
|
|
dragHandleProps,
|
|
}: KanbanColumnProps) {
|
|
const { setNodeRef, isOver } = useDroppable({
|
|
id: `LIST_${list.id}`,
|
|
});
|
|
|
|
const { openModal } = useModal();
|
|
|
|
const handleAddCard = () => {
|
|
openModal((props) => <CreateCardModal {...props} onCreate={onCardCreate} />);
|
|
};
|
|
|
|
const handleEditList = () => {
|
|
if (!onListEdit) return;
|
|
openModal((props) => (
|
|
<EditListModal
|
|
{...props}
|
|
listName={list.name}
|
|
onSave={async (name) => {
|
|
await onListEdit(name);
|
|
}}
|
|
/>
|
|
));
|
|
};
|
|
|
|
const handleDeleteList = () => {
|
|
if (!onListDelete) return;
|
|
openModal((props) => (
|
|
<DeleteListModal
|
|
{...props}
|
|
listName={list.name}
|
|
onDelete={async () => {
|
|
await onListDelete();
|
|
}}
|
|
/>
|
|
));
|
|
};
|
|
|
|
return (
|
|
<div className="bg-gray-800 rounded-lg p-4 min-w-[300px] max-w-[300px] border border-gray-700 flex flex-col">
|
|
<div className="mb-4">
|
|
<div className="flex items-center justify-between mb-2">
|
|
<div className="flex items-center gap-2 flex-1">
|
|
{/* Drag Handle Icon */}
|
|
<div {...dragHandleProps?.attributes} {...dragHandleProps?.listeners}>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="16"
|
|
height="16"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
className="text-gray-500 cursor-grab hover:text-gray-300"
|
|
>
|
|
<circle cx="9" cy="12" r="1"></circle>
|
|
<circle cx="9" cy="5" r="1"></circle>
|
|
<circle cx="9" cy="19" r="1"></circle>
|
|
<circle cx="15" cy="12" r="1"></circle>
|
|
<circle cx="15" cy="5" r="1"></circle>
|
|
<circle cx="15" cy="19" r="1"></circle>
|
|
</svg>
|
|
</div>
|
|
<h2 className="text-white font-bold text-lg">{list.name}</h2>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
{onListEdit && (
|
|
<button
|
|
onClick={handleEditList}
|
|
className="text-gray-400 hover:text-blue-400 transition-colors"
|
|
title="Edit list"
|
|
>
|
|
<span className="w-4 h-4">
|
|
<Edit2Icon />
|
|
</span>
|
|
</button>
|
|
)}
|
|
{onListDelete && (
|
|
<button
|
|
onClick={handleDeleteList}
|
|
className="text-gray-400 hover:text-red-400 transition-colors"
|
|
title="Delete list"
|
|
>
|
|
<span className="w-4 h-4">
|
|
<Trash2Icon />
|
|
</span>
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<span className="bg-gray-600 text-gray-300 text-xs px-2 py-1 rounded-full inline-block">
|
|
{cards.length} cards
|
|
</span>
|
|
</div>
|
|
|
|
<SortableContext
|
|
id={list.id.toString()}
|
|
items={cards.map((card) => card.id.toString())}
|
|
strategy={verticalListSortingStrategy}
|
|
>
|
|
<div
|
|
ref={setNodeRef}
|
|
className={`min-h-[200px] flex-1 transition-colors ${isOver ? 'bg-gray-750' : ''}`}
|
|
>
|
|
{cards.map((card) => (
|
|
<KanbanCard key={card.id} card={card} onOpenModal={() => onOpenCardModal(card)} />
|
|
))}
|
|
</div>
|
|
</SortableContext>
|
|
|
|
<button
|
|
onClick={handleAddCard}
|
|
className="mt-3 w-full py-2 px-4 bg-gray-700 hover:bg-gray-600 text-gray-300 hover:text-white rounded-lg transition-colors flex items-center justify-center gap-2 text-sm font-medium"
|
|
>
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="16"
|
|
height="16"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
>
|
|
<line x1="12" y1="5" x2="12" y2="19"></line>
|
|
<line x1="5" y1="12" x2="19" y2="12"></line>
|
|
</svg>
|
|
Add Card
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|