mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
24 lines
659 B
TypeScript
24 lines
659 B
TypeScript
![]() |
import React, { FC } from 'react';
|
||
|
import Box from '@mui/material/Box';
|
||
|
import escapeHTML from 'escape-html';
|
||
|
import itemHelper from 'components/itemHelper';
|
||
|
import { isUsingLiveTvNaming } from '../cardbuilder/cardBuilderUtils';
|
||
|
import type { ItemDto } from 'types/itemDto';
|
||
|
|
||
|
interface DefaultNameProps {
|
||
|
item: ItemDto;
|
||
|
}
|
||
|
|
||
|
const DefaultName: FC<DefaultNameProps> = ({ item }) => {
|
||
|
const defaultName = isUsingLiveTvNaming(item.Type) ?
|
||
|
item.Name :
|
||
|
itemHelper.getDisplayName(item);
|
||
|
return (
|
||
|
<Box className='cardText cardDefaultText'>
|
||
|
{escapeHTML(defaultName)}
|
||
|
</Box>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default DefaultName;
|