Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 38 additions & 2 deletions src/common/MetaItem/MetaItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,32 @@ const Multiselect = require('stremio/common/Multiselect');
const useBinaryState = require('stremio/common/useBinaryState');
const { ICON_FOR_TYPE } = require('stremio/common/CONSTANTS');
const styles = require('./styles');
const UrlUtils = require('url');
const CONSTANTS = require('stremio/common/CONSTANTS');

const MetaItem = React.memo(({ className, type, name, poster, posterShape, posterChangeCursor, progress, newVideos, options, deepLinks, dataset, optionOnSelect, onDismissClick, onPlayClick, watched, ...props }) => {
const MetaItem = React.memo(({ className, type, name, poster, posterShape, posterChangeCursor, progress, newVideos, options, deepLinks, dataset, optionOnSelect, onDismissClick, onPlayClick, watched, links, ...props }) => {
const { t } = useTranslation();
const [menuOpen, onMenuOpen, onMenuClose] = useBinaryState(false);
const imdbLink = React.useMemo(() => {
if (!Array.isArray(links)) {
return null;
}

const imdbLink = links.find((link) => {
if (!link || typeof link.category !== 'string' || typeof link.url !== 'string') {
return false;
}

const { hostname } = UrlUtils.parse(link.url);
return link.category === CONSTANTS.IMDB_LINK_CATEGORY && hostname === 'imdb.com';
});

return imdbLink ? {
label: imdbLink.name,
href: `https://www.stremio.com/warning#${encodeURIComponent(imdbLink.url)}`
} : null;
}, [links]);

const href = React.useMemo(() => {
return deepLinks ?
typeof deepLinks.player === 'string' ?
Expand Down Expand Up @@ -130,6 +152,15 @@ const MetaItem = React.memo(({ className, type, name, poster, posterShape, poste
<div className={styles['title-label']}>
{typeof name === 'string' && name.length > 0 ? name : ''}
</div>
{
imdbLink ?
<div className={styles['imdb-button-container']}>
<Icon className={styles['icon']} name={'imdb'} />
<div className={styles['label']}>{imdbLink.label}</div>
</div>
:
null
}
{
Array.isArray(options) && options.length > 0 ?
<Multiselect
Expand Down Expand Up @@ -175,7 +206,12 @@ MetaItem.propTypes = {
onDismissClick: PropTypes.func,
onPlayClick: PropTypes.func,
onClick: PropTypes.func,
watched: PropTypes.bool
watched: PropTypes.bool,
links: PropTypes.arrayOf(PropTypes.shape({
category: PropTypes.string,
name: PropTypes.string,
url: PropTypes.string
}))
};

module.exports = MetaItem;
29 changes: 29 additions & 0 deletions src/common/MetaItem/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,31 @@
}
}
}

.imdb-button-container {
flex: 0 1 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 2.5rem;
margin-left: 1rem;

.label {
flex: auto;
// margin-right: 1rem;
font-size: 0.8rem;
font-weight: 500;
color: var(--primary-foreground-color);
}

.icon {
flex: auto;
width: 2rem;
height: 2rem;
color: var(--color-imdb);
}
}
}

@media only screen and (max-width: @minimum) {
Expand All @@ -384,5 +409,9 @@
.title-bar-container {
margin-top: 0.5rem;
}

.imdb-button-container {
display: none;
}
}
}