mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Convert mediainfo PrimaryMediaInfo to react
This commit is contained in:
parent
2e90f669e5
commit
c3b5d50313
8 changed files with 766 additions and 0 deletions
29
src/components/mediainfo/StarIcons.tsx
Normal file
29
src/components/mediainfo/StarIcons.tsx
Normal file
|
@ -0,0 +1,29 @@
|
|||
import React, { FC } from 'react';
|
||||
import classNames from 'classnames';
|
||||
import StarIcon from '@mui/icons-material/Star';
|
||||
import Box from '@mui/material/Box';
|
||||
|
||||
interface StarIconsProps {
|
||||
className?: string;
|
||||
communityRating: number;
|
||||
}
|
||||
|
||||
const StarIcons: FC<StarIconsProps> = ({ className, communityRating }) => {
|
||||
const cssClass = classNames(
|
||||
'mediaInfoItem',
|
||||
'mediaInfoText',
|
||||
'starRatingContainer',
|
||||
className
|
||||
);
|
||||
|
||||
return (
|
||||
<Box className={cssClass}>
|
||||
<StarIcon fontSize={'small'} sx={{
|
||||
color: '#f2b01e'
|
||||
}} />
|
||||
{communityRating.toFixed(1)}
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
|
||||
export default StarIcons;
|
Loading…
Add table
Add a link
Reference in a new issue