mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
82 lines
2.3 KiB
TypeScript
82 lines
2.3 KiB
TypeScript
|
|
import { Group } from '@mantine/core';
|
||
|
|
import { HiOutlineQueueList } from 'react-icons/hi2';
|
||
|
|
import { RiVolumeUpFill, RiVolumeDownFill, RiVolumeMuteFill } from 'react-icons/ri';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
import { useAppStoreActions, useMuted, useSidebarStore, useVolume } from '/@/renderer/store';
|
||
|
|
import { useRightControls } from '../hooks/use-right-controls';
|
||
|
|
import { PlayerButton } from './player-button';
|
||
|
|
import { Slider } from './slider';
|
||
|
|
|
||
|
|
const RightControlsContainer = styled.div`
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
justify-content: flex-end;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
padding-right: 1rem;
|
||
|
|
`;
|
||
|
|
|
||
|
|
const VolumeSliderWrapper = styled.div`
|
||
|
|
display: flex;
|
||
|
|
gap: 0.3rem;
|
||
|
|
align-items: center;
|
||
|
|
width: 90px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
const MetadataStack = styled.div`
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 0.3rem;
|
||
|
|
align-items: flex-end;
|
||
|
|
justify-content: center;
|
||
|
|
overflow: visible;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const RightControls = () => {
|
||
|
|
const volume = useVolume();
|
||
|
|
const muted = useMuted();
|
||
|
|
const { setSidebar } = useAppStoreActions();
|
||
|
|
const { rightExpanded: isQueueExpanded } = useSidebarStore();
|
||
|
|
const { handleVolumeSlider, handleVolumeSliderState, handleMute } = useRightControls();
|
||
|
|
|
||
|
|
return (
|
||
|
|
<RightControlsContainer>
|
||
|
|
<Group>
|
||
|
|
<PlayerButton
|
||
|
|
icon={<HiOutlineQueueList />}
|
||
|
|
tooltip={{ label: 'View queue', openDelay: 500 }}
|
||
|
|
variant="secondary"
|
||
|
|
onClick={() => setSidebar({ rightExpanded: !isQueueExpanded })}
|
||
|
|
/>
|
||
|
|
</Group>
|
||
|
|
<MetadataStack>
|
||
|
|
<VolumeSliderWrapper>
|
||
|
|
<PlayerButton
|
||
|
|
icon={
|
||
|
|
muted ? (
|
||
|
|
<RiVolumeMuteFill size={15} />
|
||
|
|
) : volume > 50 ? (
|
||
|
|
<RiVolumeUpFill size={15} />
|
||
|
|
) : (
|
||
|
|
<RiVolumeDownFill size={15} />
|
||
|
|
)
|
||
|
|
}
|
||
|
|
tooltip={{ label: muted ? 'Muted' : volume, openDelay: 500 }}
|
||
|
|
variant="secondary"
|
||
|
|
onClick={handleMute}
|
||
|
|
/>
|
||
|
|
<Slider
|
||
|
|
hasTooltip
|
||
|
|
height="60%"
|
||
|
|
max={100}
|
||
|
|
min={0}
|
||
|
|
value={volume}
|
||
|
|
onAfterChange={handleVolumeSliderState}
|
||
|
|
onChange={handleVolumeSlider}
|
||
|
|
/>
|
||
|
|
</VolumeSliderWrapper>
|
||
|
|
</MetadataStack>
|
||
|
|
</RightControlsContainer>
|
||
|
|
);
|
||
|
|
};
|