- Added new icons and improved layout in AlbumPage for better track display - Implemented track addition to queue functionality in AlbumPage - Enhanced QueuePage with clearer song information and improved styling - Added scrollable area for queue display and improved user interaction elements
215 lines
7.8 KiB
TypeScript
215 lines
7.8 KiB
TypeScript
'use client';
|
|
import React, { useEffect, useRef, useState } from 'react';
|
|
import Image from 'next/image';
|
|
import { useAudioPlayer } from '@/app/components/AudioPlayerContext';
|
|
import { FaPlay, FaPause, FaVolumeHigh, FaForward, FaBackward } from "react-icons/fa6";
|
|
import ColorThief from '@neutrixs/colorthief';
|
|
import { Progress } from '@/components/ui/progress';
|
|
import { useToast } from '@/hooks/use-toast';
|
|
|
|
export const AudioPlayer: React.FC = () => {
|
|
const { currentTrack, playPreviousTrack, addToQueue, playNextTrack, clearQueue } = useAudioPlayer();
|
|
const audioRef = useRef<HTMLAudioElement>(null);
|
|
const [progress, setProgress] = useState(0);
|
|
const [isPlaying, setIsPlaying] = useState(false);
|
|
const [showVolumeSlider, setShowVolumeSlider] = useState(false);
|
|
const [volume, setVolume] = useState(1);
|
|
const [isClient, setIsClient] = useState(false);
|
|
const audioCurrent = audioRef.current;
|
|
const { toast } = useToast();
|
|
|
|
useEffect(() => {
|
|
setIsClient(true);
|
|
}, []);
|
|
|
|
// Save position when component unmounts or track changes
|
|
useEffect(() => {
|
|
return () => {
|
|
const audioCurrent = audioRef.current;
|
|
if (audioCurrent && currentTrack && audioCurrent.currentTime > 10) {
|
|
localStorage.setItem(`navidrome-track-time-${currentTrack.id}`, audioCurrent.currentTime.toString());
|
|
}
|
|
};
|
|
}, [currentTrack?.id]);
|
|
|
|
useEffect(() => {
|
|
const audioCurrent = audioRef.current;
|
|
|
|
if (currentTrack && audioCurrent && audioCurrent.src !== currentTrack.url) {
|
|
audioCurrent.src = currentTrack.url;
|
|
|
|
// Check for saved timestamp (only restore if more than 10 seconds in)
|
|
const savedTime = localStorage.getItem(`navidrome-track-time-${currentTrack.id}`);
|
|
if (savedTime) {
|
|
const time = parseFloat(savedTime);
|
|
// Only restore if we were at least 10 seconds in and not near the end
|
|
if (time > 10 && time < (currentTrack.duration - 30)) {
|
|
const restorePosition = () => {
|
|
if (audioCurrent.readyState >= 2) { // HAVE_CURRENT_DATA
|
|
audioCurrent.currentTime = time;
|
|
audioCurrent.removeEventListener('loadeddata', restorePosition);
|
|
}
|
|
};
|
|
|
|
if (audioCurrent.readyState >= 2) {
|
|
audioCurrent.currentTime = time;
|
|
} else {
|
|
audioCurrent.addEventListener('loadeddata', restorePosition);
|
|
}
|
|
}
|
|
}
|
|
|
|
audioCurrent.play();
|
|
setIsPlaying(true);
|
|
}
|
|
}, [currentTrack?.id, currentTrack?.url]);
|
|
|
|
useEffect(() => {
|
|
const audioCurrent = audioRef.current;
|
|
let lastSavedTime = 0;
|
|
|
|
const updateProgress = () => {
|
|
if (audioCurrent && currentTrack) {
|
|
setProgress((audioCurrent.currentTime / audioCurrent.duration) * 100);
|
|
|
|
// Save current time every 10 seconds, but only if we've moved forward significantly
|
|
const currentTime = audioCurrent.currentTime;
|
|
if (Math.abs(currentTime - lastSavedTime) >= 10 && currentTime > 10) {
|
|
localStorage.setItem(`navidrome-track-time-${currentTrack.id}`, currentTime.toString());
|
|
lastSavedTime = currentTime;
|
|
}
|
|
}
|
|
};
|
|
|
|
const handleTrackEnd = () => {
|
|
if (currentTrack) {
|
|
// Clear saved time when track ends
|
|
localStorage.removeItem(`navidrome-track-time-${currentTrack.id}`);
|
|
}
|
|
playNextTrack();
|
|
};
|
|
|
|
const handleSeeked = () => {
|
|
if (audioCurrent && currentTrack) {
|
|
// Save immediately when user seeks
|
|
localStorage.setItem(`navidrome-track-time-${currentTrack.id}`, audioCurrent.currentTime.toString());
|
|
lastSavedTime = audioCurrent.currentTime;
|
|
}
|
|
};
|
|
|
|
if (audioCurrent) {
|
|
audioCurrent.addEventListener('timeupdate', updateProgress);
|
|
audioCurrent.addEventListener('ended', handleTrackEnd);
|
|
audioCurrent.addEventListener('seeked', handleSeeked);
|
|
}
|
|
|
|
return () => {
|
|
if (audioCurrent) {
|
|
audioCurrent.removeEventListener('timeupdate', updateProgress);
|
|
audioCurrent.removeEventListener('ended', handleTrackEnd);
|
|
audioCurrent.removeEventListener('seeked', handleSeeked);
|
|
}
|
|
};
|
|
}, [playNextTrack, currentTrack]);
|
|
|
|
const handleProgressClick = (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => {
|
|
if (audioCurrent && currentTrack) {
|
|
const rect = e.currentTarget.getBoundingClientRect();
|
|
const clickX = e.clientX - rect.left;
|
|
const newTime = (clickX / rect.width) * audioCurrent.duration;
|
|
audioCurrent.currentTime = newTime;
|
|
|
|
// Save the new position immediately
|
|
localStorage.setItem(`navidrome-track-time-${currentTrack.id}`, newTime.toString());
|
|
}
|
|
};
|
|
|
|
const togglePlayPause = () => {
|
|
if (audioCurrent) {
|
|
if (isPlaying) {
|
|
audioCurrent.pause();
|
|
} else {
|
|
audioCurrent.play();
|
|
}
|
|
setIsPlaying(!isPlaying);
|
|
}
|
|
};
|
|
const handleVolumeChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const newVolume = parseFloat(e.target.value);
|
|
setVolume(newVolume);
|
|
if (audioCurrent) {
|
|
audioCurrent.volume = newVolume;
|
|
}
|
|
};
|
|
|
|
function formatTime(seconds: number): string {
|
|
if (isNaN(seconds) || seconds < 0) {
|
|
return "0:00";
|
|
}
|
|
const minutes = Math.floor(seconds / 60);
|
|
const secs = Math.floor(seconds % 60).toString().padStart(2, "0");
|
|
return `${minutes}:${secs}`;
|
|
}
|
|
|
|
if (!isClient) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="bg-background w-full text-white border-t border-t-1">
|
|
{currentTrack ? (
|
|
<div className="flex items-center justify-between px-4 py-4">
|
|
{/* Left side - Album art and track info */}
|
|
<div className="flex items-center flex-1 min-w-0">
|
|
<Image
|
|
src={currentTrack.coverArt || '/default-user.jpg'}
|
|
alt={currentTrack.name}
|
|
width={96}
|
|
height={96}
|
|
className="w-12 h-12 mr-3 rounded-md flex-shrink-0"
|
|
/>
|
|
<div className="flex-1 min-w-0">
|
|
<p className="font-semibold truncate">{currentTrack.name}</p>
|
|
<p className='text-sm text-gray-400 truncate'>{currentTrack.artist}</p>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Center - Control buttons and progress bar */}
|
|
<div className="flex flex-col items-center flex-1 max-w-md mx-6">
|
|
{/* Control buttons */}
|
|
<div className="flex items-center space-x-2 mb-2">
|
|
<button className="p-2 hover:bg-gray-700 rounded-full transition-colors" onClick={playPreviousTrack}>
|
|
<FaBackward className="w-4 h-4" />
|
|
</button>
|
|
<button className='p-3 hover:bg-gray-700 rounded-full transition-colors' onClick={togglePlayPause}>
|
|
{isPlaying ? <FaPause className="w-5 h-5" /> : <FaPlay className="w-5 h-5" />}
|
|
</button>
|
|
<button className='p-2 hover:bg-gray-700 rounded-full transition-colors' onClick={playNextTrack}>
|
|
<FaForward className="w-4 h-4" />
|
|
</button>
|
|
</div>
|
|
|
|
{/* Progress bar below buttons - full width of this section */}
|
|
<div className="flex items-center space-x-2 w-full">
|
|
<span className="text-xs text-gray-400 w-10 text-right">
|
|
{formatTime(audioCurrent?.currentTime ?? 0)}
|
|
</span>
|
|
<Progress value={progress} className="flex-1 cursor-pointer" onClick={handleProgressClick}/>
|
|
<span className="text-xs text-gray-400 w-10">
|
|
{formatTime(audioCurrent?.duration ?? 0)}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Right side - Extra space for balance */}
|
|
<div className="flex-1"></div>
|
|
</div>
|
|
) : (
|
|
<div className="p-4">
|
|
<p>No track playing</p>
|
|
</div>
|
|
)}
|
|
<audio ref={audioRef} hidden />
|
|
</div>
|
|
);
|
|
}; |