/* global React */ const { useState, useEffect, useRef } = React; // ============================================================================= // HISTORIA — Galería animada de archivo histórico // ============================================================================= const historiaItems = [ { id: "h1", src: "assets/historia/01-revista-portada.jpeg", year: "2002", title: "QUIÉN LA LLEVA", body: "Los Reyes de la Calle en portada. 47 jóvenes de las poblaciones más marginales de Santiago reescribiendo lo que significa ser deportista en Chile.", tag: "Prensa", aspect: "portrait" }, { id: "h2", src: "assets/historia/02-and1-mixtape-tour.jpeg", year: "2004", title: "AND1 MIXTAPE TOUR · CHILE", body: "El tour mundial de AND1 aterriza en Chile y nosotros somos parte. Mural, sneakers, crossover. La cultura street llega oficialmente al sur del mundo.", tag: "Tour", aspect: "wide" }, { id: "h3", src: "assets/historia/03-sba-usa.jpeg", year: "2003", title: "VS. TEAM USA", body: "Los mejores jugadores chilenos exhibieron sus habilidades ante los estadounidenses del Team AND1. Una noche en la que el barrio se midió con el mundo.", tag: "Encuentro", aspect: "wide" }, { id: "h4", src: "assets/historia/04-gimnasio-osorno.jpeg", year: "2003", title: "OSORNO RESPONDE", body: "Gimnasio lleno. El streetball cruzó la cordillera de norte a sur. Equipos de toda la región sur respondieron al llamado de la calle.", tag: "Tour Sur", aspect: "wide" }, { id: "h5", src: "assets/historia/05-aca-tu-pones-reglas.jpeg", year: "2003", title: "ACÁ TÚ PONES LAS REGLAS", body: "Elvis Marte del Team AND1 lo dijo claro: en la calle no hay árbitros, hay códigos. Una herramienta de inserción social para los jóvenes lejos de los vicios.", tag: "Editorial", aspect: "portrait" }, { id: "h6", src: "assets/historia/06-la-moneda.jpeg", year: "2003", title: "EL STREETBALL LLEGÓ A LA MONEDA", body: "Una invasión de ritmo y color interrumpió los tonos grises del centro cívico. El intendente Trivelli se animó a jugar un rato con los muchachos.", tag: "Hito", aspect: "portrait" }, { id: "h7", src: "assets/historia/07-trivelli-plaza.jpeg", year: "2003", title: "PLAZA DE LA CONSTITUCIÓN", body: "El intendente Marcelo Trivelli fue el invitado de honor en la exhibición que el tour montó frente a La Moneda. Autoridades sentadas en el suelo, escuchando.", tag: "Hito", aspect: "wide" }, { id: "h8", src: "assets/historia/08-tour-streetbolers.jpeg", year: "2004", title: "EL TOUR EN MARCHA", body: "Camión rotulado, equipo completo, próxima parada. Llevamos el streetball y el hip hop a cada comuna que abrió sus puertas.", tag: "Tour", aspect: "wide" }]; const Historia = () => { const [active, setActive] = useState(0); const [paused, setPaused] = useState(false); const [lightbox, setLightbox] = useState(null); const scrollerRef = useRef(null); const total = historiaItems.length; // Auto-advance useEffect(() => { if (paused || lightbox) return; const t = setInterval(() => setActive((a) => (a + 1) % total), 5500); return () => clearInterval(t); }, [paused, lightbox, total]); // Sync thumbnail strip scroll position (solo dentro del scroller horizontal, sin tocar el scroll de la página) useEffect(() => { if (!scrollerRef.current) return; const scroller = scrollerRef.current; const el = scroller.querySelector(`[data-thumb="${active}"]`); if (el) { const left = el.offsetLeft - scroller.clientWidth / 2 + el.clientWidth / 2; scroller.scrollTo({ left, behavior: "smooth" }); } }, [active]); const next = () => setActive((a) => (a + 1) % total); const prev = () => setActive((a) => (a - 1 + total) % total); const current = historiaItems[active]; return (
setPaused(true)} onMouseLeave={() => setPaused(false)}> {/* Texture overlay */}
\")" }} />
{/* Header */}
· Archivo Histórico · 2003 → Hoy

ASÍ FUE.
ASÍ SIGUE.

Recorrimos comunas, gimnasios y espacios públicos llevando el streetball a la gente. Eventos masivos, prensa, La Moneda, Osorno, partidos contra la SBA de Estados Unidos.

Detrás de cada evento hubo jugadores, DJ, animadores, entrenadores, amistades, familias y público. El movimiento generó lazos, experiencias e identidad — más de 20 años después, todavía late.

{/* Main stage */}
{/* Image stage */}
setLightbox(current)} role="button" tabIndex={0}> {historiaItems.map((it, i) =>
{it.title} {/* Vintage paper grain on photo */}
{/* Year sticker */}
{it.year}
{/* Tag */}
{it.tag}
{/* Zoom hint */}
)} {/* Prev / Next */} {/* Progress bar */}
{/* Counter */}
{String(active + 1).padStart(2, "0")} / {String(total).padStart(2, "0")}
{/* Caption + thumbnail rail */}
{current.tag} · {current.year}

{current.title}

{current.body}

{/* Thumbnails */}
Línea de tiempo
{historiaItems.map((it, i) => )}
{/* Quote band */}

"ACÁ TÚ PONES LAS REGLAS."

— TEAM AND1, OCTUBRE 2003

{/* Lightbox */} {lightbox &&
setLightbox(null)} className="fixed inset-0 z-[150] bg-black/95 backdrop-blur-md flex items-center justify-center p-4 md:p-10 cursor-pointer" style={{ animation: "fadeIn 0.25s ease" }}>
e.stopPropagation()}> {lightbox.title}
{lightbox.tag} · {lightbox.year}

{lightbox.title}

{lightbox.body}

}
); }; window.Historia = Historia;