import { useState, useEffect, useCallback, useReducer, useRef } from "react"; import { useNavigate } from "react-router-dom"; import { useAuthStore } from "@/stores/auth-store"; import type { Particle } from "@/api/types"; import { useLiveParticleChildren } from "@/hooks/use-particle"; import { parseParticlePath, toFirestoreDocPath, type ParticlePath } from "@/lib/particle-path"; import { ComposeOverlay } from "@/features/compose/compose-overlay"; import { PlaybackPageIndicator } from "@/features/playback/playback-page-indicator"; import { ParticleRenderer } from "@/features/playback/particle-renderer"; import { Avatar, AvatarFallback } from "@/components/ui/avatar"; import ControlsIndicator from "@/features/compose/controls-indicator"; import { updateStreamPlaybackMarker } from "@/lib/firestore-particles"; // --- Playback reducer --- type PlaybackStatus = "idle" | "playing" | "ended"; interface PlaybackState { currentIndex: number; status: PlaybackStatus; paused: boolean; } type PlaybackAction = | { type: "INIT"; particleCount: number, initialIndex?: number } | { type: "NEXT"; particleCount: number } | { type: "PREV" } | { type: "GO_TO"; index: number; particleCount: number } | { type: "PAUSE" } | { type: "RESUME" } | { type: "SYNC_PARTICLES"; particleCount: number }; function playbackReducer( state: PlaybackState, action: PlaybackAction, ): PlaybackState { switch (action.type) { case "INIT": return { currentIndex: action.initialIndex ?? 0, status: action.particleCount > 0 ? "playing" : "idle", paused: false, }; case "NEXT": if (state.currentIndex < action.particleCount - 1) { return { ...state, currentIndex: state.currentIndex + 1, paused: false }; } return { ...state, status: "ended", paused: false }; case "PREV": if (state.currentIndex > 0) { return { ...state, currentIndex: state.currentIndex - 1, status: "playing", paused: false, }; } return state; case "GO_TO": if (action.index >= 0 && action.index < action.particleCount) { return { ...state, currentIndex: action.index, status: "playing", paused: false, }; } return state; case "PAUSE": return { ...state, paused: true }; case "RESUME": return { ...state, paused: false }; case "SYNC_PARTICLES": // Clamp index if particles were removed; don't reset position if (action.particleCount === 0) { return { currentIndex: 0, status: "idle", paused: state.paused }; } if (state.currentIndex >= action.particleCount) { return { ...state, currentIndex: action.particleCount - 1 }; } return state; } } const initialState: PlaybackState = { currentIndex: 0, status: "idle", paused: false, }; // --- StreamView --- interface StreamViewProps { streamParticle: Particle & { type: "stream" }; path: ParticlePath; } export function StreamView({ path, streamParticle }: StreamViewProps) { const { networkId } = parseParticlePath(path); const navigate = useNavigate(); const { children } = useLiveParticleChildren(path, "created_at", "asc"); const [state, dispatch] = useReducer(playbackReducer, initialState); const [composeActive, setComposeActive] = useState(false); const hasInitializedRef = useRef(null); const userId = useAuthStore((s) => s.user?.id); // Init playback once per stream entry, only after children have loaded useEffect(() => { if (children.length === 0) return; if (hasInitializedRef.current === streamParticle.id) return; hasInitializedRef.current = streamParticle.id; const playbackPosition = streamParticle.playback_markers?.[userId ?? ""]; let initialIndex = 0; if (playbackPosition) { const foundIndex = children.findIndex( (c) => c.created_at.getTime() === playbackPosition.getTime(), ); if (foundIndex !== -1) { initialIndex = foundIndex; } } dispatch({ type: "INIT", particleCount: children.length, initialIndex }); }, [streamParticle.id, userId, children]); // Sync on subsequent changes (new particle appended, removed, etc.) useEffect(() => { if (hasInitializedRef.current !== streamParticle.id) return; dispatch({ type: "SYNC_PARTICLES", particleCount: children.length }); }, [children.length, streamParticle.id]); // Pause/resume playback when compose overlay opens/closes useEffect(() => { if (composeActive) dispatch({ type: "PAUSE" }); else dispatch({ type: "RESUME" }); }, [composeActive]); const next = useCallback(() => { dispatch({ type: "NEXT", particleCount: children.length }); }, [children.length]); const prev = useCallback(() => { dispatch({ type: "PREV" }); }, []); const goTo = useCallback( (index: number) => { dispatch({ type: "GO_TO", index, particleCount: children.length }); }, [children.length], ); // Playback keyboard: arrows, escape useEffect(() => { const handleKeyDown = (e: KeyboardEvent) => { if (composeActive) return; const target = e.target as HTMLElement; if ( target.tagName === "INPUT" || target.tagName === "TEXTAREA" || target.isContentEditable ) { return; } switch (e.key) { case "ArrowRight": case "ArrowDown": e.preventDefault(); next(); break; case "ArrowLeft": case "ArrowUp": e.preventDefault(); prev(); break; case "Escape": e.preventDefault(); navigate(`/${networkId}`); break; } } window.addEventListener("keydown", handleKeyDown); return () => window.removeEventListener("keydown", handleKeyDown); }, [composeActive, next, prev, navigate, networkId], ); const currentParticle = children[state.currentIndex] ?? null; useEffect(() => { if (!userId || !currentParticle) return; const streamDocPath = toFirestoreDocPath(path); updateStreamPlaybackMarker(streamDocPath, userId, currentParticle.created_at); }, [currentParticle, path]) // Stream name from properties (narrowed to stream type) const streamName = streamParticle.properties.name // Author info from current particle const authorEmail = currentParticle?.created_by_email ?? ""; const authorInitials = authorEmail.split("@")[0]?.slice(0, 2).toUpperCase() ?? ""; if (children.length === 0) { return (

No particles in this stream yet

); } return (
{/* Progress indicator */}
{/* Author overlay */} {currentParticle && (
{authorInitials} {authorEmail.split("@")[0]}
)} {/* Main playback area */}
{currentParticle && ( )}
{/* Bottom overlay: stream info + reply */}
); }