mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import { BaseItemKind } from '@jellyfin/sdk/lib/generated-client';
|
|
import React, { FC } from 'react';
|
|
import Icon from '@mui/material/Icon';
|
|
import imageHelper from 'utils/image';
|
|
import DefaultName from './DefaultName';
|
|
import type { ItemDto } from 'types/itemDto';
|
|
|
|
interface DefaultIconTextProps {
|
|
item: ItemDto;
|
|
defaultCardImageIcon?: string;
|
|
}
|
|
|
|
const DefaultIconText: FC<DefaultIconTextProps> = ({
|
|
item,
|
|
defaultCardImageIcon
|
|
}) => {
|
|
if (item.CollectionType) {
|
|
return (
|
|
<Icon
|
|
className='cardImageIcon'
|
|
sx={{ color: 'inherit', fontSize: '5em' }}
|
|
aria-hidden='true'
|
|
>
|
|
{imageHelper.getLibraryIcon(item.CollectionType)}
|
|
</Icon>
|
|
);
|
|
}
|
|
|
|
if (item.Type && !(item.Type === BaseItemKind.TvChannel || item.Type === BaseItemKind.Studio )) {
|
|
return (
|
|
<Icon
|
|
className='cardImageIcon'
|
|
sx={{ color: 'inherit', fontSize: '5em' }}
|
|
aria-hidden='true'
|
|
>
|
|
{imageHelper.getItemTypeIcon(item.Type)}
|
|
</Icon>
|
|
);
|
|
}
|
|
|
|
if (defaultCardImageIcon) {
|
|
return (
|
|
<Icon
|
|
className='cardImageIcon'
|
|
sx={{ color: 'inherit', fontSize: '5em' }}
|
|
aria-hidden='true'
|
|
>
|
|
{defaultCardImageIcon}
|
|
</Icon>
|
|
);
|
|
}
|
|
|
|
return <DefaultName item={item} />;
|
|
};
|
|
|
|
export default DefaultIconText;
|