Newer
Older
import { TrendingUp, ScatterChart, PieChart, BookOpen, FileText, ExternalLink, FileCode } from 'lucide-react'
{ key: 'temporal', label: 'Séries temporelles', icon: TrendingUp },
{ key: 'points', label: 'Nuage de points', icon: ScatterChart },
{ key: 'diagram', label: 'Diagramme circulaire', icon: PieChart },
] as const
export type TabKey = (typeof tabs)[number]['key']
interface SidebarProps {
activeTab: TabKey
onTabChange: (tab: TabKey) => void
open: boolean
}
export default function Sidebar({ activeTab, onTabChange, open }: SidebarProps) {
return (
<div className={`bg-[#212529] w-fit shrink-0 px-8 py-6 text-white border-r border-[#3a3f44] ${open ? 'block' : 'hidden'} md:block absolute md:relative z-20 h-full md:h-auto`}>
<div className="w-fit">
<div className="flex gap-2 items-center mb-8 w-fit">
<div className="flex gap-1 items-end justify-center rounded">
<div className="bar h-5 w-1 rounded-full bg-white" style={{ animationDelay: '0s' }}></div>
<div className="bar h-3.5 w-1 rounded-full bg-white" style={{ animationDelay: '0.3s' }}></div>
<div className="bar h-4.5 w-1 rounded-full bg-white" style={{ animationDelay: '0.6s' }}></div>
</div>
<h1>FullStack Lab</h1>
</div>
<div className="flex gap-2 items-center text-[#b0afaf] mb-4">
<p className="uppercase text-xs">Visualisation</p>
</div>
<nav className="flex flex-col gap-1">
{tabs.map((tab) => (
<button
key={tab.key}
onClick={() => onTabChange(tab.key)}
className={`flex items-center gap-2 text-left text-sm px-3 py-2 rounded transition-colors cursor-pointer ${
activeTab === tab.key
? 'bg-[#181C1F] text-white'
: 'text-[#b0afaf] hover:text-white'
}`}
>
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<div className="flex gap-2 items-center text-[#b0afaf] mb-4 mt-8">
<p className="uppercase text-xs">Infos</p>
</div>
<nav className="flex flex-col gap-1">
<a
href="https://pigne.org/teaching/webdev2/lecture/dynamic-graphical-data"
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 text-left text-sm px-3 py-2 rounded text-[#b0afaf] hover:text-white transition-colors"
>
<BookOpen size={16} />
Cours
</a>
<a
href="https://pigne.org/teaching/webdev2/lab/FullStackLab"
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 text-left text-sm px-3 py-2 rounded text-[#b0afaf] hover:text-white transition-colors"
>
<FileText size={16} />
Sujet TP
</a>
</nav>
<div className="flex gap-2 items-center text-[#b0afaf] mb-4 mt-8">
<p className="uppercase text-xs">Librairies</p>
</div>
<nav className="flex flex-col gap-1">
<a
href="https://recharts.org"
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 text-left text-sm px-3 py-2 rounded text-[#b0afaf] hover:text-white transition-colors"
>
<ExternalLink size={16} />
Recharts
</a>
<a
href="https://www.chartjs.org"
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 text-left text-sm px-3 py-2 rounded text-[#b0afaf] hover:text-white transition-colors"
>
<ExternalLink size={16} />
Chart.js
</a>
</nav>
<div className="flex gap-2 items-center text-[#b0afaf] mb-4 mt-8">
<p className="uppercase text-xs">API</p>
</div>
<nav className="flex flex-col gap-1">
<a
href="/api"
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 text-left text-sm px-3 py-2 rounded text-[#b0afaf] hover:text-white transition-colors"
>
<FileCode size={16} />
Swagger
</a>
</nav>