418 lines
16 KiB
TypeScript
418 lines
16 KiB
TypeScript
import { Head, Link, router, useForm, usePage } from '@inertiajs/react';
|
|
import {
|
|
Heart,
|
|
LogIn,
|
|
MessageSquare,
|
|
Radio,
|
|
Send,
|
|
Users,
|
|
Video,
|
|
} from 'lucide-react';
|
|
import type { FormEvent } from 'react';
|
|
import { useState } from 'react';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import {
|
|
Sheet,
|
|
SheetContent,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
SheetTrigger,
|
|
} from '@/components/ui/sheet';
|
|
import { VideoPlayer } from '@/components/video-player';
|
|
import { cn } from '@/lib/utils';
|
|
import { home, login } from '@/routes';
|
|
import { follow, unfollow } from '@/routes/channels';
|
|
import { store as storeChat } from '@/routes/channels/chat';
|
|
import type {
|
|
BroadcastSummary,
|
|
ChannelDetail,
|
|
ChatMessage,
|
|
VodSummary,
|
|
} from '@/types';
|
|
|
|
type Props = {
|
|
channel: ChannelDetail;
|
|
currentBroadcast: BroadcastSummary | null;
|
|
vods: VodSummary[];
|
|
chatMessages: ChatMessage[];
|
|
isFollowing: boolean;
|
|
};
|
|
|
|
export default function ChannelShow({
|
|
channel,
|
|
currentBroadcast,
|
|
vods,
|
|
chatMessages,
|
|
isFollowing,
|
|
}: Props) {
|
|
const { auth } = usePage().props;
|
|
const [chatOpen, setChatOpen] = useState(false);
|
|
const chatForm = useForm({ body: '' });
|
|
|
|
function submitChat(event: FormEvent) {
|
|
event.preventDefault();
|
|
chatForm.submit(storeChat(channel.slug), {
|
|
preserveScroll: true,
|
|
onSuccess: () => chatForm.reset('body'),
|
|
});
|
|
}
|
|
|
|
function toggleFollow() {
|
|
if (isFollowing) {
|
|
router.delete(unfollow(channel.slug), {
|
|
preserveScroll: true,
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
router.post(follow(channel.slug), undefined, {
|
|
preserveScroll: true,
|
|
});
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Head title={channel.display_name} />
|
|
<div className="theatre-surface grid min-h-[calc(100vh-4rem)] gap-0 xl:grid-cols-[minmax(0,1fr)_380px]">
|
|
<main className="min-w-0">
|
|
<section className="border-b bg-zinc-950 text-white">
|
|
<div className="mx-auto w-full max-w-[1600px]">
|
|
{currentBroadcast?.hls_url ? (
|
|
<VideoPlayer
|
|
src={currentBroadcast.hls_url}
|
|
title={currentBroadcast.title}
|
|
/>
|
|
) : (
|
|
<OfflinePlayer channel={channel} />
|
|
)}
|
|
</div>
|
|
</section>
|
|
|
|
<section className="grid gap-6 p-4 md:p-6">
|
|
<div className="flex flex-col gap-4 lg:flex-row lg:items-start lg:justify-between">
|
|
<div className="flex min-w-0 gap-4">
|
|
<Avatar channel={channel} />
|
|
<div className="min-w-0 space-y-2">
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
<LiveState channel={channel} />
|
|
{channel.category && (
|
|
<span className="rounded-md border px-2 py-1 text-xs">
|
|
{channel.category.name}
|
|
</span>
|
|
)}
|
|
</div>
|
|
<h1 className="text-2xl font-semibold">
|
|
{currentBroadcast?.title ??
|
|
channel.display_name}
|
|
</h1>
|
|
<div className="flex flex-wrap gap-4 text-sm text-muted-foreground">
|
|
<span>{channel.display_name}</span>
|
|
<span className="inline-flex items-center gap-1">
|
|
<Users className="size-4" />
|
|
{channel.viewer_count} viewers
|
|
</span>
|
|
<span>
|
|
{channel.followers_count} followers
|
|
</span>
|
|
</div>
|
|
{channel.description && (
|
|
<p className="max-w-3xl text-sm leading-6 text-muted-foreground">
|
|
{channel.description}
|
|
</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex flex-wrap gap-2">
|
|
<Sheet
|
|
open={chatOpen}
|
|
onOpenChange={setChatOpen}
|
|
>
|
|
<SheetTrigger asChild>
|
|
<Button
|
|
variant="outline"
|
|
className="xl:hidden"
|
|
>
|
|
<MessageSquare className="size-4" />
|
|
Chat
|
|
</Button>
|
|
</SheetTrigger>
|
|
<SheetContent
|
|
side="bottom"
|
|
className="h-[82svh] rounded-t-md"
|
|
>
|
|
<SheetHeader>
|
|
<SheetTitle>Live chat</SheetTitle>
|
|
</SheetHeader>
|
|
<ChatPanel
|
|
channel={channel}
|
|
authUser={Boolean(auth.user)}
|
|
messages={chatMessages}
|
|
form={chatForm}
|
|
onSubmit={submitChat}
|
|
compact
|
|
/>
|
|
</SheetContent>
|
|
</Sheet>
|
|
|
|
{auth.user ? (
|
|
<Button
|
|
variant={
|
|
isFollowing ? 'outline' : 'default'
|
|
}
|
|
onClick={toggleFollow}
|
|
>
|
|
<Heart
|
|
className={cn(
|
|
'size-4',
|
|
isFollowing &&
|
|
'fill-current text-primary',
|
|
)}
|
|
/>
|
|
{isFollowing ? 'Following' : 'Follow'}
|
|
</Button>
|
|
) : (
|
|
<Button asChild variant="outline">
|
|
<Link href={login()}>
|
|
<LogIn className="size-4" />
|
|
Log in to follow
|
|
</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<section className="grid gap-3">
|
|
<div className="flex items-center justify-between gap-3">
|
|
<div className="flex items-center gap-2">
|
|
<Video className="size-5 text-primary" />
|
|
<h2 className="font-semibold">
|
|
Recent VODs
|
|
</h2>
|
|
</div>
|
|
<span className="text-sm text-muted-foreground">
|
|
{vods.length} available
|
|
</span>
|
|
</div>
|
|
{vods.length > 0 ? (
|
|
<div className="grid gap-3 md:grid-cols-2 2xl:grid-cols-4">
|
|
{vods.map((vod) => (
|
|
<VodCard key={vod.id} vod={vod} />
|
|
))}
|
|
</div>
|
|
) : (
|
|
<div className="rounded-md border border-dashed bg-card p-6 text-sm text-muted-foreground">
|
|
No public recordings yet.
|
|
</div>
|
|
)}
|
|
</section>
|
|
</section>
|
|
</main>
|
|
|
|
<aside className="hidden min-h-[480px] border-l bg-card xl:flex">
|
|
<ChatPanel
|
|
channel={channel}
|
|
authUser={Boolean(auth.user)}
|
|
messages={chatMessages}
|
|
form={chatForm}
|
|
onSubmit={submitChat}
|
|
/>
|
|
</aside>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
ChannelShow.layout = {
|
|
breadcrumbs: [
|
|
{
|
|
title: 'Channel',
|
|
href: home(),
|
|
},
|
|
],
|
|
};
|
|
|
|
function OfflinePlayer({ channel }: { channel: ChannelDetail }) {
|
|
return (
|
|
<div className="relative grid aspect-video min-h-[280px] place-items-center overflow-hidden">
|
|
{channel.banner_url ? (
|
|
<img
|
|
src={channel.banner_url}
|
|
alt=""
|
|
className="absolute inset-0 h-full w-full object-cover opacity-40"
|
|
/>
|
|
) : null}
|
|
<div className="absolute inset-0 bg-[radial-gradient(circle_at_50%_35%,oklch(0.28_0.1_326),oklch(0.1_0.04_315)_60%)]" />
|
|
<div className="relative grid justify-items-center gap-3 px-6 text-center">
|
|
<span className="flex size-14 items-center justify-center rounded-md border border-white/20 bg-white/10">
|
|
<Radio className="size-6" />
|
|
</span>
|
|
<div>
|
|
<div className="text-xl font-semibold">
|
|
{channel.display_name} is offline
|
|
</div>
|
|
<p className="mt-1 text-sm text-white/70">
|
|
Recent recordings remain available below when the
|
|
creator publishes VODs.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ChatPanel({
|
|
channel,
|
|
authUser,
|
|
messages,
|
|
form,
|
|
onSubmit,
|
|
compact = false,
|
|
}: {
|
|
channel: ChannelDetail;
|
|
authUser: boolean;
|
|
messages: ChatMessage[];
|
|
form: ReturnType<typeof useForm<{ body: string }>>;
|
|
onSubmit: (event: FormEvent) => void;
|
|
compact?: boolean;
|
|
}) {
|
|
return (
|
|
<div className="flex min-h-0 w-full flex-col">
|
|
<div
|
|
className={cn(
|
|
'flex h-14 shrink-0 items-center justify-between gap-2 border-b px-4',
|
|
compact && 'hidden',
|
|
)}
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<MessageSquare className="size-5 text-primary" />
|
|
<h2 className="font-semibold">Live chat</h2>
|
|
</div>
|
|
<LiveState channel={channel} compact />
|
|
</div>
|
|
<div className="min-h-0 flex-1 space-y-3 overflow-y-auto p-4">
|
|
{messages.map((message) => (
|
|
<div key={message.id} className="text-sm">
|
|
<span className="font-medium">{message.user.name}</span>
|
|
<span className="ml-2 text-muted-foreground">
|
|
{message.body}
|
|
</span>
|
|
</div>
|
|
))}
|
|
{messages.length === 0 && (
|
|
<div className="rounded-md border border-dashed p-4 text-sm text-muted-foreground">
|
|
{channel.is_live
|
|
? 'No messages yet.'
|
|
: 'Chat appears when the channel is live.'}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="shrink-0 border-t p-4">
|
|
{authUser ? (
|
|
<form onSubmit={onSubmit} className="flex gap-2">
|
|
<Input
|
|
value={form.data.body}
|
|
onChange={(event) =>
|
|
form.setData('body', event.target.value)
|
|
}
|
|
placeholder={
|
|
channel.is_live
|
|
? 'Send a message'
|
|
: 'Channel is offline'
|
|
}
|
|
disabled={!channel.is_live}
|
|
/>
|
|
<Button
|
|
type="submit"
|
|
size="icon"
|
|
disabled={!channel.is_live || form.processing}
|
|
>
|
|
<Send className="size-4" />
|
|
</Button>
|
|
</form>
|
|
) : (
|
|
<Button asChild variant="outline" className="w-full">
|
|
<Link href={login()}>Log in to chat</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function VodCard({ vod }: { vod: VodSummary }) {
|
|
return (
|
|
<div className="overflow-hidden rounded-md border bg-card">
|
|
<div className="grid aspect-video place-items-center bg-zinc-950 text-white">
|
|
<Video className="size-6 opacity-70" />
|
|
</div>
|
|
<div className="grid gap-3 p-4">
|
|
<div>
|
|
<div className="line-clamp-2 font-medium">{vod.title}</div>
|
|
<div className="mt-1 text-sm text-muted-foreground">
|
|
Expires{' '}
|
|
{vod.expires_at
|
|
? new Date(vod.expires_at).toLocaleDateString()
|
|
: 'later'}
|
|
</div>
|
|
</div>
|
|
{vod.playback_url ? (
|
|
<Button asChild variant="outline" size="sm">
|
|
<a href={vod.playback_url}>Watch VOD</a>
|
|
</Button>
|
|
) : (
|
|
<div className="text-sm text-muted-foreground">
|
|
Processing recording
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function LiveState({
|
|
channel,
|
|
compact = false,
|
|
}: {
|
|
channel: ChannelDetail;
|
|
compact?: boolean;
|
|
}) {
|
|
if (channel.is_live) {
|
|
return (
|
|
<span
|
|
className={cn(
|
|
'bg-live inline-flex items-center gap-2 rounded-md px-2 py-1 text-xs font-semibold text-white',
|
|
compact && 'gap-1.5 px-1.5',
|
|
)}
|
|
>
|
|
<span className="live-pulse size-1.5 rounded-full bg-white" />
|
|
LIVE
|
|
</span>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<span className="rounded-md border px-2 py-1 text-xs text-muted-foreground">
|
|
Offline
|
|
</span>
|
|
);
|
|
}
|
|
|
|
function Avatar({ channel }: { channel: ChannelDetail }) {
|
|
return (
|
|
<div className="flex size-12 shrink-0 items-center justify-center overflow-hidden rounded-md bg-secondary text-secondary-foreground">
|
|
{channel.avatar_url ? (
|
|
<img
|
|
src={channel.avatar_url}
|
|
alt=""
|
|
className="h-full w-full object-cover"
|
|
/>
|
|
) : (
|
|
<Radio className="size-5" />
|
|
)}
|
|
</div>
|
|
);
|
|
}
|