You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.5 KiB
98 lines
2.5 KiB
import ImdbLogo from '@app/assets/services/imdb.svg';
|
|
import PlexLogo from '@app/assets/services/plex.svg';
|
|
import RTLogo from '@app/assets/services/rt.svg';
|
|
import TmdbLogo from '@app/assets/services/tmdb.svg';
|
|
import TraktLogo from '@app/assets/services/trakt.svg';
|
|
import TvdbLogo from '@app/assets/services/tvdb.svg';
|
|
import useLocale from '@app/hooks/useLocale';
|
|
import { MediaType } from '@server/constants/media';
|
|
|
|
interface ExternalLinkBlockProps {
|
|
mediaType: 'movie' | 'tv';
|
|
tmdbId?: number;
|
|
tvdbId?: number;
|
|
imdbId?: string;
|
|
rtUrl?: string;
|
|
plexUrl?: string;
|
|
}
|
|
|
|
const ExternalLinkBlock = ({
|
|
mediaType,
|
|
tmdbId,
|
|
tvdbId,
|
|
imdbId,
|
|
rtUrl,
|
|
plexUrl,
|
|
}: ExternalLinkBlockProps) => {
|
|
const { locale } = useLocale();
|
|
|
|
return (
|
|
<div className="flex w-full items-center justify-center space-x-5">
|
|
{plexUrl && (
|
|
<a
|
|
href={plexUrl}
|
|
className="w-12 opacity-50 transition duration-300 hover:opacity-100"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<PlexLogo />
|
|
</a>
|
|
)}
|
|
{tmdbId && (
|
|
<a
|
|
href={`https://www.themoviedb.org/${mediaType}/${tmdbId}?language=${locale}`}
|
|
className="w-8 opacity-50 transition duration-300 hover:opacity-100"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<TmdbLogo />
|
|
</a>
|
|
)}
|
|
{tvdbId && mediaType === MediaType.TV && (
|
|
<a
|
|
href={`http://www.thetvdb.com/?tab=series&id=${tvdbId}`}
|
|
className="w-9 opacity-50 transition duration-300 hover:opacity-100"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<TvdbLogo />
|
|
</a>
|
|
)}
|
|
{imdbId && (
|
|
<a
|
|
href={`https://www.imdb.com/title/${imdbId}`}
|
|
className="w-8 opacity-50 transition duration-300 hover:opacity-100"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<ImdbLogo />
|
|
</a>
|
|
)}
|
|
{rtUrl && (
|
|
<a
|
|
href={rtUrl}
|
|
className="w-14 opacity-50 transition duration-300 hover:opacity-100"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<RTLogo />
|
|
</a>
|
|
)}
|
|
{tmdbId && (
|
|
<a
|
|
href={`https://trakt.tv/search/tmdb/${tmdbId}?id_type=${
|
|
mediaType === 'movie' ? 'movie' : 'show'
|
|
}`}
|
|
className="w-8 opacity-50 transition duration-300 hover:opacity-100"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
<TraktLogo />
|
|
</a>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ExternalLinkBlock;
|