NeahNew/components/missions/missions-admin-panel.tsx
2025-05-05 10:21:15 +02:00

304 lines
16 KiB
TypeScript

"use client";
import React, { useState } from "react";
import {
Tabs,
TabsContent,
TabsList,
TabsTrigger
} from "../ui/tabs";
import { Input } from "../ui/input";
import { Button } from "../ui/button";
import { Textarea } from "../ui/textarea";
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "../ui/select";
import { Checkbox } from "../ui/checkbox";
import {
Card,
CardContent
} from "../ui/card";
export function MissionsAdminPanel() {
return (
<div className="w-full">
<Card className="border shadow-sm bg-white">
<CardContent className="pt-6">
<Tabs defaultValue="general" className="w-full">
<TabsList className="mb-4 bg-gray-100">
<TabsTrigger value="general" className="data-[state=active]:bg-blue-600 data-[state=active]:text-white">General</TabsTrigger>
<TabsTrigger value="details" className="data-[state=active]:bg-blue-600 data-[state=active]:text-white">Details</TabsTrigger>
<TabsTrigger value="attachments" className="data-[state=active]:bg-blue-600 data-[state=active]:text-white">Attachments</TabsTrigger>
<TabsTrigger value="skills" className="data-[state=active]:bg-blue-600 data-[state=active]:text-white">Skills</TabsTrigger>
</TabsList>
<TabsContent value="general" className="space-y-6">
<div className="space-y-4">
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Nom de la Mission</label>
<Input placeholder="Project title" className="bg-white border-gray-300" />
</div>
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Logo</label>
<div className="border border-dashed rounded-md p-6 text-center bg-gray-50">
<Button variant="outline" className="mb-2 bg-white text-gray-700 border-gray-300 hover:bg-gray-50">Browse</Button>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">ODD scope</label>
<Select>
<SelectTrigger className="bg-white border-gray-300">
<SelectValue placeholder="Select ODD scope" />
</SelectTrigger>
<SelectContent>
<SelectItem value="odd-1">1. Pas de pauvreté</SelectItem>
<SelectItem value="odd-2">2. Faim "zéro"</SelectItem>
<SelectItem value="odd-3">3. Bonne santé et bien-être</SelectItem>
<SelectItem value="odd-4">4. Éducation de qualité</SelectItem>
<SelectItem value="odd-5">5. Égalité entre les sexes</SelectItem>
<SelectItem value="odd-6">6. Eau propre et assainissement</SelectItem>
<SelectItem value="odd-7">7. Énergie propre et d'un coût abordable</SelectItem>
<SelectItem value="odd-8">8. Travail décent et croissance économique</SelectItem>
<SelectItem value="odd-9">9. Industrie, innovation et infrastructure</SelectItem>
<SelectItem value="odd-10">10. Inégalités réduites</SelectItem>
<SelectItem value="odd-11">11. Villes et communautés durables</SelectItem>
<SelectItem value="odd-12">12. Consommation et production responsables</SelectItem>
<SelectItem value="odd-13">13. Mesures relatives à la lutte contre les changements climatiques</SelectItem>
<SelectItem value="odd-14">14. Vie aquatique</SelectItem>
<SelectItem value="odd-15">15. Vie terrestre</SelectItem>
<SelectItem value="odd-16">16. Paix, justice et institutions efficaces</SelectItem>
<SelectItem value="odd-17">17. Partenariats pour la réalisation des objectifs</SelectItem>
</SelectContent>
</Select>
</div>
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Niveau</label>
<Select>
<SelectTrigger className="bg-white border-gray-300">
<SelectValue placeholder="Select niveau" />
</SelectTrigger>
<SelectContent>
<SelectItem value="a">A- Apprentissage</SelectItem>
<SelectItem value="b">B- Basique</SelectItem>
<SelectItem value="c">C- Complex</SelectItem>
<SelectItem value="s">S- Spécial</SelectItem>
</SelectContent>
</Select>
</div>
</div>
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Intention</label>
<div className="border rounded-md border-gray-300">
<div className="bg-gray-50 p-2 border-b flex items-center space-x-2">
<span className="text-gray-700">Paragraphe</span>
<div className="flex items-center space-x-1">
<Button variant="ghost" size="icon" className="h-8 w-8 text-gray-700">B</Button>
<Button variant="ghost" size="icon" className="h-8 w-8 text-gray-700">I</Button>
<Button variant="ghost" size="icon" className="h-8 w-8 text-gray-700">•</Button>
<Button variant="ghost" size="icon" className="h-8 w-8 text-gray-700">1.</Button>
<Button variant="ghost" size="icon" className="h-8 w-8 text-gray-700">"</Button>
</div>
</div>
<Textarea className="min-h-[200px] border-0 bg-white" />
</div>
</div>
</div>
</TabsContent>
<TabsContent value="details" className="space-y-6">
<div className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Type de mission</label>
<Select>
<SelectTrigger className="bg-white border-gray-300">
<SelectValue placeholder="Select location type" />
</SelectTrigger>
<SelectContent>
<SelectItem value="remote">Remote</SelectItem>
<SelectItem value="onsite">On Site</SelectItem>
<SelectItem value="hybrid">Hybrid</SelectItem>
</SelectContent>
</Select>
</div>
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Donneur d'ordre</label>
<Select>
<SelectTrigger className="bg-white border-gray-300">
<SelectValue placeholder="Select volunteer type" />
</SelectTrigger>
<SelectContent>
<SelectItem value="individual">Individual</SelectItem>
<SelectItem value="group">Group</SelectItem>
<SelectItem value="organization">Organization</SelectItem>
</SelectContent>
</Select>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Projection</label>
<Select>
<SelectTrigger className="bg-white border-gray-300">
<SelectValue placeholder="Select duration" />
</SelectTrigger>
<SelectContent>
<SelectItem value="short">Short Term (&lt; 1 month)</SelectItem>
<SelectItem value="medium">Medium Term (1-3 months)</SelectItem>
<SelectItem value="long">Long Term (&gt; 3 months)</SelectItem>
</SelectContent>
</Select>
</div>
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Services</label>
<Select>
<SelectTrigger className="bg-white border-gray-300">
<SelectValue placeholder="Select services" />
</SelectTrigger>
<SelectContent>
<SelectItem value="gite">Gite</SelectItem>
<SelectItem value="artlab">ArtLab</SelectItem>
<SelectItem value="calcul">Calcul</SelectItem>
</SelectContent>
</Select>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Participation</label>
<Select>
<SelectTrigger className="bg-white border-gray-300">
<SelectValue placeholder="Select participation" />
</SelectTrigger>
<SelectContent>
<SelectItem value="volontaire">Volontaire</SelectItem>
<SelectItem value="cooptation">Cooptation</SelectItem>
</SelectContent>
</Select>
</div>
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Location</label>
<Input placeholder="Enter location" className="bg-white border-gray-300" />
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Language</label>
<Input placeholder="Enter language" className="bg-white border-gray-300" />
</div>
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Profils</label>
<Select>
<SelectTrigger className="bg-white border-gray-300">
<SelectValue placeholder="Select profils" />
</SelectTrigger>
<SelectContent>
<SelectItem value="dataintelligence">DataIntelligence</SelectItem>
<SelectItem value="expression">Expression</SelectItem>
<SelectItem value="mediation">Mediation</SelectItem>
<SelectItem value="investigation">Investigation</SelectItem>
<SelectItem value="coding">Coding</SelectItem>
<SelectItem value="lean">Lean</SelectItem>
</SelectContent>
</Select>
</div>
</div>
</div>
</TabsContent>
<TabsContent value="attachments" className="space-y-6">
<div>
<label className="block text-sm font-medium mb-1 text-gray-700">Attachments</label>
<div className="border border-dashed rounded-md p-6 text-center bg-gray-50">
<Button variant="outline" className="mb-2 bg-white text-gray-700 border-gray-300 hover:bg-gray-50">Browse</Button>
<p className="text-sm text-gray-500">Upload file .pdf, .doc, .docx</p>
</div>
</div>
</TabsContent>
<TabsContent value="skills" className="space-y-6">
<div>
<div className="flex justify-between mb-4">
<h3 className="text-lg font-medium text-gray-700">Skills</h3>
<Button variant="outline" size="sm" className="bg-white text-gray-700 border-gray-300 hover:bg-gray-50">Select / Deselect All</Button>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
<div className="flex items-center space-x-2">
<Checkbox id="photoshop" className="border-gray-300" />
<label htmlFor="photoshop" className="text-sm text-gray-700">Adobe Photoshop</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="xd" className="border-gray-300" />
<label htmlFor="xd" className="text-sm text-gray-700">Adobe XD</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="android" className="border-gray-300" />
<label htmlFor="android" className="text-sm text-gray-700">Android Developer</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="artist" className="border-gray-300" />
<label htmlFor="artist" className="text-sm text-gray-700">Artist</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="computer" className="border-gray-300" />
<label htmlFor="computer" className="text-sm text-gray-700">Computer</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="developer" className="border-gray-300" />
<label htmlFor="developer" className="text-sm text-gray-700">Developer</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="frontend" className="border-gray-300" />
<label htmlFor="frontend" className="text-sm text-gray-700">Front end Developer</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="ios" className="border-gray-300" />
<label htmlFor="ios" className="text-sm text-gray-700">iOS Developer</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="support" className="border-gray-300" />
<label htmlFor="support" className="text-sm text-gray-700">Support Agent</label>
</div>
<div className="flex items-center space-x-2">
<Checkbox id="writer" className="border-gray-300" />
<label htmlFor="writer" className="text-sm text-gray-700">Writer</label>
</div>
</div>
</div>
</TabsContent>
</Tabs>
<div className="mt-8 flex justify-end">
<Button className="bg-blue-600 hover:bg-blue-700 text-white">
Save & Preview
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="ml-2">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</Button>
</div>
</CardContent>
</Card>
</div>
);
}