|
import React from "react"; |
|
import { useEffect, useState } from "react"; |
|
|
|
import axios from "../../axios"; |
|
import { imageUrl, imageUrl2, API_KEY } from "../../Constants/Constance"; |
|
import useUpdateMylist from "../../CustomHooks/useUpdateMylist"; |
|
import { Fade } from "react-reveal"; |
|
import YouTube from "react-youtube"; |
|
import StarRatings from "react-star-ratings"; |
|
|
|
import usePlayMovie from "../../CustomHooks/usePlayMovie"; |
|
import useUpdateWatchedMovies from "../../CustomHooks/useUpdateWatchedMovies"; |
|
import useUpdateLikedMovies from "../../CustomHooks/useUpdateLikedMovies"; |
|
import useGenereConverter from "../../CustomHooks/useGenereConverter"; |
|
|
|
import { Swiper, SwiperSlide } from "swiper/react"; |
|
import { Navigation, Pagination } from "swiper"; |
|
|
|
import "swiper/css"; |
|
import "swiper/css/navigation"; |
|
import "swiper/css/pagination"; |
|
import "./RowPostStyles.scss"; |
|
|
|
function RowPost(props) { |
|
const { addToMyList, PopupMessage } = useUpdateMylist(); |
|
const { playMovie } = usePlayMovie(); |
|
const { removeFromWatchedMovies, removePopupMessage } = |
|
useUpdateWatchedMovies(); |
|
const { addToLikedMovies, LikedMoviePopupMessage } = useUpdateLikedMovies(); |
|
const { convertGenere } = useGenereConverter(); |
|
|
|
const [movies, setMovies] = useState([]); |
|
const [showModal, setShowModal] = useState(false); |
|
const [moviePopupInfo, setMoviePopupInfo] = useState({}); |
|
const [shouldPop, setshouldPop] = useState(true); |
|
const [urlId, setUrlId] = useState(""); |
|
|
|
useEffect(() => { |
|
if (props.movieData != null) { |
|
setMovies(props.movieData); |
|
} else { |
|
axios.get(props.url).then((response) => { |
|
console.log(response.data.results); |
|
setMovies(response.data.results); |
|
}); |
|
} |
|
}, []); |
|
|
|
const customSettings = { |
|
breakpoints: { |
|
1800: { slidesPerView: 6.1, slidesPerGroup: 5 }, |
|
1690: { slidesPerView: 5.5, slidesPerGroup: 5 }, |
|
1536: { slidesPerView: 5, slidesPerGroup: 5 }, |
|
1280: { slidesPerView: 4.3, slidesPerGroup: 4 }, |
|
768: { slidesPerView: 3.3, slidesPerGroup: 3 }, |
|
625: { slidesPerView: 3.1, slidesPerGroup: 3 }, |
|
330: { slidesPerView: 2.1, slidesPerGroup: 2 }, |
|
0: { slidesPerView: 2, slidesPerGroup: 2 }, |
|
}, |
|
}; |
|
|
|
const opts = { |
|
width: "100%", |
|
height: "auto", |
|
playerVars: { |
|
autoplay: 1, |
|
controls: 0, |
|
}, |
|
modestbranding: 1, |
|
rel: 0, |
|
autohide: 1, |
|
showinfo: 0, |
|
}; |
|
|
|
const handleMoviePopup = (movieInfo) => { |
|
if (shouldPop) { |
|
setMoviePopupInfo(movieInfo); |
|
setShowModal(true); |
|
axios |
|
.get(`/movie/${movieInfo.id}/videos?api_key=${API_KEY}&language=en-US`) |
|
.then((responce) => { |
|
console.log(responce.data); |
|
if (responce.data.results.length !== 0) { |
|
setUrlId(responce.data.results[0]); |
|
} else { |
|
console.log("Array Emptey"); |
|
} |
|
}); |
|
} |
|
}; |
|
|
|
return ( |
|
<div |
|
className="ml-2 lg:ml-11 mb-11 lg:mb-4 RowContainer" |
|
style={{ marginTop: `${props.first ? "-8rem" : ""}` }} |
|
> |
|
{PopupMessage} |
|
{removePopupMessage} |
|
|
|
{movies[0] ? ( |
|
<> |
|
<h1 className="text-white pb-4 xl:pb-0 font-normal text-base sm:text-2xl md:text-4xl"> |
|
{props.title} |
|
</h1> |
|
|
|
<Swiper |
|
{...customSettings} |
|
modules={[Navigation, Pagination]} |
|
spaceBetween={8} |
|
slidesPerView={6.1} |
|
navigation |
|
pagination={{ clickable: true }} |
|
onSlideChange={() => console.log("slide change")} |
|
onSwiper={(swiper) => console.log(swiper)} |
|
className="SwiperStyle" |
|
> |
|
{movies.map((obj, index) => { |
|
const converted = convertGenere(obj.genre_ids); |
|
return ( |
|
<SwiperSlide |
|
className={props.islarge ? "large" : "bg-cover"} |
|
onClick={() => handleMoviePopup(obj)} |
|
> |
|
{props.islarge ? ( |
|
<> |
|
<img |
|
className="rounded-sm" |
|
src={`${imageUrl + obj.poster_path}`} |
|
/> |
|
</> |
|
) : ( |
|
<> |
|
<img |
|
loading="lazy" |
|
className={ |
|
props.movieData != null |
|
? "border-b-4 border-red-700 rounded-sm" |
|
: "rounded-sm" |
|
} |
|
src={ |
|
obj.backdrop_path |
|
? `${imageUrl2 + obj.backdrop_path}` |
|
: "https://i.ytimg.com/vi/Mwf--eGs05U/maxresdefault.jpg" |
|
} |
|
onClick={() => handleMoviePopup(obj)} |
|
/> |
|
</> |
|
)} |
|
<div className="content pt-16"> |
|
<Fade bottom duration={300}> |
|
<div className="flex transition ml-3 ease-in-out delay-150"> |
|
<div |
|
onClick={() => playMovie(obj)} |
|
onMouseEnter={() => setshouldPop(false)} |
|
onMouseLeave={() => setshouldPop(true)} |
|
className="text-white w-9 h-9 border-[2px] rounded-full p-2 mr-1 backdrop-blur-[2px] shadow-md ease-linear transition-all duration-150 hover:text-black hover:bg-white" |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.348a1.125 1.125 0 010 1.971l-11.54 6.347a1.125 1.125 0 01-1.667-.985V5.653z" |
|
/> |
|
</svg> |
|
</div> |
|
|
|
{props.movieData != null ? ( |
|
<> |
|
<div |
|
onClick={() => removeFromWatchedMovies(obj)} |
|
onMouseEnter={() => setshouldPop(false)} |
|
onMouseLeave={() => setshouldPop(true)} |
|
className="text-white w-9 h-9 border-[2px] rounded-full p-2 mr-1 backdrop-blur-[1px] shadow-md ease-linear transition-all duration-150 hover:text-black hover:bg-white" |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M19.5 12h-15" |
|
/> |
|
</svg> |
|
</div> |
|
</> |
|
) : ( |
|
<> |
|
<div |
|
onClick={() => addToMyList(obj)} |
|
onMouseEnter={() => setshouldPop(false)} |
|
onMouseLeave={() => setshouldPop(true)} |
|
className="text-white w-9 h-9 border-[2px] rounded-full p-2 mr-1 backdrop-blur-[1px] shadow-md ease-linear transition-all duration-150 hover:text-black hover:bg-white" |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M12 4.5v15m7.5-7.5h-15" |
|
/> |
|
</svg> |
|
</div> |
|
</> |
|
)} |
|
|
|
<div |
|
onClick={() => addToLikedMovies(obj)} |
|
onMouseEnter={() => setshouldPop(false)} |
|
onMouseLeave={() => setshouldPop(true)} |
|
className="text-white w-9 h-9 border-[2px] rounded-full p-2 mr-1 backdrop-blur-[1px] shadow-md ease-linear transition-all duration-150 hover:text-black hover:bg-white" |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M6.633 10.5c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 012.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 00.322-1.672V3a.75.75 0 01.75-.75A2.25 2.25 0 0116.5 4.5c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 01-2.649 7.521c-.388.482-.987.729-1.605.729H13.48c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 00-1.423-.23H5.904M14.25 9h2.25M5.904 18.75c.083.205.173.405.27.602.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 01-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 10.203 4.167 9.75 5 9.75h1.053c.472 0 .745.556.5.96a8.958 8.958 0 00-1.302 4.665c0 1.194.232 2.333.654 3.375z" |
|
/> |
|
</svg> |
|
</div> |
|
|
|
<div |
|
onClick={() => handleMoviePopup(obj)} |
|
className="text-white w-9 h-9 border-[2px] rounded-full p-2 mr-1 backdrop-blur-[1px] shadow-md ease-linear transition-all duration-150 hover:text-black hover:bg-white" |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
className="text-shadow-xl" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M19.5 8.25l-7.5 7.5-7.5-7.5" |
|
/> |
|
</svg> |
|
</div> |
|
</div> |
|
|
|
<h1 className="text-white ml-4 font-medium w-4/5 xl:line-clamp-1"> |
|
{obj.name || obj.title} |
|
</h1> |
|
|
|
<h1 className="text-white text-xs font-semibold ml-4 w-11/12"> |
|
{obj.release_date || |
|
(obj.first_air_date && obj.release_date) || |
|
obj.first_air_date} |
|
</h1> |
|
|
|
<div className="ml-4"> |
|
<StarRatings |
|
rating={obj.vote_average / 2} |
|
starRatedColor="red" |
|
numberOfStars={5} |
|
name="rating" |
|
starDimension="0.8rem" |
|
starSpacing="0.2rem" |
|
/> |
|
</div> |
|
|
|
{converted && |
|
converted.map((genre) => { |
|
return ( |
|
<span className="hidden text-white ml-4 font-thin text-xs lg:inline"> |
|
{genre} |
|
</span> |
|
); |
|
})} |
|
</Fade> |
|
</div> |
|
</SwiperSlide> |
|
); |
|
})} |
|
</Swiper> |
|
</> |
|
) : ( |
|
<> |
|
<div className="animate-pulse"> |
|
<div className="w-72 ml-1 mt-2 sm:ml-0 sm:w-96 py-5 mb-5 xl:py-4 2xl:py-6 xl:w-45rem bg-neutral-900 rounded-md"></div> |
|
<div className="w-91% md:w-98% ml-1 mb-14 sm:ml-0 py-16 md:py-24 bg-neutral-900 rounded-md"></div> |
|
</div> |
|
</> |
|
)} |
|
|
|
<> |
|
{} |
|
{showModal && ( |
|
<> |
|
<div className="justify-center items-center flex overflow-x-hidden overflow-y-auto fixed inset-0 z-50 outline-none focus:outline-none"> |
|
<div className="relative w-auto mt-24 sm:my-6 mx-4 max-w-3xl"> |
|
{/*content*/} |
|
<Fade bottom duration={500}> |
|
<div className="border-0 rounded-lg shadow-lg relative flex flex-col w-full bg-neutral-800 outline-none focus:outline-none"> |
|
{/*header*/} |
|
<button |
|
className="group p-1 ml-2 mt-2 backdrop-blur-[20px] bg-transparent border-2 border-white hover:bg-white hover:text-black fixed right-4 rounded-full cursor-pointer float-right font-semibold outline-none focus:outline-none ease-linear transition-all duration-150" |
|
onClick={() => setShowModal(false)} |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
className="text-white w-6 h-6 group-hover:text-black ease-linear transition-all duration-150" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M6 18L18 6M6 6l12 12" |
|
/> |
|
</svg> |
|
</button> |
|
{/*Movie Trailer or Image*/} |
|
{urlId ? ( |
|
<YouTube |
|
opts={opts} |
|
videoId={urlId.key} |
|
className="YouTubeVid" |
|
/> |
|
) : ( |
|
<img src={`${imageUrl + moviePopupInfo.backdrop_path}`} /> |
|
)} |
|
|
|
<div className="flex ml-4 items-center -mt-14"> |
|
<button |
|
className="flex items-center justify-center bg-red-800 text-white active:bg-red-800 font-medium sm:font-bold uppercase text-xs px-4 sm:px-6 md:text-sm py-2 rounded shadow hover:shadow-lg cursor-pointer outline-none focus:outline-none mr-3 mb-1 ease-linear transition-all duration-150" |
|
type="button" |
|
onClick={() => { |
|
playMovie(moviePopupInfo); |
|
}} |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
className="h-6 w-6 mr-1 text-white hover:text-gray-300 ease-linear transition-all duration-150" |
|
viewBox="0 0 20 20" |
|
fill="currentColor" |
|
> |
|
<path |
|
fillRule="evenodd" |
|
d="M10 18a8 8 0 100-16 8 8 0 000 16zM9.555 7.168A1 1 0 008 8v4a1 1 0 001.555.832l3-2a1 1 0 000-1.664l-3-2z" |
|
clipRule="evenodd" |
|
/> |
|
</svg> |
|
Play |
|
</button> |
|
<div |
|
onClick={() => { |
|
addToMyList(moviePopupInfo); |
|
}} |
|
className="group text-white w-10 h-10 border-[2px] rounded-full p-2 mr-3 backdrop-blur-[1px] hover:bg-white hover:text-black shadow-md cursor-pointer ease-linear transition-all duration-150 " |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M12 4.5v15m7.5-7.5h-15" |
|
/> |
|
</svg> |
|
</div> |
|
<div |
|
onClick={() => addToLikedMovies(moviePopupInfo)} |
|
className="text-white w-10 h-10 border-[2px] rounded-full p-2 mr-1 backdrop-blur-[1px] hover:bg-white hover:text-black shadow-md cursor-pointer ease-linear transition-all duration-150" |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M6.633 10.5c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 012.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 00.322-1.672V3a.75.75 0 01.75-.75A2.25 2.25 0 0116.5 4.5c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 01-2.649 7.521c-.388.482-.987.729-1.605.729H13.48c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 00-1.423-.23H5.904M14.25 9h2.25M5.904 18.75c.083.205.173.405.27.602.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 01-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 10.203 4.167 9.75 5 9.75h1.053c.472 0 .745.556.5.96a8.958 8.958 0 00-1.302 4.665c0 1.194.232 2.333.654 3.375z" |
|
/> |
|
</svg> |
|
</div> |
|
</div> |
|
|
|
<Fade bottom> |
|
<div className="p-5 py-4 -mb-6 mt-2 sm:mb-0 sm:mt-0 sm:py-2 sm:pt-6 rounded-t"> |
|
<h3 className="text-3xl font-semibold text-white"> |
|
{moviePopupInfo.title || moviePopupInfo.name} |
|
</h3> |
|
<h1 className="text-green-700 font-bold mt-2"> |
|
{moviePopupInfo.release_date} |
|
</h1> |
|
</div> |
|
</Fade> |
|
{/*body*/} |
|
<Fade bottom> |
|
<div className="relative p-4 sm:p-6 flex-auto"> |
|
<div className="bg-neutral-700 h-[0.15rem]"></div> |
|
<p className="my-4 sm:my-7 text-neutral-400 text-xs md:text-lg leading-relaxed line-clamp-4 sm:line-clamp-none"> |
|
{moviePopupInfo.overview} |
|
</p> |
|
<div className="bg-neutral-700 h-[0.15rem]"></div> |
|
</div> |
|
</Fade> |
|
{/*footer*/} |
|
<div className="sm:flex items-center justify-end p-2 rounded-b"> |
|
{/*More Info*/} |
|
<Fade bottom> |
|
<div className="relative p-2 py-5 sm:p-6 flex-auto"> |
|
<h1 className="flex -mt-4 text-neutral-400 text-sm leading-relaxed"> |
|
Rating : |
|
<div className="ml-2"> |
|
<StarRatings |
|
rating={moviePopupInfo.vote_average / 2} |
|
starRatedColor="red" |
|
numberOfStars={5} |
|
name="rating" |
|
starDimension="1rem" |
|
starSpacing="0.2rem" |
|
/> |
|
</div> |
|
</h1> |
|
<h1 className="flex text-neutral-400 text-sm leading-relaxed"> |
|
Released on :{" "} |
|
<p className="text-white ml-2 font-medium"> |
|
{moviePopupInfo.release_date || |
|
moviePopupInfo.first_air_date} |
|
</p> |
|
</h1> |
|
<h1 className="flex text-neutral-400 text-sm leading-relaxed"> |
|
Language : |
|
<p className="text-white ml-2 font-medium"> |
|
{moviePopupInfo.original_language} |
|
</p> |
|
</h1> |
|
|
|
<h1 className="flex text-neutral-400 text-sm leading-relaxed"> |
|
Genere : |
|
{convertGenere(moviePopupInfo.genre_ids).slice(0,2).map( |
|
(genere) => { |
|
return ( |
|
<span className="text-white ml-2 font-medium"> |
|
{genere} |
|
</span> |
|
); |
|
} |
|
)} |
|
</h1> |
|
</div> |
|
</Fade> |
|
|
|
<div className="flex justify-between p-2"> |
|
<button |
|
className="group flex items-center justify-center border-[0.7px] border-white text-white font-medium sm:font-bold text-xs px-4 mr-4 sm:px-6 md:text-sm py-3 rounded shadow hover:shadow-lg hover:bg-white hover:text-red-700 outline-none focus:outline-none mb-1 ease-linear transition-all duration-150" |
|
type="button" |
|
onClick={() => addToMyList(moviePopupInfo)} |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
className="h-6 w-6 mr-1 text-white hover:text-red-700 group-hover:text-red-700 ease-linear transition-all duration-150" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
stroke="currentColor" |
|
strokeWidth={2} |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z" |
|
/> |
|
</svg> |
|
Add to MyList |
|
</button> |
|
|
|
<button |
|
className="flex items-center text-red-500 background-transparent font-medium sm:font-bold uppercase px-2 py-2 text-sm outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150" |
|
type="button" |
|
onClick={() => setShowModal(false)} |
|
> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
fill="none" |
|
viewBox="0 0 24 24" |
|
strokeWidth={1.5} |
|
stroke="currentColor" |
|
className="w-6 h-6 mr-1" |
|
> |
|
<path |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
d="M9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 11-18 0 9 9 0 0118 0z" |
|
/> |
|
</svg> |
|
Close |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</Fade> |
|
</div> |
|
</div> |
|
<div className="opacity-40 fixed inset-0 z-40 bg-black"></div> |
|
</> |
|
)} |
|
</> |
|
</div> |
|
); |
|
} |
|
|
|
export default RowPost; |
|
|