Trois surfaces partagent désormais le même design system, Tailwind v4
et React 19 — au lieu d'avoir landing en HTML vanilla, app en React, et
blog en Adonis SSR :
* packages/ui — design system partagé (tokens Tailwind v4 + composants
TSX) extrait depuis apps/web : Brand, Gem, Button, Card, Chip, Eyebrow,
EmptyState. apps/web migre 41 imports vers @rubis/ui.
* apps/landing — nouvelle app Astro 6 SSR (rubis.pro), remplace l'ancienne
landing nginx vanilla. Embarque :
- Landing complète portée en sections React (Hero, Stats, Promise,
HowItWorks, Gamification, Legal, Pricing, FAQ, FinalCTA, Footnotes)
- Pages légales (mentions, confidentialité, CGV) via LegalLayout.astro
- Blog SSR (/blog, /blog/:slug) qui consomme /api/v1/posts
- sitemap.xml, blog/rss.xml, robots.txt en endpoints Astro
- SEO complet (canonical, hreflang, OG, Twitter Card, JSON-LD
Article/BreadcrumbList/Blog/SoftwareApplication)
* apps/api — BlogController réduit à 2 endpoints JSON (GET /api/v1/posts
+ GET /api/v1/posts/:slug). Suppression des templates SSR Adonis
(apps/api/app/blog/), de l'alias #blog/*, des deps react-dom et
@types/react-dom. PostTransformer + PostSummaryTransformer ajoutés.
Le service blog_renderer + le seeder + les 3 articles fondateurs
restent intacts (réutilisés par futurs admin + cron IA).
* Infra :
- Dockerfile.landing (multi-stage Node 22 + tini, Astro standalone)
- k3s/app/landing.yml (Deployment + Service rubis-landing:4321 +
ConfigMap avec API_URL=http://rubis-api.rubis.svc.cluster.local:3333)
- .gitea/workflows/deploy.yml mis à jour pour build rubis-landing
- .gitea/workflows/deploy-web.yml + Dockerfile.web : prennent en
compte packages/ui/ comme dépendance
- Suppression du Dockerfile nginx legacy + k3s/{deployment,service}.yml
- Suppression de landing/ (assets favicons migrés vers
apps/landing/public/)
* Docs : architecture.md (vue d'ensemble + §4bis apps/landing complet,
§3 endpoints JSON blog, layout monorepo), CLAUDE.md (stack technique,
documents associés, déploiement).
Note infra : l'ancien Deployment "rubis" (nginx) et son Service ne sont
PAS supprimés par la CI — à nettoyer manuellement après validation que
Traefik a été repointé sur rubis-landing:4321 dans le repo proxmox.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
import { Link } from "@tanstack/react-router";
|
|
|
|
import { Card } from "@rubis/ui";
|
|
import { Eyebrow } from "@rubis/ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
/**
|
|
* TopLatePayers — wireframe 4.1, panneau "Top retards".
|
|
*
|
|
* Note marque : "manié avec tact, jamais visible côté client" (cf. annotation
|
|
* du wireframe). On nomme "Retards récurrents" et pas "Mauvais payeurs".
|
|
*/
|
|
export type LatePayer = {
|
|
clientId: string;
|
|
name: string;
|
|
lateInvoicesCount: number;
|
|
};
|
|
|
|
type TopLatePayersProps = {
|
|
payers: LatePayer[];
|
|
className?: string;
|
|
};
|
|
|
|
export function TopLatePayers({ payers, className }: TopLatePayersProps) {
|
|
return (
|
|
<Card padding="md" className={cn("min-w-0", className)}>
|
|
<div className="flex items-center justify-between">
|
|
<Eyebrow tone="ink">Retards récurrents</Eyebrow>
|
|
<Link
|
|
to="/clients"
|
|
className="text-[12px] text-ink-3 hover:text-rubis hover:underline underline-offset-4"
|
|
>
|
|
Voir tout
|
|
</Link>
|
|
</div>
|
|
|
|
{payers.length === 0 ? (
|
|
<p className="mt-4 text-[14px] text-ink-3 italic">
|
|
Aucun retard récurrent. Vos clients sont sérieux.
|
|
</p>
|
|
) : (
|
|
<ul className="mt-4 flex flex-col divide-y divide-line">
|
|
{payers.map((payer) => (
|
|
<li
|
|
key={payer.clientId}
|
|
className="flex items-center justify-between gap-3 py-2.5 first:pt-0 last:pb-0 text-[13.5px]"
|
|
>
|
|
<span className="truncate text-ink">{payer.name}</span>
|
|
<span className="shrink-0 text-ink-2">
|
|
<strong className="font-semibold tabular-nums">{payer.lateInvoicesCount}</strong>{" "}
|
|
<span className="text-ink-3">
|
|
{payer.lateInvoicesCount > 1 ? "retards" : "retard"}
|
|
</span>
|
|
</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
)}
|
|
</Card>
|
|
);
|
|
}
|