parent
2d0541c03b
commit
226d94b050
@ -0,0 +1,3 @@
|
|||||||
|
.genres {
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
@ -0,0 +1,53 @@
|
|||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import React from 'react';
|
||||||
|
import { kinds, sizes, tooltipPositions } from 'Helpers/Props';
|
||||||
|
import Tooltip from 'Components/Tooltip/Tooltip';
|
||||||
|
import Label from 'Components/Label';
|
||||||
|
import styles from './SeriesGenres.css';
|
||||||
|
|
||||||
|
function SeriesGenres({ genres }) {
|
||||||
|
const [firstGenre, ...otherGenres] = genres;
|
||||||
|
|
||||||
|
if (otherGenres.length) {
|
||||||
|
return (
|
||||||
|
<Tooltip
|
||||||
|
anchor={
|
||||||
|
<span className={styles.genres}>
|
||||||
|
{firstGenre}
|
||||||
|
</span>
|
||||||
|
}
|
||||||
|
tooltip={
|
||||||
|
<div>
|
||||||
|
{
|
||||||
|
otherGenres.map((tag) => {
|
||||||
|
return (
|
||||||
|
<Label
|
||||||
|
key={tag}
|
||||||
|
kind={kinds.INFO}
|
||||||
|
size={sizes.LARGE}
|
||||||
|
>
|
||||||
|
{tag}
|
||||||
|
</Label>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
kind={kinds.INVERSE}
|
||||||
|
position={tooltipPositions.TOP}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<span className={styles.genres}>
|
||||||
|
{firstGenre}
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
SeriesGenres.propTypes = {
|
||||||
|
genres: PropTypes.arrayOf(PropTypes.string).isRequired
|
||||||
|
};
|
||||||
|
|
||||||
|
export default SeriesGenres;
|
Loading…
Reference in new issue