«Tesseramento» nominava lo scopo invece del contenuto (dati personali, documento, certificato medico, foto tessera); cambia anche la rotta in /profilo?tab=documenti. «Impostazioni» diventa «Opzioni» così le quattro etichette stanno in uno schermo da telefono: le voci della barra si dividono la riga in parti uguali (grow basis-0) e tornano a scorrere solo se non ci stanno, quindi vale anche per Squadra e Classifica. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
125 lines
4.1 KiB
TypeScript
125 lines
4.1 KiB
TypeScript
import { useEffect, useRef, useState, type ReactNode } from "react";
|
|
import { motion, useReducedMotion } from "motion/react";
|
|
import { cn } from "@/lib/utils";
|
|
import { proietta } from "@/lib/molla";
|
|
|
|
export type VoceSottosezione = {
|
|
id: string;
|
|
label: string;
|
|
contenuto: ReactNode;
|
|
};
|
|
|
|
/** Tween breve: evita molle + exit che tengono due pannelli in DOM insieme. */
|
|
const transizioneTab = { type: "tween" as const, duration: 0.16, ease: [0.25, 0.1, 0.25, 1] };
|
|
|
|
/**
|
|
* Barra di sottosezioni in un'unica fila scorrevole (swipe orizzontale) e
|
|
* pannello che mostra una sola sezione alla volta, cambiabile anche con
|
|
* swipe sul contenuto.
|
|
*
|
|
* Il pannello precedente si smonta subito (niente AnimatePresence/exit):
|
|
* al cambio tab resta un solo albero da animare in ingresso.
|
|
*/
|
|
export function BarraSottosezioni({
|
|
voci,
|
|
defaultId,
|
|
}: {
|
|
voci: VoceSottosezione[];
|
|
defaultId?: string;
|
|
}) {
|
|
const [attiva, setAttiva] = useState(defaultId ?? voci[0]?.id ?? "");
|
|
const direzione = useRef(0);
|
|
const tabRefs = useRef<Record<string, HTMLButtonElement | null>>({});
|
|
const ridotto = useReducedMotion();
|
|
const indice = Math.max(
|
|
0,
|
|
voci.findIndex((v) => v.id === attiva),
|
|
);
|
|
const voce = voci[indice] ?? voci[0];
|
|
|
|
useEffect(() => {
|
|
// `auto`: lo smooth competerebbe col tween del pannello sul main thread.
|
|
tabRefs.current[attiva]?.scrollIntoView({
|
|
behavior: "auto",
|
|
inline: "center",
|
|
block: "nearest",
|
|
});
|
|
}, [attiva]);
|
|
|
|
function vaiA(nuovo: number) {
|
|
if (nuovo < 0 || nuovo >= voci.length) return;
|
|
const target = voci[nuovo];
|
|
if (!target || target.id === attiva) return;
|
|
direzione.current = nuovo > indice ? 1 : -1;
|
|
setAttiva(target.id);
|
|
}
|
|
|
|
if (!voce) return null;
|
|
|
|
return (
|
|
<div>
|
|
<div className="border-b border-border bg-background/80 pt-3 backdrop-blur-md">
|
|
<div
|
|
role="tablist"
|
|
aria-label="Sottosezioni"
|
|
className="-mx-0 flex snap-x snap-mandatory gap-1.5 overflow-x-auto px-5 pb-3 [scrollbar-width:none] [&::-webkit-scrollbar]:hidden"
|
|
>
|
|
{voci.map((v) => {
|
|
const selezionata = v.id === attiva;
|
|
return (
|
|
<button
|
|
key={v.id}
|
|
ref={(el) => {
|
|
tabRefs.current[v.id] = el;
|
|
}}
|
|
type="button"
|
|
role="tab"
|
|
aria-selected={selezionata}
|
|
onClick={() => {
|
|
const i = voci.findIndex((x) => x.id === v.id);
|
|
vaiA(i);
|
|
}}
|
|
className={cn(
|
|
// grow+basis-0: se le voci ci stanno riempiono la riga in parti uguali,
|
|
// altrimenti shrink-0 le tiene leggibili e la barra torna a scorrere.
|
|
"snap-center shrink-0 grow basis-0 rounded-full px-3.5 py-2 text-xs font-bold uppercase tracking-wide transition-colors",
|
|
"min-h-11 touch-manipulation whitespace-nowrap",
|
|
selezionata
|
|
? "bg-accent text-accent-foreground shadow-pop"
|
|
: "bg-secondary text-muted-foreground",
|
|
)}
|
|
>
|
|
{v.label}
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="relative overflow-hidden">
|
|
<motion.div
|
|
key={voce.id}
|
|
role="tabpanel"
|
|
aria-label={voce.label}
|
|
drag="x"
|
|
dragConstraints={{ left: 0, right: 0 }}
|
|
dragElastic={0.12}
|
|
dragMomentum={false}
|
|
onDragEnd={(_, info) => {
|
|
const arrivo = info.offset.x + proietta(info.velocity.x);
|
|
if (arrivo < -60) vaiA(indice + 1);
|
|
else if (arrivo > 60) vaiA(indice - 1);
|
|
}}
|
|
initial={ridotto ? { opacity: 0 } : { opacity: 0, x: direzione.current * 20 }}
|
|
animate={{ opacity: 1, x: 0 }}
|
|
transition={ridotto ? { duration: 0.1 } : transizioneTab}
|
|
className="touch-pan-y px-5 py-4"
|
|
>
|
|
<h2 className="mb-3 font-display-sm text-lg uppercase">{voce.label}</h2>
|
|
{voce.contenuto}
|
|
</motion.div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|