mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-12 23:33:43 +08:00
179 lines
5.8 KiB
TypeScript
179 lines
5.8 KiB
TypeScript
'use client';
|
|
|
|
import { Suspense, useEffect } from 'react';
|
|
import { useSearchParams, useRouter } from 'next/navigation';
|
|
import { Button } from '@/components/ui/Button';
|
|
import { VideoPlayer } from '@/components/player/VideoPlayer';
|
|
import { VideoMetadata } from '@/components/player/VideoMetadata';
|
|
import { EpisodeList } from '@/components/player/EpisodeList';
|
|
import { PlayerError } from '@/components/player/PlayerError';
|
|
import { useVideoPlayer } from '@/lib/hooks/useVideoPlayer';
|
|
import { useHistoryStore } from '@/lib/store/history-store';
|
|
import { WatchHistorySidebar } from '@/components/history/WatchHistorySidebar';
|
|
import { FavoritesSidebar } from '@/components/favorites/FavoritesSidebar';
|
|
import { FavoriteButton } from '@/components/favorites/FavoriteButton';
|
|
import { PlayerNavbar } from '@/components/player/PlayerNavbar';
|
|
import Image from 'next/image';
|
|
|
|
function PlayerContent() {
|
|
const searchParams = useSearchParams();
|
|
const router = useRouter();
|
|
const { addToHistory } = useHistoryStore();
|
|
|
|
const videoId = searchParams.get('id');
|
|
const source = searchParams.get('source');
|
|
const title = searchParams.get('title');
|
|
const episodeParam = searchParams.get('episode');
|
|
|
|
// Redirect if no video ID or source
|
|
if (!videoId || !source) {
|
|
router.push('/');
|
|
return null;
|
|
}
|
|
|
|
const {
|
|
videoData,
|
|
loading,
|
|
videoError,
|
|
currentEpisode,
|
|
playUrl,
|
|
setCurrentEpisode,
|
|
setPlayUrl,
|
|
setVideoError,
|
|
fetchVideoDetails,
|
|
} = useVideoPlayer(videoId, source, episodeParam);
|
|
|
|
// Add initial history entry when video data is loaded
|
|
useEffect(() => {
|
|
if (videoData && playUrl && videoId) {
|
|
// Map episodes to include index
|
|
const mappedEpisodes = videoData.episodes?.map((ep, idx) => ({
|
|
name: ep.name || `第${idx + 1}集`,
|
|
url: ep.url,
|
|
index: idx,
|
|
})) || [];
|
|
|
|
addToHistory(
|
|
videoId,
|
|
videoData.vod_name || title || '未知视频',
|
|
playUrl,
|
|
currentEpisode,
|
|
source,
|
|
0, // Initial playback position
|
|
0, // Will be updated by VideoPlayer
|
|
videoData.vod_pic,
|
|
mappedEpisodes
|
|
);
|
|
}
|
|
}, [videoData, playUrl, videoId, currentEpisode, source, title, addToHistory]);
|
|
|
|
const handleEpisodeClick = (episode: any, index: number) => {
|
|
setCurrentEpisode(index);
|
|
setPlayUrl(episode.url);
|
|
setVideoError('');
|
|
|
|
// Update URL to reflect current episode
|
|
const params = new URLSearchParams(searchParams.toString());
|
|
params.set('episode', index.toString());
|
|
router.replace(`/player?${params.toString()}`, { scroll: false });
|
|
};
|
|
|
|
// Handle auto-next episode
|
|
const handleNextEpisode = () => {
|
|
const episodes = videoData?.episodes;
|
|
if (!episodes || currentEpisode >= episodes.length - 1) return;
|
|
|
|
const nextIndex = currentEpisode + 1;
|
|
const nextEpisode = episodes[nextIndex];
|
|
if (nextEpisode) {
|
|
handleEpisodeClick(nextEpisode, nextIndex);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-[var(--bg-color)]">
|
|
{/* Glass Navbar */}
|
|
<PlayerNavbar />
|
|
|
|
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pb-20">
|
|
{loading ? (
|
|
<div className="flex flex-col items-center justify-center py-20">
|
|
<div className="animate-spin rounded-full h-16 w-16 border-4 border-[var(--accent-color)] border-t-transparent mb-4"></div>
|
|
<p className="text-[var(--text-color-secondary)]">正在加载视频详情...</p>
|
|
</div>
|
|
) : videoError && !videoData ? (
|
|
<PlayerError
|
|
error={videoError}
|
|
onBack={() => router.back()}
|
|
onRetry={fetchVideoDetails}
|
|
/>
|
|
) : (
|
|
<div className="grid lg:grid-cols-3 gap-6">
|
|
{/* Video Player Section */}
|
|
<div className="lg:col-span-2 space-y-6">
|
|
<VideoPlayer
|
|
playUrl={playUrl}
|
|
videoId={videoId || undefined}
|
|
currentEpisode={currentEpisode}
|
|
onBack={() => router.back()}
|
|
totalEpisodes={videoData?.episodes?.length || 1}
|
|
onNextEpisode={handleNextEpisode}
|
|
/>
|
|
<VideoMetadata
|
|
videoData={videoData}
|
|
source={source}
|
|
title={title}
|
|
/>
|
|
|
|
{/* Favorite Button for current video */}
|
|
{videoData && videoId && (
|
|
<div className="flex items-center gap-3 mt-4">
|
|
<FavoriteButton
|
|
videoId={videoId}
|
|
source={source}
|
|
title={videoData.vod_name || title || '未知视频'}
|
|
poster={videoData.vod_pic}
|
|
type={videoData.type_name}
|
|
year={videoData.vod_year}
|
|
size={20}
|
|
/>
|
|
<span className="text-sm text-[var(--text-color-secondary)]">
|
|
收藏这个视频
|
|
</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{/* Episodes Sidebar */}
|
|
<div className="lg:col-span-1">
|
|
<EpisodeList
|
|
episodes={videoData?.episodes || null}
|
|
currentEpisode={currentEpisode}
|
|
onEpisodeClick={handleEpisodeClick}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</main>
|
|
|
|
{/* Favorites Sidebar - Left */}
|
|
<FavoritesSidebar />
|
|
|
|
{/* Watch History Sidebar - Right */}
|
|
<WatchHistorySidebar />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function PlayerPage() {
|
|
return (
|
|
<Suspense fallback={
|
|
<div className="min-h-screen flex items-center justify-center bg-[var(--bg-color)]">
|
|
<div className="animate-spin rounded-full h-16 w-16 border-4 border-[var(--accent-color)] border-t-transparent"></div>
|
|
</div>
|
|
}>
|
|
<PlayerContent />
|
|
</Suspense>
|
|
);
|
|
}
|