File size: 6,196 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
import React, { useEffect } from "react";
import { useDispatch, useSelector } from "react-redux";
import { useNavigate, useParams } from "react-router-dom";
import { getVideoDetails, getRelatedVideos } from "../redux/videoSlice";
import ReactPlayer from "react-player";
import { FiThumbsUp } from "react-icons/fi";
import timeSince from "../utils/date";
import convertToInternationalCurrencySystem from "../utils/convert";
const Video = (props) => {
const pageRoute = useNavigate();
return (
<div className="flex flex-col sm:flex-row w-[98%] sm:w-[90%] sm:items-center sm:items-start gap-x-4 cursor-pointer">
<img
alt="Video Thumbnail"
onClick={() => pageRoute(`/watch/${props.videoId}`)}
className="w-[100%] sm:w-[210px] sm:h-[110px] bg-cover"
src={props.thumbnail}
/>
<div>
<h3
onClick={() => pageRoute(`/watch/${props.videoId}`)}
className="text-[15px] md:text-[16px] lg:text-[18px] font-medium tracking-wide text-[#000000] md:leading-[24px] w-[100%] sm:w-[110%]"
>
{props.title}
</h3>
<div
onClick={() => pageRoute(`/channel/${props.channelId}`)}
className="sm:mt-1"
>
<p className="text-[#606060] text-[13.5px] font-[500] tracking-wide">
{props.channel}
</p>
<p className="text-[#606060] text-[13.5px] font-medium tracking-wider -mt-1">
{props.on}
</p>
</div>
</div>
</div>
);
};
function VideoDetails() {
const { sidebarExtend } = useSelector((state) => state.category);
const dispatch = useDispatch();
const { id } = useParams();
const { videoDetails } = useSelector((state) => state.video);
const { relatedVideos } = useSelector((state) => state.video);
const { darkMode } = useSelector((state) => state.darkMode);
var aDay = 24 * 60 * 60 * 1000;
const pageRoute = useNavigate();
useEffect(() => {
dispatch(getVideoDetails(`videos?part=snippet,statistics&id=${id}`));
dispatch(
getRelatedVideos(`search?part=snippet&relatedToVideoId=${id}&type=video`)
);
}, [id, dispatch]);
return (
<>
<div
className={`sm:hidden overlayEffect ${
sidebarExtend ? "block" : "hidden"
}`}
></div>
<div
className={`pl-0 ${
sidebarExtend ? "sm:pl-[180px]" : "sm:pl-[70px]"
} pt-20 ml-4 lg:flex lg:gap-x-7`}
>
<div className="w-[96%] lg:max-w-[850px] h-[240px] sm:h-[320px] lg:h-[430px] container">
<ReactPlayer
width="100%"
height="100%"
className="react-player"
url={`https://www.youtube.com/watch?v=${id}`}
controls
/>
<div>
<div className="flex gap-x-1">
{videoDetails?.snippet?.tags?.map((e, index) => {
return (
<a
style={{ display: index > 3 ? "none" : "" }}
className="text-[#3366CC] text-[13px] font-normal"
href={`${e}`}
>
{e?.slice(0, 15)}
</a>
);
})}
</div>
<h2
className={`text-md sm:text-xl md:text-2xl text-[#000000] font-medium
${darkMode && "text-white"}
`}
>
{videoDetails?.snippet?.title}
</h2>
<div className="sm:flex items-center justify-between mt-3 space-y-3">
{/* <img className='rounded-[20px]' src="https://yt3.ggpht.com/wg1TITEoPfxvBGfzuqWyt3bqm_qu35ZhMswUv3feetU3xNX_6wsAXZF40OlPIgY4TmqbqCmAZ1U=s48-c-k-c0x00ffffff-no-rj" /> */}
{/* <div className='flex flex-col -gap-y-6'> */}
<h5
onClick={() =>
pageRoute(`/channel/${videoDetails?.snippet?.channelId}`)
}
className={`w-fit text-sm sm:text-md font-medium text-[#000000] px-3 py-2 rounded-[10px] bg-[#f2f2f2] tracking-wide ${
darkMode && "text-white bg-dark"
}`}
>
{videoDetails?.snippet?.channelTitle}
</h5>
{/* </div> */}
<div className="flex items-center gap-x-3 mb-5 sm:mb-0">
<div
className={`flex items-center bg-[#f2f2f2] px-3 py-2 rounded-[10px]
${darkMode && "bg-dark"}
`}
>
<FiThumbsUp className="w-10 h-6" />
<span
className={`text-[12.4px] sm:text-[14.4px] text-[#0f0f0f] font-medium tracking-wide
${darkMode && "text-white"}
`}
>
{convertToInternationalCurrencySystem(
videoDetails?.statistics?.likeCount
) + " Likes"}
</span>
</div>
<span
className={`text-[12.4px] sm:text-[14.4px] text-[#0f0f0f] font-medium tracking-wide bg-[#f2f2f2] px-3 py-2 rounded-[10px]
${darkMode && "bg-dark text-white"}
`}
>
{convertToInternationalCurrencySystem(
videoDetails?.statistics?.viewCount
) + " Views"}
</span>
</div>
</div>
</div>
</div>
<div className="flex flex-col gap-y-4 mt-48 sm:mt-40 lg:mt-0">
{relatedVideos?.map((e, index) => {
return (
<Video
key={index + 2}
thumbnail={e.snippet?.thumbnails?.medium?.url}
width="210px"
title={e.snippet.title}
channel={e.snippet.channelTitle}
on={timeSince(
new Date(Date.parse(e.snippet.publishedAt) - aDay)
)}
channelId={e.snippet.channelId}
videoId={e.id.videoId}
/>
);
})}
</div>
</div>
</>
);
}
export default VideoDetails;
|