karbe/src/components/admin/Sidebar.tsx
Ubuntu 5be62f012f
All checks were successful
CI / test (pull_request) Successful in 2m40s
feat(rental): Sprint O — reversements prestataires (payouts)
Marketplace encaisse centralisé sur System D → besoin de tracer les
virements mensuels aux prestataires tiers. Migration appliquée prod.

Schema :
- Modèle RentalPayoutMark { id, providerId, periodMonth, amount,
  reference, paidAt, paidByEmail }. Unique (providerId, periodMonth)
  → 1 mark = 1 mois = 1 virement par provider.

Lib src/lib/payouts.ts :
- monthKey(d) → 1er du mois minuit UTC (clé de période).
- listProviderPayouts({monthsBack=6}) → grid provider × mois avec
  bookingsCount + grossAmount (itemsTotal) + commission + netAmount
  (gross-commission) + statut paid via RentalPayoutMark. Exclut
  System D (commission 0%, géré par l'asso). Statut « payé » lu
  depuis les marks. Tri : mois desc puis providerName.
- createPayoutMark (idempotent via findUnique avant insert) +
  deletePayoutMark.

Politique : net dû = itemsTotal - commissionAmount (depositTotal
hors flux, collecté par le provider auprès du client). Politique
documentée dans le commentaire en tête de payouts.ts.

/admin/payouts/page.tsx :
- 3 KPIs (À payer / Déjà payé / Mois affichés).
- Une section par mois (6 derniers), tableau provider × CA brut +
  commission + net dû + statut.
- MarkPaidForm : bouton « Marquer payé » → form inline (amount
  pré-rempli avec net dû, reference optionnelle) → action
  markPayoutPaidAction. Statut payé montre amount + ref + bouton
  « Annuler marquage ».

Server actions :
- markPayoutPaidAction (admin only, idempotent, audit
  admin.payouts/payout.mark + payout.already_marked) → envoie
  sendPayoutSent au contactEmail du provider (best-effort).
- unmarkPayoutPaidAction → delete + audit payout.unmark.

Email sendPayoutSent : notification au provider quand un virement est
marqué payé. Inclut amount + reference + lien dashboard.

Sidebar admin gagne entrée « Reversements » sous Activité.

Tests vitest tests/lib/payouts.test.ts (4 cas) : monthKey
normalisation UTC + idempotence + janvier sans bug, formatMonth fr-FR.
Total : 74/74 ✓.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-06-03 02:59:16 +00:00

208 lines
7.2 KiB
TypeScript

"use client";
import Link from "next/link";
import { usePathname } from "next/navigation";
import type { ReactNode } from "react";
type NavItem = {
href: string;
label: string;
icon: ReactNode;
badge?: number;
};
type NavGroup = {
label: string;
items: NavItem[];
};
const ICONS = {
dashboard: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<rect x="3" y="3" width="7" height="7" rx="1" />
<rect x="14" y="3" width="7" height="7" rx="1" />
<rect x="3" y="14" width="7" height="7" rx="1" />
<rect x="14" y="14" width="7" height="7" rx="1" />
</svg>
),
carbets: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<path d="M3 21 L12 6 L21 21 Z" />
<path d="M9 21 V13 H15 V21" />
</svg>
),
bookings: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<rect x="3" y="5" width="18" height="16" rx="2" />
<path d="M3 10 H21" />
<path d="M8 3 V7" />
<path d="M16 3 V7" />
</svg>
),
users: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<circle cx="9" cy="8" r="3" />
<path d="M3 21 Q3 14 9 14 Q15 14 15 21" />
<circle cx="17" cy="9" r="2.5" />
<path d="M14 16 Q17 13 21 16" />
</svg>
),
organizations: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<rect x="4" y="6" width="16" height="14" rx="1" />
<path d="M4 10 H20" />
<path d="M9 10 V20" />
<path d="M15 10 V20" />
</svg>
),
pirogue: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round">
<path d="M3 14 Q12 22 21 14" />
<path d="M5 12 H19" />
<path d="M9 12 V8" />
<path d="M15 12 V8" />
</svg>
),
reviews: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<path d="M12 2 L14.5 8.5 L21 9 L16 14 L17.5 21 L12 17.5 L6.5 21 L8 14 L3 9 L9.5 8.5 Z" />
</svg>
),
media: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<rect x="3" y="3" width="18" height="18" rx="2" />
<circle cx="9" cy="9" r="2" />
<path d="M3 17 L9 11 L21 19" />
</svg>
),
pages: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<path d="M5 3 H15 L19 7 V21 H5 Z" />
<path d="M14 3 V8 H19" />
<path d="M9 13 H15" />
<path d="M9 17 H13" />
</svg>
),
plugins: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<rect x="3" y="3" width="7" height="7" rx="1" />
<rect x="14" y="3" width="7" height="7" rx="1" />
<rect x="3" y="14" width="7" height="7" rx="1" />
<path d="M17 14 V21 M14 17 H20" />
</svg>
),
settings: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<circle cx="12" cy="12" r="3" />
<path d="M12 1 V5 M12 19 V23 M4.2 4.2 L7 7 M17 17 L19.8 19.8 M1 12 H5 M19 12 H23 M4.2 19.8 L7 17 M17 7 L19.8 4.2" />
</svg>
),
audit: (
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<path d="M4 4 H20 V20 H4 Z" />
<path d="M8 9 H16 M8 13 H16 M8 17 H12" />
</svg>
),
};
const GROUPS: NavGroup[] = [
{
label: "Vue d'ensemble",
items: [
{ href: "/admin", label: "Dashboard", icon: ICONS.dashboard },
{ href: "/admin/analytics", label: "Analytics", icon: ICONS.dashboard },
],
},
{
label: "Catalogue",
items: [
{ href: "/admin/carbets", label: "Carbets", icon: ICONS.carbets },
{ href: "/admin/pirogue-providers", label: "Prestataires pirogue", icon: ICONS.pirogue },
{ href: "/admin/rental-providers", label: "Prestataires matériel", icon: ICONS.pirogue },
{ href: "/admin/rental-items", label: "Items locables", icon: ICONS.media },
{ href: "/admin/media", label: "Médias", icon: ICONS.media },
],
},
{
label: "Activité",
items: [
{ href: "/admin/bookings", label: "Réservations", icon: ICONS.bookings },
{ href: "/admin/rentals", label: "Locations matériel", icon: ICONS.bookings },
{ href: "/admin/payouts", label: "Reversements", icon: ICONS.bookings },
{ href: "/admin/reviews", label: "Avis & modération", icon: ICONS.reviews },
],
},
{
label: "Membres",
items: [
{ href: "/admin/users", label: "Utilisateurs", icon: ICONS.users },
{ href: "/admin/organizations", label: "Organisations CE", icon: ICONS.organizations },
],
},
{
label: "Contenu",
items: [
{ href: "/admin/home", label: "Page d'accueil", icon: ICONS.dashboard },
{ href: "/admin/content-pages", label: "Pages éditoriales", icon: ICONS.pages },
],
},
{
label: "Système",
items: [
{ href: "/admin/plugins", label: "Plugins", icon: ICONS.plugins },
{ href: "/admin/settings", label: "Paramètres", icon: ICONS.settings },
{ href: "/admin/audit", label: "Audit log", icon: ICONS.audit },
],
},
];
export function Sidebar() {
const pathname = usePathname();
return (
<nav className="flex h-full w-60 shrink-0 flex-col gap-1 border-r border-zinc-200 bg-[#f7f5f0] py-4">
<Link
href="/admin"
className="mx-3 mb-3 flex items-center gap-2 rounded px-2 py-1.5 text-sm font-semibold text-zinc-900"
>
<span className="inline-block h-2.5 w-2.5 rounded-full bg-[#8c3d18]" />
Karbé · Admin
</Link>
{GROUPS.map((group) => (
<section key={group.label} className="mb-2 px-3">
<h3 className="mb-1 px-2 text-[10px] font-semibold uppercase tracking-wider text-zinc-500">
{group.label}
</h3>
<ul className="space-y-0.5">
{group.items.map((item) => {
const active = pathname === item.href || (item.href !== "/admin" && pathname.startsWith(item.href));
return (
<li key={item.href}>
<Link
href={item.href}
className={`flex items-center justify-between rounded px-2 py-1.5 text-sm transition ${
active
? "bg-white text-zinc-900 shadow-sm ring-1 ring-zinc-200"
: "text-zinc-600 hover:bg-white/60 hover:text-zinc-900"
}`}
>
<span className="flex items-center gap-2">
<span className={active ? "text-[#8c3d18]" : "text-zinc-400"}>{item.icon}</span>
{item.label}
</span>
{item.badge !== undefined ? (
<span className="rounded-full bg-zinc-200 px-1.5 py-0.5 text-[10px] font-medium text-zinc-700">
{item.badge}
</span>
) : null}
</Link>
</li>
);
})}
</ul>
</section>
))}
</nav>
);
}