- Implemented `RelatedTodos` component in `EditTaskForm` to display and manage related todos for a task. - Updated `TasksClient` to fetch daily checkboxes related to a task. - Enhanced `TasksService` with a method to retrieve related daily checkboxes from the database. - Added functionality to create new todos linked to tasks in the daily actions. - Marked the task for displaying related todos in the task editing interface as complete in TODO.md.
221 lines
7.8 KiB
TypeScript
221 lines
7.8 KiB
TypeScript
'use client';
|
|
|
|
import { useState, useEffect } from 'react';
|
|
import { Modal } from '@/components/ui/Modal';
|
|
import { Button } from '@/components/ui/Button';
|
|
import { Input } from '@/components/ui/Input';
|
|
import { TagInput } from '@/components/ui/TagInput';
|
|
import { RelatedTodos } from '@/components/forms/RelatedTodos';
|
|
import { Task, TaskPriority, TaskStatus } from '@/lib/types';
|
|
// UpdateTaskData removed - using Server Actions directly
|
|
import { getAllStatuses, getAllPriorities } from '@/lib/status-config';
|
|
|
|
interface EditTaskFormProps {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
onSubmit: (data: { taskId: string; title?: string; description?: string; status?: TaskStatus; priority?: TaskPriority; tags?: string[]; dueDate?: Date; }) => Promise<void>;
|
|
task: Task | null;
|
|
loading?: boolean;
|
|
}
|
|
|
|
export function EditTaskForm({ isOpen, onClose, onSubmit, task, loading = false }: EditTaskFormProps) {
|
|
const [formData, setFormData] = useState<{
|
|
title: string;
|
|
description: string;
|
|
status: TaskStatus;
|
|
priority: TaskPriority;
|
|
tags: string[];
|
|
dueDate?: Date;
|
|
}>({
|
|
title: '',
|
|
description: '',
|
|
status: 'todo' as TaskStatus,
|
|
priority: 'medium' as TaskPriority,
|
|
tags: [],
|
|
dueDate: undefined
|
|
});
|
|
|
|
const [errors, setErrors] = useState<Record<string, string>>({});
|
|
|
|
// Pré-remplir le formulaire quand la tâche change
|
|
useEffect(() => {
|
|
if (task) {
|
|
setFormData({
|
|
title: task.title,
|
|
description: task.description || '',
|
|
status: task.status,
|
|
priority: task.priority,
|
|
tags: task.tags || [],
|
|
dueDate: task.dueDate ? new Date(task.dueDate) : undefined
|
|
});
|
|
}
|
|
}, [task]);
|
|
|
|
const validateForm = (): boolean => {
|
|
const newErrors: Record<string, string> = {};
|
|
|
|
if (!formData.title?.trim()) {
|
|
newErrors.title = 'Le titre est requis';
|
|
}
|
|
|
|
if (formData.title && formData.title.length > 200) {
|
|
newErrors.title = 'Le titre ne peut pas dépasser 200 caractères';
|
|
}
|
|
|
|
if (formData.description && formData.description.length > 1000) {
|
|
newErrors.description = 'La description ne peut pas dépasser 1000 caractères';
|
|
}
|
|
|
|
setErrors(newErrors);
|
|
return Object.keys(newErrors).length === 0;
|
|
};
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
|
|
if (!validateForm() || !task) return;
|
|
|
|
try {
|
|
await onSubmit({
|
|
taskId: task.id,
|
|
...formData
|
|
});
|
|
handleClose();
|
|
} catch (error) {
|
|
console.error('Erreur lors de la mise à jour:', error);
|
|
}
|
|
};
|
|
|
|
const handleClose = () => {
|
|
setErrors({});
|
|
onClose();
|
|
};
|
|
|
|
|
|
if (!task) return null;
|
|
|
|
return (
|
|
<Modal isOpen={isOpen} onClose={handleClose} title="Modifier la tâche" size="lg">
|
|
<form onSubmit={handleSubmit} className="space-y-4 max-h-[80vh] overflow-y-auto pr-2">
|
|
{/* Titre */}
|
|
<Input
|
|
label="Titre *"
|
|
value={formData.title}
|
|
onChange={(e) => setFormData(prev => ({ ...prev, title: e.target.value }))}
|
|
placeholder="Titre de la tâche..."
|
|
error={errors.title}
|
|
disabled={loading}
|
|
/>
|
|
|
|
{/* Description */}
|
|
<div className="space-y-2">
|
|
<label className="block text-sm font-mono font-medium text-[var(--muted-foreground)] uppercase tracking-wider">
|
|
Description
|
|
</label>
|
|
<textarea
|
|
value={formData.description}
|
|
onChange={(e) => setFormData(prev => ({ ...prev, description: e.target.value }))}
|
|
placeholder="Description détaillée..."
|
|
rows={4}
|
|
disabled={loading}
|
|
className="w-full px-3 py-2 bg-[var(--input)] border border-[var(--border)]/50 rounded-lg text-[var(--foreground)] font-mono text-sm placeholder-[var(--muted-foreground)] focus:outline-none focus:ring-2 focus:ring-[var(--primary)]/50 focus:border-[var(--primary)]/50 hover:border-[var(--border)] transition-all duration-200 backdrop-blur-sm resize-none"
|
|
/>
|
|
{errors.description && (
|
|
<p className="text-xs font-mono text-red-400 flex items-center gap-1">
|
|
<span className="text-red-500">⚠</span>
|
|
{errors.description}
|
|
</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Priorité et Statut */}
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div className="space-y-2">
|
|
<label className="block text-sm font-mono font-medium text-[var(--muted-foreground)] uppercase tracking-wider">
|
|
Priorité
|
|
</label>
|
|
<select
|
|
value={formData.priority}
|
|
onChange={(e) => setFormData(prev => ({ ...prev, priority: e.target.value as TaskPriority }))}
|
|
disabled={loading}
|
|
className="w-full px-3 py-2 bg-[var(--input)] border border-[var(--border)]/50 rounded-lg text-[var(--foreground)] font-mono text-sm focus:outline-none focus:ring-2 focus:ring-[var(--primary)]/50 focus:border-[var(--primary)]/50 hover:border-[var(--border)] transition-all duration-200 backdrop-blur-sm"
|
|
>
|
|
{getAllPriorities().map(priorityConfig => (
|
|
<option key={priorityConfig.key} value={priorityConfig.key}>
|
|
{priorityConfig.icon} {priorityConfig.label}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label className="block text-sm font-mono font-medium text-[var(--muted-foreground)] uppercase tracking-wider">
|
|
Statut
|
|
</label>
|
|
<select
|
|
value={formData.status}
|
|
onChange={(e) => setFormData(prev => ({ ...prev, status: e.target.value as TaskStatus }))}
|
|
disabled={loading}
|
|
className="w-full px-3 py-2 bg-[var(--input)] border border-[var(--border)]/50 rounded-lg text-[var(--foreground)] font-mono text-sm focus:outline-none focus:ring-2 focus:ring-[var(--primary)]/50 focus:border-[var(--primary)]/50 hover:border-[var(--border)] transition-all duration-200 backdrop-blur-sm"
|
|
>
|
|
{getAllStatuses().map(statusConfig => (
|
|
<option key={statusConfig.key} value={statusConfig.key}>
|
|
{statusConfig.label}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Date d'échéance */}
|
|
<Input
|
|
label="Date d'échéance"
|
|
type="datetime-local"
|
|
value={formData.dueDate ? new Date(formData.dueDate.getTime() - formData.dueDate.getTimezoneOffset() * 60000).toISOString().slice(0, 16) : ''}
|
|
onChange={(e) => setFormData(prev => ({
|
|
...prev,
|
|
dueDate: e.target.value ? new Date(e.target.value) : undefined
|
|
}))}
|
|
disabled={loading}
|
|
/>
|
|
|
|
{/* Tags */}
|
|
<div className="space-y-3">
|
|
<label className="block text-sm font-mono font-medium text-[var(--muted-foreground)] uppercase tracking-wider">
|
|
Tags
|
|
</label>
|
|
|
|
<TagInput
|
|
tags={formData.tags || []}
|
|
onChange={(tags) => setFormData(prev => ({ ...prev, tags }))}
|
|
placeholder="Ajouter des tags..."
|
|
maxTags={10}
|
|
/>
|
|
</div>
|
|
|
|
{/* Todos reliés */}
|
|
<RelatedTodos taskId={task.id} />
|
|
|
|
{/* Actions */}
|
|
<div className="flex justify-end gap-3 pt-4 border-t border-[var(--border)]/50">
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
onClick={handleClose}
|
|
disabled={loading}
|
|
>
|
|
Annuler
|
|
</Button>
|
|
<Button
|
|
type="submit"
|
|
variant="primary"
|
|
disabled={loading}
|
|
>
|
|
{loading ? 'Mise à jour...' : 'Mettre à jour'}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Modal>
|
|
);
|
|
}
|