File size: 2,887 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
import React, { useEffect } from 'react'
import { useDispatch, useSelector } from 'react-redux'
import { useParams } from 'react-router-dom'
import VideoCard from '../components/VideoCard'
import { getChannelVideos, getChannelDetails } from '../redux/channelSlice'
import convertToInternationalCurrencySystem from '../utils/convert'
import timeSince from '../utils/date'

function ChannelDetails() {
  const { id } = useParams()
  const dispatch = useDispatch()
  const { sidebarExtend } = useSelector((state) => state.category)
  const { channelDetails } = useSelector((state) => state.channel)
  const { channelVideos } = useSelector((state) => state.channel)
  var aDay = 24 * 60 * 60 * 1000;
  console.log(channelDetails.snippet)
  useEffect(() => {
    dispatch(getChannelVideos(`search?channelId=${id}&part=snippet&order=date`))
    dispatch(getChannelDetails(`channels?part=snippet&id=${id}`))
  }, [id,dispatch])
  console.log(window.innerWidth)
  return (
    <>
      <div className={`sm:hidden overlayEffect ${sidebarExtend ? "block" : "hidden"}`}></div>

      <div className={`pt-14 ml-4 pl-0  ${sidebarExtend ? "sm:pl-[180px]" : "sm:pl-[70px]"}`}>
        {/* <img style={{ backgroundSize: "cover" }} className='w-[100%] h-[100px]' src= /> */}
        <img className='w-[100%] h-[120px] sm:h-[160px] lg:h-[210px] bg-cover' style={{ background: `url(${channelDetails?.brandingSettings?.image?.bannerExternalUrl})` }} />
        <div className='flex gap-x-5 items-center my-5'>
          <img className='rounded-[40px] w-12 h-12 md:w-16 md:h-16' src={channelDetails?.snippet?.thumbnails?.medium?.url} />
          <div className='flex flex-col'>
            <h3 className='text-md md:text-xl font-medium tracking-wide'>{channelDetails?.snippet?.title}</h3>
            <div className='flex flex-col'>

              <span className='text-[12px] md:text-[14px] tracking-wide font-[500] text-[#323232]'>{channelDetails?.snippet?.customUrl}</span>
              <span className='text-[12px] md:text-[13px] tracking-wider -mt-1 font-[500] text-[#323232]'>{convertToInternationalCurrencySystem(channelDetails?.statistics?.subscriberCount)}</span>
            </div>
          </div>
        </div>
        <div>
          <h4 className='text-[16px] text-[#585858] font-bold tracking-wider'>VIDEOS</h4>
          <div className='mt-3 flex flex-wrap gap-x-5 gap-y-3'>
            {
              channelVideos.map((e, index) => {
                return (

                  <VideoCard key={index + 1} 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>
      </div>
    </>
  )
}

export default ChannelDetails