325 lines
12 KiB
TypeScript
325 lines
12 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { useHotkeys } from '@mantine/hooks';
|
|
import { useQueryClient } from '@tanstack/react-query';
|
|
import formatDuration from 'format-duration';
|
|
import isElectron from 'is-electron';
|
|
import { IoIosPause } from 'react-icons/io';
|
|
import {
|
|
RiMenuAddFill,
|
|
RiPlayFill,
|
|
RiRepeat2Line,
|
|
RiRepeatOneLine,
|
|
RiRewindFill,
|
|
RiShuffleFill,
|
|
RiSkipBackFill,
|
|
RiSkipForwardFill,
|
|
RiSpeedFill,
|
|
RiStopFill,
|
|
} from 'react-icons/ri';
|
|
import styled from 'styled-components';
|
|
import { Text } from '/@/renderer/components';
|
|
import { useCenterControls } from '../hooks/use-center-controls';
|
|
import { PlayerButton } from './player-button';
|
|
import {
|
|
useCurrentSong,
|
|
useCurrentStatus,
|
|
useCurrentPlayer,
|
|
useSetCurrentTime,
|
|
useRepeatStatus,
|
|
useShuffleStatus,
|
|
useCurrentTime,
|
|
} from '/@/renderer/store';
|
|
import {
|
|
useHotkeySettings,
|
|
usePlayerType,
|
|
useSettingsStore,
|
|
} from '/@/renderer/store/settings.store';
|
|
import { PlayerStatus, PlaybackType, PlayerShuffle, PlayerRepeat } from '/@/renderer/types';
|
|
import { PlayerbarSlider } from '/@/renderer/features/player/components/playerbar-slider';
|
|
import { openShuffleAllModal } from './shuffle-all-modal';
|
|
import { usePlayQueueAdd } from '/@/renderer/features/player/hooks/use-playqueue-add';
|
|
|
|
interface CenterControlsProps {
|
|
playersRef: any;
|
|
}
|
|
|
|
const ButtonsContainer = styled.div`
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
`;
|
|
|
|
const SliderContainer = styled.div`
|
|
display: flex;
|
|
width: 95%;
|
|
height: 20px;
|
|
`;
|
|
|
|
const SliderValueWrapper = styled.div<{ position: 'left' | 'right' }>`
|
|
display: flex;
|
|
flex: 1;
|
|
align-self: center;
|
|
justify-content: center;
|
|
max-width: 50px;
|
|
|
|
@media (max-width: 768px) {
|
|
display: none;
|
|
}
|
|
`;
|
|
|
|
const SliderWrapper = styled.div`
|
|
display: flex;
|
|
flex: 6;
|
|
align-items: center;
|
|
height: 100%;
|
|
`;
|
|
|
|
const ControlsContainer = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 35px;
|
|
|
|
@media (max-width: 768px) {
|
|
${ButtonsContainer} {
|
|
gap: 0;
|
|
}
|
|
|
|
${SliderValueWrapper} {
|
|
display: none;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const CenterControls = ({ playersRef }: CenterControlsProps) => {
|
|
const queryClient = useQueryClient();
|
|
const [isSeeking, setIsSeeking] = useState(false);
|
|
const currentSong = useCurrentSong();
|
|
const songDuration = currentSong?.duration;
|
|
const skip = useSettingsStore((state) => state.general.skipButtons);
|
|
const playerType = usePlayerType();
|
|
const player1 = playersRef?.current?.player1;
|
|
const player2 = playersRef?.current?.player2;
|
|
const status = useCurrentStatus();
|
|
const player = useCurrentPlayer();
|
|
const setCurrentTime = useSetCurrentTime();
|
|
const repeat = useRepeatStatus();
|
|
const shuffle = useShuffleStatus();
|
|
const { bindings } = useHotkeySettings();
|
|
|
|
const {
|
|
handleNextTrack,
|
|
handlePlayPause,
|
|
handlePrevTrack,
|
|
handleSeekSlider,
|
|
handleSkipBackward,
|
|
handleSkipForward,
|
|
handleToggleRepeat,
|
|
handleToggleShuffle,
|
|
handleStop,
|
|
handlePause,
|
|
handlePlay,
|
|
} = useCenterControls({ playersRef });
|
|
const handlePlayQueueAdd = usePlayQueueAdd();
|
|
|
|
const currentTime = useCurrentTime();
|
|
const currentPlayerRef = player === 1 ? player1 : player2;
|
|
const duration = formatDuration(songDuration || 0);
|
|
const formattedTime = formatDuration(currentTime * 1000 || 0);
|
|
|
|
useEffect(() => {
|
|
let interval: any;
|
|
|
|
if (status === PlayerStatus.PLAYING && !isSeeking) {
|
|
if (!isElectron() || playerType === PlaybackType.WEB) {
|
|
interval = setInterval(() => {
|
|
setCurrentTime(currentPlayerRef.getCurrentTime());
|
|
}, 1000);
|
|
}
|
|
} else {
|
|
clearInterval(interval);
|
|
}
|
|
|
|
return () => clearInterval(interval);
|
|
}, [currentPlayerRef, isSeeking, setCurrentTime, playerType, status]);
|
|
|
|
const [seekValue, setSeekValue] = useState(0);
|
|
|
|
useHotkeys([
|
|
[bindings.playPause.isGlobal ? '' : bindings.playPause.hotkey, handlePlayPause],
|
|
[bindings.play.isGlobal ? '' : bindings.play.hotkey, handlePlay],
|
|
[bindings.pause.isGlobal ? '' : bindings.pause.hotkey, handlePause],
|
|
[bindings.stop.isGlobal ? '' : bindings.stop.hotkey, handleStop],
|
|
[bindings.next.isGlobal ? '' : bindings.next.hotkey, handleNextTrack],
|
|
[bindings.previous.isGlobal ? '' : bindings.previous.hotkey, handlePrevTrack],
|
|
[bindings.toggleRepeat.isGlobal ? '' : bindings.toggleRepeat.hotkey, handleToggleRepeat],
|
|
[bindings.toggleShuffle.isGlobal ? '' : bindings.toggleShuffle.hotkey, handleToggleShuffle],
|
|
[
|
|
bindings.skipBackward.isGlobal ? '' : bindings.skipBackward.hotkey,
|
|
() => handleSkipBackward(skip?.skipBackwardSeconds || 5),
|
|
],
|
|
[
|
|
bindings.skipForward.isGlobal ? '' : bindings.skipForward.hotkey,
|
|
() => handleSkipForward(skip?.skipForwardSeconds || 5),
|
|
],
|
|
]);
|
|
|
|
return (
|
|
<>
|
|
<ControlsContainer>
|
|
<ButtonsContainer>
|
|
<PlayerButton
|
|
icon={<RiStopFill size={15} />}
|
|
tooltip={{
|
|
label: 'Stop',
|
|
openDelay: 500,
|
|
}}
|
|
variant="tertiary"
|
|
onClick={handleStop}
|
|
/>
|
|
<PlayerButton
|
|
$isActive={shuffle !== PlayerShuffle.NONE}
|
|
icon={<RiShuffleFill size={15} />}
|
|
tooltip={{
|
|
label:
|
|
shuffle === PlayerShuffle.NONE
|
|
? 'Shuffle disabled'
|
|
: shuffle === PlayerShuffle.TRACK
|
|
? 'Shuffle tracks'
|
|
: 'Shuffle albums',
|
|
openDelay: 500,
|
|
}}
|
|
variant="tertiary"
|
|
onClick={handleToggleShuffle}
|
|
/>
|
|
<PlayerButton
|
|
icon={<RiSkipBackFill size={15} />}
|
|
tooltip={{ label: 'Previous track', openDelay: 500 }}
|
|
variant="secondary"
|
|
onClick={handlePrevTrack}
|
|
/>
|
|
{skip?.enabled && (
|
|
<PlayerButton
|
|
icon={<RiRewindFill size={15} />}
|
|
tooltip={{
|
|
label: `Skip backwards ${skip?.skipBackwardSeconds} seconds`,
|
|
openDelay: 500,
|
|
}}
|
|
variant="secondary"
|
|
onClick={() => handleSkipBackward(skip?.skipBackwardSeconds)}
|
|
/>
|
|
)}
|
|
<PlayerButton
|
|
icon={
|
|
status === PlayerStatus.PAUSED ? (
|
|
<RiPlayFill size={20} />
|
|
) : (
|
|
<IoIosPause size={20} />
|
|
)
|
|
}
|
|
tooltip={{
|
|
label: status === PlayerStatus.PAUSED ? 'Play' : 'Pause',
|
|
openDelay: 500,
|
|
}}
|
|
variant="main"
|
|
onClick={handlePlayPause}
|
|
/>
|
|
{skip?.enabled && (
|
|
<PlayerButton
|
|
icon={<RiSpeedFill size={15} />}
|
|
tooltip={{
|
|
label: `Skip forwards ${skip?.skipForwardSeconds} seconds`,
|
|
openDelay: 500,
|
|
}}
|
|
variant="secondary"
|
|
onClick={() => handleSkipForward(skip?.skipForwardSeconds)}
|
|
/>
|
|
)}
|
|
<PlayerButton
|
|
icon={<RiSkipForwardFill size={15} />}
|
|
tooltip={{ label: 'Next track', openDelay: 500 }}
|
|
variant="secondary"
|
|
onClick={handleNextTrack}
|
|
/>
|
|
<PlayerButton
|
|
$isActive={repeat !== PlayerRepeat.NONE}
|
|
icon={
|
|
repeat === PlayerRepeat.ONE ? (
|
|
<RiRepeatOneLine size={15} />
|
|
) : (
|
|
<RiRepeat2Line size={15} />
|
|
)
|
|
}
|
|
tooltip={{
|
|
label: `${
|
|
repeat === PlayerRepeat.NONE
|
|
? 'Repeat disabled'
|
|
: repeat === PlayerRepeat.ALL
|
|
? 'Repeat all'
|
|
: 'Repeat one'
|
|
}`,
|
|
openDelay: 500,
|
|
}}
|
|
variant="tertiary"
|
|
onClick={handleToggleRepeat}
|
|
/>
|
|
|
|
<PlayerButton
|
|
icon={<RiMenuAddFill size={15} />}
|
|
tooltip={{
|
|
label: 'Shuffle all',
|
|
openDelay: 500,
|
|
}}
|
|
variant="tertiary"
|
|
onClick={() =>
|
|
openShuffleAllModal({
|
|
handlePlayQueueAdd,
|
|
queryClient,
|
|
})
|
|
}
|
|
/>
|
|
</ButtonsContainer>
|
|
</ControlsContainer>
|
|
<SliderContainer>
|
|
<SliderValueWrapper position="left">
|
|
<Text
|
|
$noSelect
|
|
$secondary
|
|
size="xs"
|
|
weight={600}
|
|
>
|
|
{formattedTime}
|
|
</Text>
|
|
</SliderValueWrapper>
|
|
<SliderWrapper>
|
|
<PlayerbarSlider
|
|
label={(value) => formatDuration(value * 1000)}
|
|
max={songDuration}
|
|
min={0}
|
|
size={6}
|
|
value={!isSeeking ? currentTime : seekValue}
|
|
w="100%"
|
|
onChange={(e) => {
|
|
setIsSeeking(true);
|
|
setSeekValue(e);
|
|
}}
|
|
onChangeEnd={(e) => {
|
|
handleSeekSlider(e);
|
|
setIsSeeking(false);
|
|
}}
|
|
/>
|
|
</SliderWrapper>
|
|
<SliderValueWrapper position="right">
|
|
<Text
|
|
$noSelect
|
|
$secondary
|
|
size="xs"
|
|
weight={600}
|
|
>
|
|
{duration}
|
|
</Text>
|
|
</SliderValueWrapper>
|
|
</SliderContainer>
|
|
</>
|
|
);
|
|
};
|