- Added theme context and provider for light/dark mode support. - Integrated theme toggle button in the Header component. - Updated UI components to utilize CSS variables for consistent theming. - Enhanced Kanban components and forms with new theme styles for better visual coherence. - Adjusted global styles to define color variables for both themes, improving maintainability.
198 lines
7.1 KiB
TypeScript
198 lines
7.1 KiB
TypeScript
'use client';
|
|
|
|
import { useState } 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 { TaskPriority, TaskStatus } from '@/lib/types';
|
|
import { CreateTaskData } from '@/clients/tasks-client';
|
|
import { getAllStatuses, getAllPriorities } from '@/lib/status-config';
|
|
|
|
interface CreateTaskFormProps {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
onSubmit: (data: CreateTaskData) => Promise<void>;
|
|
loading?: boolean;
|
|
}
|
|
|
|
export function CreateTaskForm({ isOpen, onClose, onSubmit, loading = false }: CreateTaskFormProps) {
|
|
const [formData, setFormData] = useState<CreateTaskData>({
|
|
title: '',
|
|
description: '',
|
|
status: 'todo' as TaskStatus,
|
|
priority: 'medium' as TaskPriority,
|
|
tags: [],
|
|
dueDate: undefined
|
|
});
|
|
|
|
const [errors, setErrors] = useState<Record<string, string>>({});
|
|
|
|
const validateForm = (): boolean => {
|
|
const newErrors: Record<string, string> = {};
|
|
|
|
if (!formData.title.trim()) {
|
|
newErrors.title = 'Le titre est requis';
|
|
}
|
|
|
|
if (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()) return;
|
|
|
|
try {
|
|
await onSubmit(formData);
|
|
handleClose();
|
|
} catch (error) {
|
|
console.error('Erreur lors de la création:', error);
|
|
}
|
|
};
|
|
|
|
const handleClose = () => {
|
|
setFormData({
|
|
title: '',
|
|
description: '',
|
|
status: 'todo',
|
|
priority: 'medium',
|
|
tags: [],
|
|
dueDate: undefined
|
|
});
|
|
setErrors({});
|
|
onClose();
|
|
};
|
|
|
|
|
|
return (
|
|
<Modal isOpen={isOpen} onClose={handleClose} title="Nouvelle tâche" size="lg">
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
{/* Titre */}
|
|
<Input
|
|
label="Titre *"
|
|
value={formData.title}
|
|
onChange={(e) => setFormData((prev: CreateTaskData) => ({ ...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: CreateTaskData) => ({ ...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-[var(--destructive)] flex items-center gap-1">
|
|
<span className="text-[var(--destructive)]">⚠</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: CreateTaskData) => ({ ...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: CreateTaskData) => ({ ...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: CreateTaskData) => ({
|
|
...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>
|
|
|
|
{/* 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 ? 'Création...' : 'Créer la tâche'}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Modal>
|
|
);
|
|
}
|