"use client"; import useAdmin from '@/hook/useAdmin'; import { DragDropContext, Draggable, Droppable } from '@hello-pangea/dnd'; import React from 'react' import { useFormStatus } from 'react-dom'; const reorder = (list, startIndex, endIndex) => { const result = Array.from(list); const [removed] = result.splice(startIndex, 1); result.splice(endIndex, 0, removed); return result; }; const TEAM_STATUS = { playing: { label: "En jeu", color: "text-custom-green" }, captured: { label: "Capturée", color: "text-custom-red" }, outofzone: { label: "Hors zone", color: "text-custom-orange" }, ready: { label: "Prête", color: "text-custom-blue" }, notready: { label: "En préparation", color: "text-custom-grey" }, }; function TeamListItem({ team, index, onSelected, itemSelected }) { const status = TEAM_STATUS.captured; //Il faudrait ici implementer la logique, ce qui est normalement pas trop difficile return ( onSelected(team.id)}> {provided => (

{team.name}

{status.label}

)}
) } export default function TeamList({selectedTeamId, onSelected}) { const {teams, reorderTeams} = useAdmin(); function onDragEnd(result) { if (!result.destination) { return; } if (result.destination.index === result.source.index) { return; } const newTeams = reorder( teams, result.source.index, result.destination.index ); reorderTeams(newTeams); } return ( {provided => ( )} ) }