mirror of
https://github.com/zimplexing/OrionTV.git
synced 2026-02-04 03:36:29 +08:00
- Changed the play time property from 'play_time' to 'time' in HomeScreen. - Removed unused player control functions from PlayScreen. - Added PlayerSettings interface and implemented PlayerSettingsManager for local storage of player settings. - Refactored PlayRecordManager to merge API records with local player settings. - Updated authentication logic in authStore to handle optional username parameter in login function. - Cleaned up and optimized imports across various components.
134 lines
4.4 KiB
TypeScript
134 lines
4.4 KiB
TypeScript
import React, { useEffect, useRef } from "react";
|
|
import { StyleSheet, TouchableOpacity, ActivityIndicator, BackHandler } from "react-native";
|
|
import { useLocalSearchParams, useRouter } from "expo-router";
|
|
import { Video, ResizeMode } from "expo-av";
|
|
import { useKeepAwake } from "expo-keep-awake";
|
|
import { ThemedView } from "@/components/ThemedView";
|
|
import { PlayerControls } from "@/components/PlayerControls";
|
|
import { EpisodeSelectionModal } from "@/components/EpisodeSelectionModal";
|
|
import { SourceSelectionModal } from "@/components/SourceSelectionModal";
|
|
import { SeekingBar } from "@/components/SeekingBar";
|
|
import { NextEpisodeOverlay } from "@/components/NextEpisodeOverlay";
|
|
import { LoadingOverlay } from "@/components/LoadingOverlay";
|
|
import useDetailStore from "@/stores/detailStore";
|
|
import { useTVRemoteHandler } from "@/hooks/useTVRemoteHandler";
|
|
import Toast from "react-native-toast-message";
|
|
import usePlayerStore from "@/stores/playerStore";
|
|
|
|
export default function PlayScreen() {
|
|
const videoRef = useRef<Video>(null);
|
|
const router = useRouter();
|
|
useKeepAwake();
|
|
const { episodeIndex: episodeIndexStr } = useLocalSearchParams<{
|
|
episodeIndex: string;
|
|
}>();
|
|
const episodeIndex = parseInt(episodeIndexStr || "0", 10);
|
|
|
|
const { detail } = useDetailStore();
|
|
const {
|
|
isLoading,
|
|
showControls,
|
|
showNextEpisodeOverlay,
|
|
initialPosition,
|
|
introEndTime,
|
|
setVideoRef,
|
|
handlePlaybackStatusUpdate,
|
|
setShowControls,
|
|
setShowNextEpisodeOverlay,
|
|
reset,
|
|
} = usePlayerStore();
|
|
|
|
useEffect(() => {
|
|
setVideoRef(videoRef);
|
|
// The detail is already in the detailStore, no need to load it again.
|
|
// We just need to set the current episode in the player store.
|
|
usePlayerStore.setState({
|
|
currentEpisodeIndex: episodeIndex,
|
|
episodes: detail?.episodes.map((ep, index) => ({ url: ep, title: `第 ${index + 1} 集` })) || [],
|
|
});
|
|
|
|
return () => {
|
|
reset(); // Reset state when component unmounts
|
|
};
|
|
}, [episodeIndex, detail, setVideoRef, reset]);
|
|
|
|
const { onScreenPress } = useTVRemoteHandler();
|
|
|
|
useEffect(() => {
|
|
const backAction = () => {
|
|
if (showControls) {
|
|
setShowControls(false);
|
|
return true;
|
|
}
|
|
router.back();
|
|
return true;
|
|
};
|
|
|
|
const backHandler = BackHandler.addEventListener("hardwareBackPress", backAction);
|
|
|
|
return () => backHandler.remove();
|
|
}, [showControls, setShowControls, router]);
|
|
|
|
if (!detail) {
|
|
return (
|
|
<ThemedView style={[styles.container, styles.centered]}>
|
|
<ActivityIndicator size="large" color="#fff" />
|
|
</ThemedView>
|
|
);
|
|
}
|
|
|
|
const currentEpisode = detail.episodes[episodeIndex];
|
|
|
|
return (
|
|
<ThemedView focusable style={styles.container}>
|
|
<TouchableOpacity activeOpacity={1} style={styles.videoContainer} onPress={onScreenPress}>
|
|
<Video
|
|
ref={videoRef}
|
|
style={styles.videoPlayer}
|
|
source={{ uri: currentEpisode }}
|
|
usePoster
|
|
posterSource={{ uri: detail?.poster ?? "" }}
|
|
resizeMode={ResizeMode.CONTAIN}
|
|
onPlaybackStatusUpdate={handlePlaybackStatusUpdate}
|
|
onLoad={() => {
|
|
const jumpPosition = initialPosition || introEndTime || 0;
|
|
if (jumpPosition > 0) {
|
|
videoRef.current?.setPositionAsync(jumpPosition);
|
|
}
|
|
usePlayerStore.setState({ isLoading: false });
|
|
}}
|
|
onError={() => {
|
|
usePlayerStore.setState({ isLoading: false });
|
|
Toast.show({ type: "error", text1: "播放失败,请更换源后重试" });
|
|
}}
|
|
onLoadStart={() => usePlayerStore.setState({ isLoading: true })}
|
|
useNativeControls={false}
|
|
shouldPlay
|
|
/>
|
|
|
|
{showControls && <PlayerControls showControls={showControls} setShowControls={setShowControls} />}
|
|
|
|
<SeekingBar />
|
|
|
|
<LoadingOverlay visible={isLoading} />
|
|
|
|
<NextEpisodeOverlay visible={showNextEpisodeOverlay} onCancel={() => setShowNextEpisodeOverlay(false)} />
|
|
</TouchableOpacity>
|
|
|
|
<EpisodeSelectionModal />
|
|
<SourceSelectionModal />
|
|
</ThemedView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: { flex: 1, backgroundColor: "black" },
|
|
centered: { flex: 1, justifyContent: "center", alignItems: "center" },
|
|
videoContainer: {
|
|
...StyleSheet.absoluteFillObject,
|
|
},
|
|
videoPlayer: {
|
|
...StyleSheet.absoluteFillObject,
|
|
},
|
|
});
|