mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 10:03:33 +00:00
182 lines
6 KiB
TypeScript
182 lines
6 KiB
TypeScript
import type { ICellRendererParams } from '@ag-grid-community/core';
|
|
|
|
import { Center } from '@mantine/core';
|
|
import { motion } from 'framer-motion';
|
|
import React, { useMemo } from 'react';
|
|
import { RiAlbumFill } from 'react-icons/ri';
|
|
import { generatePath } from 'react-router';
|
|
import { Link } from 'react-router-dom';
|
|
import { SimpleImg } from 'react-simple-img';
|
|
import styled from 'styled-components';
|
|
|
|
import { Skeleton } from '/@/renderer/components/skeleton';
|
|
import { Text } from '/@/renderer/components/text';
|
|
import { ListCoverControls } from '/@/renderer/components/virtual-table/cells/combined-title-cell-controls';
|
|
import { AppRoute } from '/@/renderer/router/routes';
|
|
import { SEPARATOR_STRING } from '/@/shared/api/utils';
|
|
import { AlbumArtist, Artist } from '/@/shared/types/domain-types';
|
|
|
|
const CellContainer = styled(motion.div)<{ height: number }>`
|
|
display: grid;
|
|
grid-template-areas: 'image info';
|
|
grid-template-rows: 1fr;
|
|
grid-template-columns: ${(props) => props.height}px minmax(0, 1fr);
|
|
grid-auto-columns: 1fr;
|
|
gap: 0.5rem;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 100%;
|
|
letter-spacing: 0.5px;
|
|
|
|
.card-controls {
|
|
opacity: 0;
|
|
}
|
|
|
|
&:hover {
|
|
.card-controls {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
`;
|
|
|
|
const ImageWrapper = styled.div`
|
|
position: relative;
|
|
display: flex;
|
|
grid-area: image;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
`;
|
|
|
|
const MetadataWrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-area: info;
|
|
justify-content: center;
|
|
width: 100%;
|
|
`;
|
|
|
|
const StyledImage = styled(SimpleImg)`
|
|
img {
|
|
object-fit: var(--image-fit);
|
|
}
|
|
`;
|
|
|
|
export const CombinedTitleCell = ({
|
|
context,
|
|
data,
|
|
node,
|
|
rowIndex,
|
|
value,
|
|
}: ICellRendererParams) => {
|
|
const artists = useMemo(() => {
|
|
if (!value) return null;
|
|
return value.artists?.length ? value.artists : value.albumArtists;
|
|
}, [value]);
|
|
|
|
if (value === undefined) {
|
|
return (
|
|
<CellContainer height={node.rowHeight || 40}>
|
|
<Skeleton>
|
|
<ImageWrapper />
|
|
</Skeleton>
|
|
<MetadataWrapper>
|
|
<Skeleton
|
|
height="1rem"
|
|
width="80%"
|
|
/>
|
|
<Skeleton
|
|
height="1rem"
|
|
mt="0.5rem"
|
|
width="60%"
|
|
/>
|
|
</MetadataWrapper>
|
|
</CellContainer>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<CellContainer height={node.rowHeight || 40}>
|
|
<ImageWrapper>
|
|
{value.imageUrl ? (
|
|
<StyledImage
|
|
alt="cover"
|
|
height={(node.rowHeight || 40) - 10}
|
|
placeholder={value.imagePlaceholderUrl || 'var(--placeholder-bg)'}
|
|
src={value.imageUrl}
|
|
style={{}}
|
|
width={(node.rowHeight || 40) - 10}
|
|
/>
|
|
) : (
|
|
<Center
|
|
sx={{
|
|
background: 'var(--placeholder-bg)',
|
|
borderRadius: 'var(--card-default-radius)',
|
|
height: `${(node.rowHeight || 40) - 10}px`,
|
|
width: `${(node.rowHeight || 40) - 10}px`,
|
|
}}
|
|
>
|
|
<RiAlbumFill
|
|
color="var(--placeholder-fg)"
|
|
size={35}
|
|
/>
|
|
</Center>
|
|
)}
|
|
<ListCoverControls
|
|
context={context}
|
|
itemData={value}
|
|
itemType={context.itemType}
|
|
uniqueId={data?.uniqueId}
|
|
/>
|
|
</ImageWrapper>
|
|
<MetadataWrapper>
|
|
<Text
|
|
className="current-song-child"
|
|
overflow="hidden"
|
|
size="md"
|
|
>
|
|
{value.name}
|
|
</Text>
|
|
<Text
|
|
$secondary
|
|
overflow="hidden"
|
|
size="md"
|
|
>
|
|
{artists?.length ? (
|
|
artists.map((artist: AlbumArtist | Artist, index: number) => (
|
|
<React.Fragment key={`queue-${rowIndex}-artist-${artist.id}`}>
|
|
{index > 0 ? SEPARATOR_STRING : null}
|
|
{artist.id ? (
|
|
<Text
|
|
$link
|
|
$secondary
|
|
component={Link}
|
|
overflow="hidden"
|
|
size="md"
|
|
sx={{ width: 'fit-content' }}
|
|
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
|
|
albumArtistId: artist.id,
|
|
})}
|
|
>
|
|
{artist.name}
|
|
</Text>
|
|
) : (
|
|
<Text
|
|
$secondary
|
|
overflow="hidden"
|
|
size="md"
|
|
sx={{ width: 'fit-content' }}
|
|
>
|
|
{artist.name}
|
|
</Text>
|
|
)}
|
|
</React.Fragment>
|
|
))
|
|
) : (
|
|
<Text $secondary>—</Text>
|
|
)}
|
|
</Text>
|
|
</MetadataWrapper>
|
|
</CellContainer>
|
|
);
|
|
};
|