import { memo, useRef, useState, useCallback, useEffect } from "react"; interface AudioWaveformProps { audioUrl: string; label: string; labelColor: string; } const BAR_W = 2; const GAP = 1; const STEP = BAR_W + GAP; /** Downsample PCM channel data into peak amplitudes (0–1). */ function extractPeaks(channelData: Float32Array, barCount: number): number[] { const peaks: number[] = []; const samplesPerBar = Math.floor(channelData.length / barCount); if (samplesPerBar === 0) return Array(barCount).fill(0); for (let i = 0; i < barCount; i++) { let max = 0; const start = i * samplesPerBar; const end = Math.min(start + samplesPerBar, channelData.length); for (let j = start; j < end; j++) { const abs = Math.abs(channelData[j] ?? 0); if (abs > max) max = abs; } peaks.push(max); } const maxPeak = Math.max(...peaks, 0.001); return peaks.map((p) => p / maxPeak); } /** Deterministic fake waveform as fallback (matches demo app). */ function fakePeaks(url: string, count: number): number[] { let seed = 0; for (let i = 0; i < url.length; i++) seed = ((seed << 5) - seed + url.charCodeAt(i)) | 0; seed = Math.abs(seed) || 42; const rand = () => { seed = (seed * 16807) % 2147483647; return (seed & 0x7fffffff) / 2147483647; }; const peaks: number[] = []; for (let i = 0; i < count; i++) { const t = i / count; const envelope = 0.3 + 0.3 * Math.sin(t * Math.PI * 3.2) + 0.2 * Math.sin(t * Math.PI * 7.1); peaks.push(Math.max(0.05, Math.min(1, envelope * (0.4 + 0.6 * rand())))); } return peaks; } // Module-level cache so decoded audio persists across re-renders and re-mounts const peaksCache = new Map(); /** * Audio waveform rendered from real PCM data via Web Audio API. * Falls back to a deterministic fake pattern if decoding fails. * Bars grow from bottom to top, rendered as CSS divs for zoom resilience. */ export const AudioWaveform = memo(function AudioWaveform({ audioUrl, label, labelColor, }: AudioWaveformProps) { const containerRef = useRef(null); const barsRef = useRef(null); const roRef = useRef(null); const [peaks, setPeaks] = useState(peaksCache.get(audioUrl) ?? null); // Fetch + decode audio once useEffect(() => { if (peaks || !audioUrl) return; const ctrl = new AbortController(); fetch(audioUrl, { signal: ctrl.signal }) .then((r) => r.arrayBuffer()) .then((buf) => { const ctx = new AudioContext(); return ctx.decodeAudioData(buf).finally(() => ctx.close()); }) .then((decoded) => { if (ctrl.signal.aborted) return; const channel = decoded.getChannelData(0); // Extract enough peaks for wide clips (up to 4000 bars) const p = extractPeaks(channel, 4000); peaksCache.set(audioUrl, p); setPeaks(p); }) .catch(() => { if (ctrl.signal.aborted) return; // Fallback to fake waveform const p = fakePeaks(audioUrl, 4000); peaksCache.set(audioUrl, p); setPeaks(p); }); return () => ctrl.abort(); }, [audioUrl, peaks]); // Draw bars into the container using innerHTML (fast, zoom-resilient) const draw = useCallback(() => { const container = containerRef.current; const barsEl = barsRef.current; if (!container || !barsEl || !peaks) return; const w = container.clientWidth || 400; const barCount = Math.min(Math.floor(w / STEP), peaks.length); let html = ""; for (let i = 0; i < barCount; i++) { // Map bar index to peak index (resample) const peakIdx = Math.floor((i / barCount) * peaks.length); const amp = peaks[peakIdx] ?? 0; const pct = Math.max(3, Math.round(amp * 100)); const opacity = (0.45 + amp * 0.4).toFixed(2); html += `
`; } barsEl.innerHTML = html; }, [peaks]); // Observe container size and redraw const setContainerRef = useCallback( (el: HTMLDivElement | null) => { roRef.current?.disconnect(); containerRef.current = el; if (!el) return; draw(); roRef.current = new ResizeObserver(() => draw()); roRef.current.observe(el); }, [draw], ); // Redraw when peaks arrive useEffect(() => { draw(); }, [draw]); useEffect( () => () => { roRef.current?.disconnect(); }, [], ); return (
{/* Shimmer while decoding */} {!peaks && (
)}
{label}
); });