ysn-rfd's picture
Upload 302 files
057576a verified
import React, { useState, useRef, useEffect } from 'react';
import { Play, Pause, Volume2, Download } from 'lucide-react';
const AudioPlayer = ({ src, title, onDownload }) => {
const [isPlaying, setIsPlaying] = useState(false);
const [currentTime, setCurrentTime] = useState(0);
const [duration, setDuration] = useState(0);
const [volume, setVolume] = useState(1);
const audioRef = useRef();
useEffect(() => {
const audio = audioRef.current;
const updateTime = () => setCurrentTime(audio.currentTime);
const updateDuration = () => setDuration(audio.duration);
const handleEnded = () => setIsPlaying(false);
audio.addEventListener('timeupdate', updateTime);
audio.addEventListener('loadedmetadata', updateDuration);
audio.addEventListener('ended', handleEnded);
return () => {
audio.removeEventListener('timeupdate', updateTime);
audio.removeEventListener('loadedmetadata', updateDuration);
audio.removeEventListener('ended', handleEnded);
};
}, []);
const togglePlay = () => {
if (isPlaying) {
audioRef.current.pause();
} else {
audioRef.current.play();
}
setIsPlaying(!isPlaying);
};
const handleSeek = (e) => {
const newTime = e.target.value;
audioRef.current.currentTime = newTime;
setCurrentTime(newTime);
};
const handleVolumeChange = (e) => {
const newVolume = e.target.value;
audioRef.current.volume = newVolume;
setVolume(newVolume);
};
const formatTime = (time) => {
const minutes = Math.floor(time / 60);
const seconds = Math.floor(time % 60);
return `${minutes}:${seconds.toString().padStart(2, '0')}`;
};
return (
<div className="bg-gray-50 dark:bg-gray-700 rounded-lg p-4 border border-gray-200 dark:border-gray-600">
{/* Hidden audio element */}
<audio ref={audioRef} src={src} preload="metadata" />
{/* Title and Download */}
<div className="flex items-center justify-between mb-3">
<h4 className="text-sm font-medium text-gray-900 dark:text-white truncate flex-1 mr-2">
{title}
</h4>
{onDownload && (
<button
onClick={onDownload}
className="p-1.5 text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200 hover:bg-gray-200 dark:hover:bg-gray-600 rounded transition-colors flex-shrink-0"
title="Download"
>
<Download size={16} />
</button>
)}
</div>
{/* Controls */}
<div className="flex items-center space-x-3">
<button
onClick={togglePlay}
className="p-2 bg-primary-500 text-white rounded-full hover:bg-primary-600 transition-colors flex-shrink-0"
>
{isPlaying ? <Pause size={16} /> : <Play size={16} />}
</button>
{/* Progress */}
<div className="flex-1 space-y-1">
<input
type="range"
min="0"
max={duration || 0}
value={currentTime}
onChange={handleSeek}
className="w-full h-1.5 bg-gray-200 dark:bg-gray-600 rounded-lg appearance-none cursor-pointer [&::-webkit-slider-thumb]:appearance-none [&::-webkit-slider-thumb]:h-3 [&::-webkit-slider-thumb]:w-3 [&::-webkit-slider-thumb]:rounded-full [&::-webkit-slider-thumb]:bg-primary-500"
/>
<div className="flex justify-between text-xs text-gray-500 dark:text-gray-400">
<span>{formatTime(currentTime)}</span>
<span>{formatTime(duration)}</span>
</div>
</div>
{/* Volume */}
<div className="flex items-center space-x-2 w-20">
<Volume2 size={16} className="text-gray-500 dark:text-gray-400 flex-shrink-0" />
<input
type="range"
min="0"
max="1"
step="0.1"
value={volume}
onChange={handleVolumeChange}
className="w-full h-1.5 bg-gray-200 dark:bg-gray-600 rounded-lg appearance-none cursor-pointer [&::-webkit-slider-thumb]:appearance-none [&::-webkit-slider-thumb]:h-3 [&::-webkit-slider-thumb]:w-3 [&::-webkit-slider-thumb]:rounded-full [&::-webkit-slider-thumb]:bg-primary-500"
/>
</div>
</div>
</div>
);
};
export default AudioPlayer;