File size: 4,683 Bytes
f5071ca |
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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
"use client";
import { useEffect, useState } from "react";
import { BsPauseFill, BsPlayFill } from "react-icons/bs";
import { HiSpeakerWave, HiSpeakerXMark } from "react-icons/hi2";
import { AiFillStepBackward, AiFillStepForward } from "react-icons/ai";
import { Song } from "@/types";
import usePlayer from "@/hooks/usePlayer";
import LikeButton from "./LikeButton";
import MediaItem from "./MediaItem";
import Slider from "./Slider";
import useSound from 'use-sound';
interface PlayerContentProps {
song: Song;
songUrl: string;
}
const PlayerContent: React.FC<PlayerContentProps> = ({
song,
songUrl
}) => {
const player = usePlayer();
const [volume, setVolume] = useState(1);
const [isPlaying, setIsPlaying] = useState(false);
const Icon = isPlaying ? BsPauseFill : BsPlayFill;
const VolumeIcon = volume === 0 ? HiSpeakerXMark : HiSpeakerWave;
const onPlayNext = () => {
if (player.ids.length === 0) {
return;
}
const currentIndex = player.ids.findIndex((id) => id === player.activeId);
const nextSong = player.ids[currentIndex + 1];
if (!nextSong) {
return player.setId(player.ids[0]);
}
player.setId(nextSong);
}
const onPlayPrevious = () => {
if (player.ids.length === 0) {
return;
}
const currentIndex = player.ids.findIndex((id) => id === player.activeId);
const previousSong = player.ids[currentIndex - 1];
if (!previousSong) {
return player.setId(player.ids[player.ids.length - 1]);
}
player.setId(previousSong);
}
const [play, { pause, sound }] = useSound(
songUrl,
{
volume: volume,
onplay: () => setIsPlaying(true),
onend: () => {
setIsPlaying(false);
onPlayNext();
},
onpause: () => setIsPlaying(false),
format: ['mp3']
}
);
useEffect(() => {
sound?.play();
return () => {
sound?.unload();
}
}, [sound]);
const handlePlay = () => {
if (!isPlaying) {
play();
} else {
pause();
}
}
const toggleMute = () => {
if (volume === 0) {
setVolume(1);
} else {
setVolume(0);
}
}
return (
<div className="grid grid-cols-2 md:grid-cols-3 h-full">
<div className="flex w-full justify-start">
<div className="flex items-center gap-x-4">
<MediaItem data={song} />
<LikeButton songId={song.id} />
</div>
</div>
<div
className="
flex
md:hidden
col-auto
w-full
justify-end
items-center
"
>
<div
onClick={handlePlay}
className="
h-10
w-10
flex
items-center
justify-center
rounded-full
bg-white
p-1
cursor-pointer
"
>
<Icon size={30} className="text-black" />
</div>
</div>
<div
className="
hidden
h-full
md:flex
justify-center
items-center
w-full
max-w-[722px]
gap-x-6
"
>
<AiFillStepBackward
onClick={onPlayPrevious}
size={30}
className="
text-neutral-400
cursor-pointer
hover:text-white
transition
"
/>
<div
onClick={handlePlay}
className="
flex
items-center
justify-center
h-10
w-10
rounded-full
bg-white
p-1
cursor-pointer
"
>
<Icon size={30} className="text-black" />
</div>
<AiFillStepForward
onClick={onPlayNext}
size={30}
className="
text-neutral-400
cursor-pointer
hover:text-white
transition
"
/>
</div>
<div className="hidden md:flex w-full justify-end pr-2">
<div className="flex items-center gap-x-2 w-[120px]">
<VolumeIcon
onClick={toggleMute}
className="cursor-pointer"
size={34}
/>
<Slider
value={volume}
onChange={(value) => setVolume(value)}
/>
</div>
</div>
</div>
);
}
export default PlayerContent; |