CONVERSIONS UI (8 pages): ✅ Remplacement de tous les composants Shadcn/UI par PrimeReact - Card, Button, Input, Textarea, Badge → Card, Button, InputText, InputTextarea, Tag - Conversion de toutes les icônes lucide-react en primeicons Pages converties: - app/(main)/aide/page.tsx - app/(main)/aide/documentation/page.tsx - app/(main)/aide/tutoriels/page.tsx - app/(main)/aide/support/page.tsx - app/(main)/messages/page.tsx - app/(main)/messages/nouveau/page.tsx - app/(main)/messages/envoyes/page.tsx - app/(main)/messages/archives/page.tsx CORRECTIONS BUILD: ✅ Résolution des conflits de dépendances FullCalendar - @fullcalendar/core: 6.1.4 → ^6.1.19 - Alignement avec daygrid, timegrid, interaction, react ✅ Correction des erreurs TypeScript - DataTable: Ajout de selectionMode="multiple" - InputText number: Conversion number → string avec .toString() ✅ Correction des services API (3 fichiers) - fournisseurService.ts - notificationService.ts - userService.ts - Remplacement des appels apiService.get() par axios direct - Ajout du préfixe /api/v1/ à tous les endpoints - Configuration d'interceptors pour authentication tokens RÉSULTAT: ✅ Build réussi: 126 pages générées ✅ 0 erreurs de compilation ✅ 0 erreurs TypeScript ✅ Architecture cohérente avec PrimeReact 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
334 lines
11 KiB
TypeScript
334 lines
11 KiB
TypeScript
"use client";
|
|
|
|
import React, { useState } from "react";
|
|
import { Card } from "primereact/card";
|
|
import { Button } from "primereact/button";
|
|
import { InputText } from "primereact/inputtext";
|
|
import { InputTextarea } from "primereact/inputtextarea";
|
|
import { Tag } from "primereact/tag";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
/**
|
|
* Page de support technique
|
|
* Formulaire de contact et informations de support
|
|
*/
|
|
export default function SupportPage() {
|
|
const router = useRouter();
|
|
const [formData, setFormData] = useState({
|
|
nom: "",
|
|
email: "",
|
|
sujet: "",
|
|
priorite: "normale",
|
|
message: "",
|
|
});
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const handleChange = (
|
|
e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement>
|
|
) => {
|
|
setFormData({
|
|
...formData,
|
|
[e.target.name]: e.target.value,
|
|
});
|
|
};
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setIsSubmitting(true);
|
|
|
|
// Simuler l'envoi
|
|
await new Promise((resolve) => setTimeout(resolve, 1500));
|
|
|
|
alert("Ticket de support créé avec succès ! Notre équipe vous contactera bientôt.");
|
|
router.push("/aide");
|
|
};
|
|
|
|
const ticketsRecents = [
|
|
{
|
|
id: "#2024-1234",
|
|
sujet: "Problème d'accès au dashboard",
|
|
status: "resolved",
|
|
date: "2025-10-28",
|
|
},
|
|
{
|
|
id: "#2024-1189",
|
|
sujet: "Question sur la facturation",
|
|
status: "in-progress",
|
|
date: "2025-10-25",
|
|
},
|
|
];
|
|
|
|
const getStatusTag = (status: string) => {
|
|
switch (status) {
|
|
case "resolved":
|
|
return (
|
|
<Tag severity="success">
|
|
<i className="pi pi-check-circle mr-1"></i>
|
|
Résolu
|
|
</Tag>
|
|
);
|
|
case "in-progress":
|
|
return (
|
|
<Tag severity="info">
|
|
<i className="pi pi-clock mr-1"></i>
|
|
En cours
|
|
</Tag>
|
|
);
|
|
default:
|
|
return <Tag>Nouveau</Tag>;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-6 p-6">
|
|
{/* En-tête */}
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex items-center gap-4">
|
|
<Link href="/aide">
|
|
<Button text size="small">
|
|
<i className="pi pi-arrow-left mr-2"></i>
|
|
Retour à l'aide
|
|
</Button>
|
|
</Link>
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-gray-900">Support technique</h1>
|
|
<p className="text-gray-500 mt-1">
|
|
Contactez notre équipe d'assistance
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
|
{/* Formulaire de contact */}
|
|
<div className="lg:col-span-2 space-y-6">
|
|
<Card className="p-6">
|
|
<h2 className="text-xl font-semibold mb-6">Créer un ticket de support</h2>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
<div>
|
|
<label htmlFor="nom" className="block mb-2">Nom complet *</label>
|
|
<InputText
|
|
id="nom"
|
|
name="nom"
|
|
type="text"
|
|
placeholder="Votre nom"
|
|
value={formData.nom}
|
|
onChange={handleChange}
|
|
required
|
|
className="w-full"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label htmlFor="email" className="block mb-2">Email *</label>
|
|
<InputText
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
placeholder="votre@email.com"
|
|
value={formData.email}
|
|
onChange={handleChange}
|
|
required
|
|
className="w-full"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="sujet" className="block mb-2">Sujet *</label>
|
|
<InputText
|
|
id="sujet"
|
|
name="sujet"
|
|
type="text"
|
|
placeholder="Résumé de votre demande"
|
|
value={formData.sujet}
|
|
onChange={handleChange}
|
|
required
|
|
className="w-full"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="priorite" className="block mb-2">Priorité</label>
|
|
<select
|
|
id="priorite"
|
|
name="priorite"
|
|
value={formData.priorite}
|
|
onChange={handleChange}
|
|
className="w-full border border-gray-300 rounded-md p-2"
|
|
>
|
|
<option value="basse">Basse</option>
|
|
<option value="normale">Normale</option>
|
|
<option value="haute">Haute</option>
|
|
<option value="urgente">Urgente</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor="message" className="block mb-2">Description du problème *</label>
|
|
<InputTextarea
|
|
id="message"
|
|
name="message"
|
|
placeholder="Décrivez votre problème en détail..."
|
|
value={formData.message}
|
|
onChange={handleChange}
|
|
required
|
|
rows={8}
|
|
className="w-full"
|
|
/>
|
|
</div>
|
|
|
|
<Button
|
|
type="submit"
|
|
className="w-full bg-blue-600 hover:bg-blue-700"
|
|
disabled={isSubmitting}
|
|
>
|
|
<i className="pi pi-send mr-2"></i>
|
|
{isSubmitting ? "Envoi en cours..." : "Envoyer le ticket"}
|
|
</Button>
|
|
</form>
|
|
</Card>
|
|
|
|
{/* Tickets récents */}
|
|
{ticketsRecents.length > 0 && (
|
|
<Card className="p-6">
|
|
<h2 className="text-xl font-semibold mb-4">Vos tickets récents</h2>
|
|
<div className="space-y-3">
|
|
{ticketsRecents.map((ticket) => (
|
|
<div
|
|
key={ticket.id}
|
|
className="flex items-center justify-between p-3 bg-gray-50 rounded hover:bg-gray-100 cursor-pointer"
|
|
>
|
|
<div className="flex-1">
|
|
<div className="flex items-center gap-3">
|
|
<span className="font-mono text-sm text-gray-600">
|
|
{ticket.id}
|
|
</span>
|
|
{getStatusTag(ticket.status)}
|
|
</div>
|
|
<p className="font-medium mt-1">{ticket.sujet}</p>
|
|
<p className="text-sm text-gray-500">
|
|
Créé le{" "}
|
|
{new Date(ticket.date).toLocaleDateString("fr-FR", {
|
|
day: "2-digit",
|
|
month: "long",
|
|
year: "numeric",
|
|
})}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</Card>
|
|
)}
|
|
</div>
|
|
|
|
{/* Sidebar - Informations de contact */}
|
|
<div className="space-y-6">
|
|
{/* Horaires de support */}
|
|
<Card className="p-6">
|
|
<div className="flex items-center gap-3 mb-4">
|
|
<div className="p-3 bg-blue-100 rounded-lg">
|
|
<i className="pi pi-headphones text-blue-600" style={{ fontSize: '1.5rem' }}></i>
|
|
</div>
|
|
<div>
|
|
<h3 className="font-semibold">Support disponible</h3>
|
|
<p className="text-sm text-gray-600">Lundi - Vendredi</p>
|
|
</div>
|
|
</div>
|
|
<div className="space-y-3 text-sm">
|
|
<div className="flex items-center gap-2">
|
|
<i className="pi pi-clock text-gray-400"></i>
|
|
<span>9h00 - 18h00 (CET)</span>
|
|
</div>
|
|
<p className="text-xs text-gray-500">
|
|
Temps de réponse moyen : 2-4 heures pendant les horaires d'ouverture
|
|
</p>
|
|
</div>
|
|
</Card>
|
|
|
|
{/* Contact téléphonique */}
|
|
<Card className="p-6 bg-blue-50 border-blue-200">
|
|
<div className="flex items-start gap-3">
|
|
<div className="p-3 bg-blue-600 rounded-lg">
|
|
<i className="pi pi-phone text-white" style={{ fontSize: '1.25rem' }}></i>
|
|
</div>
|
|
<div className="flex-1">
|
|
<h3 className="font-semibold text-blue-900 mb-1">
|
|
Support téléphonique
|
|
</h3>
|
|
<p className="text-sm text-blue-700 mb-2">
|
|
Pour une assistance immédiate
|
|
</p>
|
|
<Button
|
|
size="small"
|
|
className="bg-blue-600 hover:bg-blue-700 w-full"
|
|
>
|
|
+33 1 23 45 67 89
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
|
|
{/* Contact email */}
|
|
<Card className="p-6 bg-green-50 border-green-200">
|
|
<div className="flex items-start gap-3">
|
|
<div className="p-3 bg-green-600 rounded-lg">
|
|
<i className="pi pi-envelope text-white" style={{ fontSize: '1.25rem' }}></i>
|
|
</div>
|
|
<div className="flex-1">
|
|
<h3 className="font-semibold text-green-900 mb-1">Email support</h3>
|
|
<p className="text-sm text-green-700 mb-2">Réponse sous 24h</p>
|
|
<Button
|
|
size="small"
|
|
className="bg-green-600 hover:bg-green-700 w-full"
|
|
>
|
|
support@btpxpress.fr
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
|
|
{/* Chat en direct */}
|
|
<Card className="p-6 bg-purple-50 border-purple-200">
|
|
<div className="flex items-start gap-3">
|
|
<div className="p-3 bg-purple-600 rounded-lg">
|
|
<i className="pi pi-comments text-white" style={{ fontSize: '1.25rem' }}></i>
|
|
</div>
|
|
<div className="flex-1">
|
|
<h3 className="font-semibold text-purple-900 mb-1">
|
|
Chat en direct
|
|
</h3>
|
|
<p className="text-sm text-purple-700 mb-2">
|
|
Discutez avec un agent
|
|
</p>
|
|
<Button
|
|
size="small"
|
|
className="bg-purple-600 hover:bg-purple-700 w-full"
|
|
>
|
|
Démarrer le chat
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
|
|
{/* Note importante */}
|
|
<Card className="p-4 bg-yellow-50 border-yellow-200">
|
|
<div className="flex items-start gap-2">
|
|
<i className="pi pi-exclamation-circle text-yellow-600 flex-shrink-0 mt-0.5" style={{ fontSize: '1.25rem' }}></i>
|
|
<div className="flex-1">
|
|
<p className="text-sm text-yellow-800">
|
|
Pour les urgences critiques affectant votre production, appelez
|
|
notre ligne d'urgence 24/7 au{" "}
|
|
<span className="font-semibold">+33 1 98 76 54 32</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|