Skip to content

Commit

Permalink
2.7.1 (#52)
Browse files Browse the repository at this point in the history
fix stuffs
  • Loading branch information
yowmamasita authored Aug 29, 2023
1 parent b2b68a1 commit 621ea68
Show file tree
Hide file tree
Showing 8 changed files with 773 additions and 185 deletions.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const nextConfig = {
protocol: 'https',
hostname: 'image.tmdb.org',
port: '',
pathname: '/t/p/w200/**',
pathname: '/**',
},
{
protocol: 'https',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "debrid-media-manager",
"version": "2.7.0",
"version": "2.7.1",
"private": false,
"scripts": {
"dev": "next dev",
Expand Down
44 changes: 29 additions & 15 deletions src/components/poster.tsx
Original file line number Diff line number Diff line change
@@ -1,38 +1,52 @@
import React, { useState, useEffect } from 'react';
import React, { useState, useEffect, useRef } from 'react';
import axios from 'axios';
import Image from 'next/image';
import { getTmdbKey } from '@/utils/freekeys';

const TMDBPoster = ({ imdbId }: Record<string, string>) => {
const Poster = ({ imdbId }: Record<string, string>) => {
const [posterUrl, setPosterUrl] = useState('');
const [imgLoaded, setImgLoaded] = useState(false);
const imgRef = useRef<HTMLDivElement | null>(null);

useEffect(() => {
const fetchData = async () => {
const response = await axios.get(`https://api.themoviedb.org/3/find/${imdbId}?api_key=${getTmdbKey()}&external_source=imdb_id`);
const baseUrl = 'https://image.tmdb.org/t/p/w200';
if (response.data.movie_results.length > 0 && response.data.movie_results[0].poster_path) {
setPosterUrl(baseUrl + response.data.movie_results[0].poster_path);
} if (response.data.tv_results.length > 0 && response.data.tv_results[0].poster_path) {
setPosterUrl(baseUrl + response.data.tv_results[0].poster_path);
} else {
// If no poster_path, set a placeholder image URL
setPosterUrl(`https://picsum.photos/seed/${imdbId}/200/300`);
}
const posterPath = response.data.movie_results[0]?.poster_path || response.data.tv_results[0]?.poster_path;
if (!posterPath) setPosterUrl(`https://picsum.photos/seed/${imdbId}/200/300`);
else setPosterUrl(`${baseUrl}${posterPath}`);
};

const imgObserver = new IntersectionObserver((entries, observer) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
fetchData();
setImgLoaded(true);
observer.disconnect();
}
});
});

try {
if (imdbId) fetchData();
else setPosterUrl(`https://picsum.photos/seed/${imdbId}/200/300`);
if (imdbId && imgRef.current) {
imgObserver.observe(imgRef.current);
} else {
setPosterUrl(`https://picsum.photos/seed/${imdbId}/200/300`);
}
} catch (error: any) {
setPosterUrl(`https://picsum.photos/seed/${imdbId}/200/300`);
}

return () => {
imgObserver.disconnect();
};
}, [imdbId]);

return (
<div>
{posterUrl && <Image width={200} height={300} src={posterUrl} alt="Movie poster" />}
<div ref={imgRef}>
{imgLoaded && posterUrl && <Image width={200} height={300} src={posterUrl} alt="Movie poster" />}
</div>
);
};

export default TMDBPoster;
export default Poster;
2 changes: 1 addition & 1 deletion src/pages/api/moviesearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const handler: NextApiHandler = async (req, res) => {
return;
}

res.status(204).json({ results: [] });
res.status(204).json(null);
} catch (error: any) {
console.error('encountered a db issue', error);
res.status(500).json({ errorMessage: error.message });
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/tvsearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const handler: NextApiHandler = async (req, res) => {
return;
}

res.status(204).json({ results: [] });
res.status(204).json(null);
} catch (error: any) {
console.error('encountered a db issue', error);
res.status(500).json({ errorMessage: error.message });
Expand Down
Loading

0 comments on commit 621ea68

Please sign in to comment.