94 lines
2.7 KiB
TypeScript
94 lines
2.7 KiB
TypeScript
|
|
import FundingGoal from "@/app/components/funding-goal";
|
|
import VodCard from "@/app/components/vod-card";
|
|
import { getVodTitle } from "@/app/components/vod-page";
|
|
import { getVods } from '@/app/lib/vods';
|
|
import { IVod } from "@/app/lib/vods";
|
|
import { IVtuber } from '@futureporn/types';
|
|
import { getVtubers } from "./lib/vtubers";
|
|
import VTuberCard from "./components/vtuber-card";
|
|
import Link from 'next/link';
|
|
import { notFound } from "next/navigation";
|
|
// import { getLogtoContext, signIn, signOut } from '@logto/next/server-actions';
|
|
// import SignIn from './sign-in';
|
|
// import SignOut from './sign-out';
|
|
// import { logtoConfig } from './logto';
|
|
|
|
export default async function Page() {
|
|
|
|
// const { isAuthenticated, claims } = await getLogtoContext(logtoConfig);
|
|
|
|
const vods = await getVods(1, 9, true);
|
|
// console.log('vods as follows')
|
|
// console.log(JSON.stringify(vods, null, 2))
|
|
|
|
|
|
const vtubers = await getVtubers();
|
|
// if (!vtubers) notFound();
|
|
// console.log(`vtubers as follows`)
|
|
// console.log(JSON.stringify(vtubers, null, 2))
|
|
|
|
|
|
|
|
// return (
|
|
// <pre>
|
|
// <code>
|
|
// {JSON.stringify(vods, null, 2)}
|
|
// </code>
|
|
// </pre>
|
|
// )
|
|
return (
|
|
<>
|
|
<div className="main">
|
|
<section className="section">
|
|
<div className="container">
|
|
<h1 className="title">
|
|
The Galaxy's Best VTuber Hentai Site
|
|
</h1>
|
|
<h2 className="subtitle">For adults only (NSFW)</h2>
|
|
</div>
|
|
</section>
|
|
|
|
<FundingGoal />
|
|
|
|
<Link href={'/auth'}>Login</Link>
|
|
|
|
<div className="section">
|
|
|
|
<h2 className="is-2 title">Latest VODs</h2>
|
|
<div className="columns is-multiline is-mobile">
|
|
|
|
|
|
{!vods?.data && <div className="section"><p>Error: Failed to fetch VODs from the database</p></div> }
|
|
|
|
|
|
|
|
{vods && vods.map((vod: IVod) => (
|
|
<VodCard
|
|
key={vod.id}
|
|
id={vod.id}
|
|
title={getVodTitle(vod)}
|
|
date={vod.date}
|
|
muxAsset={vod.mux_asset?.asset_id}
|
|
vtuber={vod?.vtuber}
|
|
thumbnail={vod.thumbnail}
|
|
/>
|
|
))}
|
|
</div>
|
|
|
|
<Link className='button' href={`/latest-vods/1`}>See all Latest Vods</Link>
|
|
</div>
|
|
<div className="section">
|
|
|
|
<h2 className="is-2 title">VTubers</h2>
|
|
<nav className="columns is-multiline">
|
|
{vtubers.data.map((vtuber: IVtuber) =>
|
|
<VTuberCard key={vtuber.id} {...vtuber} />
|
|
)}
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|