2024-01-20 16:16:14 +00:00
|
|
|
import Link from "next/link";
|
2024-07-10 22:11:18 +00:00
|
|
|
import { getSafeDate } from '@/app/lib/dates';
|
|
|
|
import { IVtuber } from 'types';
|
2024-06-13 02:54:44 +00:00
|
|
|
import Image from "next/legacy/image"
|
2024-07-10 22:11:18 +00:00
|
|
|
import { LocalizedDate } from '@/app/components/localized-date'
|
2024-01-20 16:16:14 +00:00
|
|
|
|
|
|
|
interface IVodCardProps {
|
|
|
|
id: number;
|
|
|
|
title: string;
|
|
|
|
date: string;
|
|
|
|
muxAsset: string | undefined;
|
|
|
|
thumbnail: string | undefined;
|
|
|
|
vtuber: IVtuber;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default function VodCard({id, title, date, muxAsset, thumbnail = 'https://futureporn-b2.b-cdn.net/default-thumbnail.webp', vtuber}: IVodCardProps) {
|
|
|
|
|
|
|
|
if (!vtuber?.attributes?.slug) return <div className="card"><p>VOD {id} is missing VTuber</p></div>
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div key={id} className="column is-full-mobile is-one-third-tablet is-one-fourth-desktop is-one-fifth-fullhd">
|
|
|
|
<div className="card">
|
|
|
|
<Link href={`/vt/${vtuber.attributes.slug}/vod/${getSafeDate(date)}`}>
|
|
|
|
<div className="card-image">
|
|
|
|
<figure className="image is-16by9">
|
|
|
|
<Image
|
|
|
|
src={thumbnail}
|
|
|
|
alt={title}
|
|
|
|
placeholder="blur"
|
|
|
|
blurDataURL={vtuber.attributes.imageBlur}
|
2024-06-13 05:17:44 +00:00
|
|
|
layout="fill"
|
2024-01-20 16:16:14 +00:00
|
|
|
style={{
|
|
|
|
objectFit: 'cover',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</figure>
|
|
|
|
</div>
|
|
|
|
<div className="card-content">
|
2024-03-29 07:28:02 +00:00
|
|
|
<p className="subtitle">{vtuber.attributes.displayName}</p>
|
2024-01-20 16:16:14 +00:00
|
|
|
<LocalizedDate date={new Date(date)} />
|
2024-03-29 07:28:02 +00:00
|
|
|
<p className="">{title}</p>
|
2024-01-20 16:16:14 +00:00
|
|
|
</div>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|