Spaces:
Sleeping
Sleeping
File size: 6,010 Bytes
1451bab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | "use client";
import React, { useEffect, useRef, useState } from 'react';
import WaveSurfer from 'wavesurfer.js';
import { Play, Pause, FastForward, Rewind, Activity, Music } from 'lucide-react';
interface SmartCompareStudioProps {
originalUrl: string;
cleanedUrl: string;
audioRef?: React.RefObject<HTMLAudioElement | null>;
}
export default function SmartCompareStudio({ originalUrl, cleanedUrl, audioRef }: SmartCompareStudioProps) {
const containerRef = useRef<HTMLDivElement>(null);
const [isPlaying, setIsPlaying] = useState(false);
const [activeTrack, setActiveTrack] = useState<'original' | 'cleaned'>('cleaned');
const [isReady, setIsReady] = useState(false);
const originalWs = useRef<WaveSurfer | null>(null);
const cleanedWs = useRef<WaveSurfer | null>(null);
useEffect(() => {
if (!containerRef.current) return;
// Initialize Original Waveform (Hidden from view but plays audio when active)
originalWs.current = WaveSurfer.create({
container: document.createElement('div'), // Off-DOM
waveColor: '#3f3f46',
progressColor: '#71717a',
url: originalUrl,
});
// Initialize Cleaned Waveform (Visible)
const options: any = {
container: containerRef.current,
waveColor: '#1877F2',
progressColor: '#60A5FA',
cursorColor: '#ffffff',
barWidth: 2,
barGap: 2,
barRadius: 2,
height: 100,
};
if (audioRef && audioRef.current) {
options.media = audioRef.current;
} else {
options.url = cleanedUrl;
}
cleanedWs.current = WaveSurfer.create(options);
// Sync play/pause
cleanedWs.current.on('play', () => setIsPlaying(true));
cleanedWs.current.on('pause', () => setIsPlaying(false));
// Sync seeking (When user clicks on the visible waveform)
cleanedWs.current.on('seeking', (currentTime) => {
originalWs.current?.seekTo(currentTime / cleanedWs.current!.getDuration());
});
Promise.all([
new Promise(resolve => originalWs.current?.on('ready', resolve)),
new Promise(resolve => cleanedWs.current?.on('ready', resolve))
]).then(() => {
setIsReady(true);
// Default to playing cleaned
originalWs.current?.setVolume(0);
cleanedWs.current?.setVolume(1);
});
return () => {
originalWs.current?.destroy();
cleanedWs.current?.destroy();
};
}, [originalUrl, cleanedUrl]);
const togglePlayback = () => {
if (isPlaying) {
originalWs.current?.pause();
cleanedWs.current?.pause();
} else {
originalWs.current?.play();
cleanedWs.current?.play();
}
};
const handleTrackSwitch = (track: 'original' | 'cleaned') => {
setActiveTrack(track);
if (track === 'original') {
originalWs.current?.setVolume(1);
cleanedWs.current?.setVolume(0);
} else {
originalWs.current?.setVolume(0);
cleanedWs.current?.setVolume(1);
}
};
return (
<div className="bg-[#111] border border-[#27272a] rounded-2xl p-6 shadow-xl w-full">
<div className="flex items-center justify-between mb-6">
<h3 className="text-xl font-bold text-white flex items-center gap-2">
<Activity className="text-[#1877F2]" /> Smart Compare Studio
</h3>
{/* A/B Toggle Switch */}
<div className="flex bg-[#1a1a1a] rounded-lg p-1 border border-[#27272a]">
<button
onClick={() => handleTrackSwitch('original')}
className={`px-4 py-2 rounded-md text-sm font-bold transition-all ${activeTrack === 'original' ? 'bg-[#27272a] text-white shadow' : 'text-gray-500 hover:text-gray-300'}`}
>
Original
</button>
<button
onClick={() => handleTrackSwitch('cleaned')}
className={`px-4 py-2 rounded-md text-sm font-bold transition-all flex items-center gap-2 ${activeTrack === 'cleaned' ? 'bg-[#1877F2] text-white shadow-[0_0_10px_rgba(24,119,242,0.3)]' : 'text-gray-500 hover:text-gray-300'}`}
>
<Music className="w-4 h-4" /> Cleaned
</button>
</div>
</div>
{/* Waveform Container */}
<div className="relative mb-6">
{!isReady && (
<div className="absolute inset-0 flex items-center justify-center z-10 bg-[#111]/80 rounded-lg">
<div className="w-6 h-6 border-2 border-[#1877F2] border-t-transparent rounded-full animate-spin"></div>
</div>
)}
<div ref={containerRef} className="w-full bg-[#0a0a0a] rounded-lg overflow-hidden border border-[#27272a]"></div>
</div>
{/* Controls */}
<div className="flex items-center justify-center gap-6">
<button className="text-gray-400 hover:text-white transition-colors" onClick={() => {
const time = cleanedWs.current?.getCurrentTime() || 0;
cleanedWs.current?.setTime(Math.max(0, time - 5));
originalWs.current?.setTime(Math.max(0, time - 5));
}}>
<Rewind className="w-6 h-6" />
</button>
<button
onClick={togglePlayback}
disabled={!isReady}
className={`w-14 h-14 flex items-center justify-center rounded-full transition-all ${isReady ? 'bg-[#1877F2] hover:bg-[#166FE5] text-white shadow-[0_0_15px_rgba(24,119,242,0.4)] hover:scale-105' : 'bg-[#27272a] text-gray-500 cursor-not-allowed'}`}
>
{isPlaying ? <Pause className="w-6 h-6 fill-current" /> : <Play className="w-6 h-6 fill-current translate-x-0.5" />}
</button>
<button className="text-gray-400 hover:text-white transition-colors" onClick={() => {
const time = cleanedWs.current?.getCurrentTime() || 0;
cleanedWs.current?.setTime(Math.min(cleanedWs.current.getDuration(), time + 5));
originalWs.current?.setTime(Math.min(originalWs.current.getDuration(), time + 5));
}}>
<FastForward className="w-6 h-6" />
</button>
</div>
</div>
);
}
|