aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/channel-card.tsx
blob: 839cde6ba62ba9ee461b8d64fd20ea295cd87274 (plain) (blame)
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
import { AvatarImage, AvatarFallback, Avatar } from "@/components/ui/avatar"
import { CardTitle, CardHeader, CardContent, Card } from "@/components/ui/card"
import { Badge } from "@/components/ui/badge"

interface ChannelCardProps {
  channel_id: string
  name: string
  avatarUrl: string
  subscriberCount: number
  videoCount: number
  suborg: string
  nextMilestone: string
  nextMilestoneDays: string
  nextMilestoneDate: string
}

export function ChannelCard(props: ChannelCardProps) {
  const { channel_id, name, avatarUrl, subscriberCount, videoCount, suborg, nextMilestone, nextMilestoneDays, nextMilestoneDate } = props
  return (
    <Card className="w-[500px] shadow-lg rounded-lg overflow-hidden mt-4 py-4">
      <CardHeader>
        <div className="flex items-center space-x-4 p-4">
          <Avatar>
            <AvatarImage src={avatarUrl}/>
            <AvatarFallback>PR</AvatarFallback>
          </Avatar>
          <div>
           <a className="hover:underline" href={`https://youtube.com/channel/${channel_id}`}><CardTitle>{name}</CardTitle></a>
            <Badge variant="secondary">{suborg}</Badge>
          </div>
        </div>
      </CardHeader>
      <CardContent className="px-4 py-2 space-y-4">
        <div className="flex flex-col items-center">
          <span className="text-l text-gray-600">Subscribers</span>
            <span className="font-semibold">{subscriberCount.toLocaleString()}</span>
        </div>
        <div className="flex flex-col items-center">
          <span className="text-l text-gray-600">Videos</span>
          <span className="font-semibold">{videoCount}</span>
        </div>
        <div className="flex flex-col items-center">
          <span className="text-l text-gray-600">Next Milestone</span>
          <span className="font-semibold">{Number(nextMilestone).toLocaleString()}</span>
          <div className="flex justify-center items-center">
            <span className="text-sm text-gray-600 px-2">{nextMilestoneDays} days</span>
            <span className="text-sm text-gray-600 px-2">{nextMilestoneDate}</span>
          </div>

        </div>
      </CardContent>
    </Card>
  )
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage