chore: application prettier

This commit is contained in:
Luc SORIGNET
2025-04-15 19:37:47 +02:00
parent dd0884bbce
commit f7666c894b
174 changed files with 10609 additions and 8760 deletions

View File

@ -1,23 +1,37 @@
import React from 'react';
import Table from '@/components/Table';
const TeachersSelectionConfiguration = ({ formData, teachers, handleTeacherSelection, selectedTeachers }) => {
const TeachersSelectionConfiguration = ({
formData,
teachers,
handleTeacherSelection,
selectedTeachers,
}) => {
return (
<div className="mt-4" style={{ maxHeight: '300px', overflowY: 'auto' }}>
<label className="mt-6 block text-2xl font-medium text-gray-700 mb-2">Enseignants</label>
<label className={`block text-sm font-medium mb-4`}>Sélection : <span className={`${formData.teachers.length !== 0 ? 'text-emerald-400' : 'text-red-300'}`}>{formData.teachers.length}</span></label>
<label className="mt-6 block text-2xl font-medium text-gray-700 mb-2">
Enseignants
</label>
<label className={`block text-sm font-medium mb-4`}>
Sélection :{' '}
<span
className={`${formData.teachers.length !== 0 ? 'text-emerald-400' : 'text-red-300'}`}
>
{formData.teachers.length}
</span>
</label>
<Table
columns={[
{
name: 'Nom',
{
name: 'Nom',
transform: (row) => row.last_name,
},
{
name: 'Prénom',
{
name: 'Prénom',
transform: (row) => row.first_name,
},
// {
// name: 'Spécialités',
// {
// name: 'Spécialités',
// transform: (row) => (
// <div className="flex flex-wrap items-center">
// {row.specialites.map(specialite => (