mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-06 20:51:39 +00:00
145 lines
5.2 KiB
TypeScript
145 lines
5.2 KiB
TypeScript
import { closeAllModals, openModal } from '@mantine/modals';
|
|
import { AutoTextSize } from 'auto-text-size';
|
|
import clsx from 'clsx';
|
|
import { forwardRef, ReactNode, Ref, useCallback, useState } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import styles from './library-header.module.css';
|
|
|
|
import { useGeneralSettings } from '/@/renderer/store';
|
|
import { Center } from '/@/shared/components/center/center';
|
|
import { Image } from '/@/shared/components/image/image';
|
|
import { Text } from '/@/shared/components/text/text';
|
|
import { LibraryItem } from '/@/shared/types/domain-types';
|
|
|
|
interface LibraryHeaderProps {
|
|
background?: string;
|
|
blur?: number;
|
|
children?: ReactNode;
|
|
imagePlaceholderUrl?: null | string;
|
|
imageUrl?: null | string;
|
|
item: { route: string; type: LibraryItem };
|
|
loading?: boolean;
|
|
title: string;
|
|
}
|
|
|
|
export const LibraryHeader = forwardRef(
|
|
(
|
|
{ background, blur, children, imageUrl, item, loading, title }: LibraryHeaderProps,
|
|
ref: Ref<HTMLDivElement>,
|
|
) => {
|
|
const { t } = useTranslation();
|
|
const [isImageError, setIsImageError] = useState<boolean | null>(false);
|
|
const { albumBackground } = useGeneralSettings();
|
|
|
|
const onImageError = () => {
|
|
setIsImageError(true);
|
|
};
|
|
|
|
const itemTypeString = () => {
|
|
switch (item.type) {
|
|
case LibraryItem.ALBUM:
|
|
return t('entity.album', { count: 1 });
|
|
case LibraryItem.ALBUM_ARTIST:
|
|
return t('entity.albumArtist', { count: 1 });
|
|
case LibraryItem.ARTIST:
|
|
return t('entity.artist', { count: 1 });
|
|
case LibraryItem.PLAYLIST:
|
|
return t('entity.playlist', { count: 1 });
|
|
case LibraryItem.SONG:
|
|
return t('entity.track', { count: 1 });
|
|
default:
|
|
return t('common.unknown');
|
|
}
|
|
};
|
|
|
|
const openImage = useCallback(() => {
|
|
if (imageUrl && !isImageError) {
|
|
const fullSized = imageUrl.replace(/&?(size|width|height)=\d+/, '');
|
|
|
|
openModal({
|
|
children: (
|
|
<Center
|
|
onClick={() => closeAllModals()}
|
|
style={{
|
|
cursor: 'pointer',
|
|
height: 'calc(100vh - 80px)',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<img
|
|
alt="cover"
|
|
src={fullSized}
|
|
style={{
|
|
maxHeight: '100%',
|
|
maxWidth: '100%',
|
|
}}
|
|
/>
|
|
</Center>
|
|
),
|
|
fullScreen: true,
|
|
});
|
|
}
|
|
}, [imageUrl, isImageError]);
|
|
|
|
return (
|
|
<div
|
|
className={styles.libraryHeader}
|
|
ref={ref}
|
|
>
|
|
<div
|
|
className={styles.background}
|
|
style={{ background, filter: `blur(${blur ?? 0}rem)` }}
|
|
/>
|
|
<div
|
|
className={clsx(styles.backgroundOverlay, {
|
|
[styles.opaqueOverlay]: albumBackground,
|
|
})}
|
|
/>
|
|
<div
|
|
className={styles.imageSection}
|
|
onClick={() => openImage()}
|
|
onKeyDown={(event) =>
|
|
[' ', 'Enter', 'Spacebar'].includes(event.key) && openImage()
|
|
}
|
|
role="button"
|
|
style={{ cursor: 'pointer' }}
|
|
tabIndex={0}
|
|
>
|
|
{!loading && imageUrl && !isImageError && (
|
|
<Image
|
|
alt="cover"
|
|
className={styles.image}
|
|
onError={onImageError}
|
|
src={imageUrl || ''}
|
|
/>
|
|
)}
|
|
</div>
|
|
{title && (
|
|
<div className={styles.metadataSection}>
|
|
<Text
|
|
component={Link}
|
|
fw={600}
|
|
isLink
|
|
size="md"
|
|
to={item.route}
|
|
tt="uppercase"
|
|
>
|
|
{itemTypeString()}
|
|
</Text>
|
|
<h1 className={styles.title}>
|
|
<AutoTextSize
|
|
maxFontSizePx={80}
|
|
mode="box"
|
|
>
|
|
{title}
|
|
</AutoTextSize>
|
|
</h1>
|
|
{children}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
},
|
|
);
|