feishin/src/renderer/components/virtual-grid/grid-card/grid-card-controls.tsx

181 lines
4.4 KiB
TypeScript
Raw Normal View History

2022-12-19 15:59:14 -08:00
import type { MouseEvent } from 'react';
import React from 'react';
import type { UnstyledButtonProps } from '@mantine/core';
2023-03-09 02:26:09 -08:00
import { RiPlayFill, RiHeartFill, RiHeartLine, RiMoreFill } from 'react-icons/ri';
2022-12-19 15:59:14 -08:00
import styled from 'styled-components';
import { _Button } from '/@/renderer/components/button';
2023-01-05 21:59:07 -08:00
import type { PlayQueueAddOptions } from '/@/renderer/types';
2022-12-19 15:59:14 -08:00
import { Play } from '/@/renderer/types';
import { useSettingsStore } from '/@/renderer/store/settings.store';
2023-01-05 21:59:07 -08:00
import { LibraryItem } from '/@/renderer/api/types';
import { useHandleGeneralContextMenu } from '/@/renderer/features/context-menu/hooks/use-handle-context-menu';
import {
ALBUM_CONTEXT_MENU_ITEMS,
ARTIST_CONTEXT_MENU_ITEMS,
} from '/@/renderer/features/context-menu/context-menu-items';
2022-12-19 15:59:14 -08:00
type PlayButtonType = UnstyledButtonProps & React.ComponentPropsWithoutRef<'button'>;
const PlayButton = styled.button<PlayButtonType>`
2023-03-09 02:26:09 -08:00
position: absolute;
2022-12-19 15:59:14 -08:00
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background-color: rgb(255, 255, 255);
border: none;
border-radius: 50%;
opacity: 0.8;
transition: opacity 0.2s ease-in-out;
2023-03-09 02:26:09 -08:00
transition: scale 0.1s ease-in-out;
2022-12-19 15:59:14 -08:00
&:hover {
opacity: 1;
scale: 1.1;
}
&:active {
opacity: 1;
scale: 1;
}
svg {
fill: rgb(0, 0, 0);
stroke: rgb(0, 0, 0);
}
`;
const SecondaryButton = styled(_Button)`
opacity: 0.8;
transition: opacity 0.2s ease-in-out;
transition: scale 0.2s linear;
&:hover {
opacity: 1;
scale: 1.1;
}
&:active {
opacity: 1;
scale: 1;
}
`;
const GridCardControlsContainer = styled.div`
2023-03-09 02:26:09 -08:00
position: absolute;
z-index: 100;
2022-12-19 15:59:14 -08:00
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
`;
const ControlsRow = styled.div`
width: 100%;
height: calc(100% / 3);
`;
const BottomControls = styled(ControlsRow)`
2023-03-09 02:26:09 -08:00
position: absolute;
bottom: 0;
2022-12-19 15:59:14 -08:00
display: flex;
2023-03-09 02:26:09 -08:00
gap: 0.5rem;
2022-12-19 15:59:14 -08:00
align-items: flex-end;
2023-03-09 02:26:09 -08:00
justify-content: flex-end;
2022-12-19 15:59:14 -08:00
padding: 1rem 0.5rem;
`;
const FavoriteWrapper = styled.span<{ isFavorite: boolean }>`
svg {
fill: ${(props) => props.isFavorite && 'var(--primary-color)'};
}
`;
export const GridCardControls = ({
itemData,
itemType,
2022-12-20 04:11:06 -08:00
handlePlayQueueAdd,
2023-01-08 00:52:53 -08:00
handleFavorite,
2022-12-19 15:59:14 -08:00
}: {
2023-01-08 00:52:53 -08:00
handleFavorite: (options: { id: string[]; isFavorite: boolean; itemType: LibraryItem }) => void;
2022-12-20 04:11:06 -08:00
handlePlayQueueAdd?: (options: PlayQueueAddOptions) => void;
2022-12-19 15:59:14 -08:00
itemData: any;
itemType: LibraryItem;
}) => {
const playButtonBehavior = useSettingsStore((state) => state.player.playButtonBehavior);
2022-12-20 04:11:06 -08:00
const handlePlay = async (e: MouseEvent<HTMLButtonElement>, playType?: Play) => {
2022-12-19 15:59:14 -08:00
e.preventDefault();
e.stopPropagation();
2022-12-20 04:11:06 -08:00
handlePlayQueueAdd?.({
byItemType: {
id: [itemData.id],
2022-12-20 04:11:06 -08:00
type: itemType,
},
play: playType || playButtonBehavior,
2022-12-19 15:59:14 -08:00
});
};
2023-01-08 00:52:53 -08:00
const handleFavorites = async (e: MouseEvent<HTMLButtonElement>) => {
e.preventDefault();
e.stopPropagation();
handleFavorite?.({
id: [itemData.id],
isFavorite: itemData.userFavorite,
itemType,
});
};
const handleContextMenu = useHandleGeneralContextMenu(
itemType,
itemType === LibraryItem.ALBUM ? ALBUM_CONTEXT_MENU_ITEMS : ARTIST_CONTEXT_MENU_ITEMS,
);
2022-12-19 15:59:14 -08:00
return (
2023-03-09 02:26:09 -08:00
<GridCardControlsContainer className="card-controls">
<PlayButton onClick={handlePlay}>
<RiPlayFill size={25} />
</PlayButton>
2022-12-19 15:59:14 -08:00
<BottomControls>
2023-03-09 02:26:09 -08:00
<SecondaryButton
p={5}
sx={{ svg: { fill: 'white !important' } }}
variant="subtle"
onClick={handleFavorites}
>
<FavoriteWrapper isFavorite={itemData?.isFavorite}>
{itemData?.userFavorite ? (
<RiHeartFill size={20} />
) : (
<RiHeartLine
color="white"
size={20}
/>
)}
</FavoriteWrapper>
</SecondaryButton>
<SecondaryButton
p={5}
sx={{ svg: { fill: 'white !important' } }}
variant="subtle"
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
handleContextMenu(e, [itemData]);
}}
>
<RiMoreFill
color="white"
size={20}
/>
</SecondaryButton>
2022-12-19 15:59:14 -08:00
</BottomControls>
</GridCardControlsContainer>
);
};