6 Commits

20 changed files with 132 additions and 144 deletions

View File

@@ -63,7 +63,7 @@ export default function RootLayout() {
<Stack.Screen name="search" options={{ headerShown: false }} /> <Stack.Screen name="search" options={{ headerShown: false }} />
<Stack.Screen name="live" options={{ headerShown: false }} /> <Stack.Screen name="live" options={{ headerShown: false }} />
<Stack.Screen name="settings" options={{ headerShown: false }} /> <Stack.Screen name="settings" options={{ headerShown: false }} />
{/* <Stack.Screen name="favorites" options={{ headerShown: false }} /> */} <Stack.Screen name="favorites" options={{ headerShown: false }} />
<Stack.Screen name="+not-found" /> <Stack.Screen name="+not-found" />
</Stack> </Stack>
<Toast /> <Toast />

View File

@@ -77,17 +77,23 @@ export default function DetailScreen() {
<View style={styles.topContainer}> <View style={styles.topContainer}>
<Image source={{ uri: detail.poster }} style={styles.poster} /> <Image source={{ uri: detail.poster }} style={styles.poster} />
<View style={styles.infoContainer}> <View style={styles.infoContainer}>
<ThemedText style={styles.title} numberOfLines={1}> <View style={styles.titleContainer}>
{detail.title} <ThemedText style={styles.title} numberOfLines={1} ellipsizeMode="tail">
</ThemedText> {detail.title}
</ThemedText>
<StyledButton onPress={toggleFavorite} variant="ghost" style={styles.favoriteButton}>
<FontAwesome
name={isFavorited ? "heart" : "heart-o"}
size={24}
color={isFavorited ? "#feff5f" : "#ccc"}
/>
</StyledButton>
</View>
<View style={styles.metaContainer}> <View style={styles.metaContainer}>
<ThemedText style={styles.metaText}>{detail.year}</ThemedText> <ThemedText style={styles.metaText}>{detail.year}</ThemedText>
<ThemedText style={styles.metaText}>{detail.type_name}</ThemedText> <ThemedText style={styles.metaText}>{detail.type_name}</ThemedText>
</View> </View>
{/* <Pressable onPress={toggleFavorite} style={styles.favoriteButton}>
<FontAwesome name={isFavorited ? "star" : "star-o"} size={24} color={isFavorited ? "#FFD700" : "#ccc"} />
<ThemedText style={styles.favoriteButtonText}>{isFavorited ? "已收藏" : "收藏"}</ThemedText>
</Pressable> */}
<ScrollView style={styles.descriptionScrollView}> <ScrollView style={styles.descriptionScrollView}>
<ThemedText style={styles.description}>{detail.desc}</ThemedText> <ThemedText style={styles.description}>{detail.desc}</ThemedText>
</ScrollView> </ScrollView>
@@ -101,29 +107,32 @@ export default function DetailScreen() {
{!allSourcesLoaded && <ActivityIndicator style={{ marginLeft: 10 }} />} {!allSourcesLoaded && <ActivityIndicator style={{ marginLeft: 10 }} />}
</View> </View>
<View style={styles.sourceList}> <View style={styles.sourceList}>
{searchResults.map((item, index) => ( {searchResults.map((item, index) => {
<StyledButton const isSelected = detail?.source === item.source;
key={index} return (
onPress={() => setDetail(item)} <StyledButton
hasTVPreferredFocus={index === 0} key={index}
isSelected={detail?.source === item.source} onPress={() => setDetail(item)}
style={styles.sourceButton} hasTVPreferredFocus={index === 0}
> isSelected={isSelected}
<ThemedText style={styles.sourceButtonText}>{item.source_name}</ThemedText> style={styles.sourceButton}
{item.episodes.length > 1 && ( >
<View style={styles.badge}> <ThemedText style={styles.sourceButtonText}>{item.source_name}</ThemedText>
<Text style={styles.badgeText}> {item.episodes.length > 1 && (
{item.episodes.length > 99 ? "99+" : `${item.episodes.length}`} <View style={[styles.badge, isSelected && styles.selectedBadge]}>
</Text> <Text style={styles.badgeText}>
</View> {item.episodes.length > 99 ? "99+" : `${item.episodes.length}`}
)} </Text>
{item.resolution && ( </View>
<View style={[styles.badge, { backgroundColor: "#28a745" }]}> )}
<Text style={styles.badgeText}>{item.resolution}</Text> {item.resolution && (
</View> <View style={[styles.badge, { backgroundColor: "#666" }, isSelected && styles.selectedBadge]}>
)} <Text style={styles.badgeText}>{item.resolution}</Text>
</StyledButton> </View>
))} )}
</StyledButton>
);
})}
</View> </View>
</View> </View>
<View style={styles.episodesContainer}> <View style={styles.episodesContainer}>
@@ -167,11 +176,15 @@ const styles = StyleSheet.create({
marginLeft: 20, marginLeft: 20,
justifyContent: "flex-start", justifyContent: "flex-start",
}, },
titleContainer: {
flexDirection: "row",
alignItems: "center",
},
title: { title: {
paddingTop: 16,
fontSize: 28, fontSize: 28,
fontWeight: "bold", fontWeight: "bold",
marginBottom: 10, flexShrink: 1,
paddingTop: 20,
}, },
metaContainer: { metaContainer: {
flexDirection: "row", flexDirection: "row",
@@ -191,13 +204,9 @@ const styles = StyleSheet.create({
lineHeight: 22, lineHeight: 22,
}, },
favoriteButton: { favoriteButton: {
flexDirection: "row",
alignItems: "center",
marginTop: 10,
padding: 10, padding: 10,
backgroundColor: "rgba(255, 255, 255, 0.1)", marginLeft: 10,
borderRadius: 5, backgroundColor: "transparent",
alignSelf: "flex-start",
}, },
favoriteButtonText: { favoriteButtonText: {
marginLeft: 8, marginLeft: 8,
@@ -230,16 +239,23 @@ const styles = StyleSheet.create({
fontSize: 16, fontSize: 16,
}, },
badge: { badge: {
backgroundColor: "red", backgroundColor: "#666",
borderRadius: 10, borderRadius: 10,
paddingHorizontal: 6, paddingHorizontal: 6,
paddingVertical: 2, paddingVertical: 2,
marginLeft: 8, marginLeft: 8,
}, },
badgeText: { badgeText: {
color: "white", color: "#fff",
fontSize: 12, fontSize: 12,
fontWeight: "bold", fontWeight: "bold",
paddingBottom: 2.5,
},
selectedBadge: {
backgroundColor: "#4c4c4c",
},
selectedbadgeText: {
color: "#333",
}, },
episodesContainer: { episodesContainer: {
marginTop: 20, marginTop: 20,

View File

@@ -1,27 +1,19 @@
import React, { useEffect } from "react"; import React, { useEffect } from "react";
import { View, FlatList, StyleSheet, ActivityIndicator, Image, Pressable } from "react-native"; import { View, FlatList, StyleSheet, ActivityIndicator } from "react-native";
import { useRouter } from "expo-router";
import { ThemedView } from "@/components/ThemedView"; import { ThemedView } from "@/components/ThemedView";
import { ThemedText } from "@/components/ThemedText"; import { ThemedText } from "@/components/ThemedText";
import useFavoritesStore from "@/stores/favoritesStore"; import useFavoritesStore from "@/stores/favoritesStore";
import { Favorite } from "@/services/storage"; import { Favorite } from "@/services/storage";
import VideoCard from "@/components/VideoCard.tv";
import { api } from "@/services/api";
export default function FavoritesScreen() { export default function FavoritesScreen() {
const router = useRouter();
const { favorites, loading, error, fetchFavorites } = useFavoritesStore(); const { favorites, loading, error, fetchFavorites } = useFavoritesStore();
useEffect(() => { useEffect(() => {
fetchFavorites(); fetchFavorites();
}, [fetchFavorites]); }, [fetchFavorites]);
const handlePress = (favorite: Favorite & { key: string }) => {
const [source, id] = favorite.key.split("+");
router.push({
pathname: "/detail",
params: { q: favorite.title, source, id },
});
};
if (loading) { if (loading) {
return ( return (
<ThemedView style={styles.centered}> <ThemedView style={styles.centered}>
@@ -46,17 +38,22 @@ export default function FavoritesScreen() {
); );
} }
const renderItem = ({ item }: { item: Favorite & { key: string } }) => ( const renderItem = ({ item }: { item: Favorite & { key: string } }) => {
<Pressable onPress={() => handlePress(item)} style={styles.itemContainer}> const [source, id] = item.key.split("+");
<Image source={{ uri: item.poster }} style={styles.poster} /> return (
<View style={styles.infoContainer}> <VideoCard
<ThemedText style={styles.title} numberOfLines={1}> id={id}
{item.title} source={source}
</ThemedText> title={item.title}
<ThemedText style={styles.year}>{item.year}</ThemedText> sourceName={item.source_name}
</View> poster={item.cover}
</Pressable> year={item.year}
); api={api}
episodeIndex={1}
progress={0}
/>
);
};
return ( return (
<ThemedView style={styles.container}> <ThemedView style={styles.container}>
@@ -67,7 +64,7 @@ export default function FavoritesScreen() {
data={favorites} data={favorites}
renderItem={renderItem} renderItem={renderItem}
keyExtractor={(item) => item.key} keyExtractor={(item) => item.key}
numColumns={3} numColumns={5}
contentContainerStyle={styles.list} contentContainerStyle={styles.list}
/> />
</ThemedView> </ThemedView>
@@ -99,26 +96,4 @@ const styles = StyleSheet.create({
list: { list: {
padding: 10, padding: 10,
}, },
itemContainer: {
flex: 1,
margin: 10,
alignItems: "center",
},
poster: {
width: 120,
height: 180,
borderRadius: 8,
},
infoContainer: {
marginTop: 8,
alignItems: "center",
},
title: {
fontSize: 16,
fontWeight: "bold",
},
year: {
fontSize: 14,
color: "#888",
},
}); });

View File

@@ -124,9 +124,9 @@ export default function HomeScreen() {
</Pressable> </Pressable>
</View> </View>
<View style={styles.rightHeaderButtons}> <View style={styles.rightHeaderButtons}>
{/* <StyledButton style={styles.searchButton} onPress={() => router.push("/favorites")} variant="ghost"> <StyledButton style={styles.searchButton} onPress={() => router.push("/favorites")} variant="ghost">
<Heart color={colorScheme === "dark" ? "white" : "black"} size={24} /> <Heart color={colorScheme === "dark" ? "white" : "black"} size={24} />
</StyledButton> */} </StyledButton>
<StyledButton <StyledButton
style={styles.searchButton} style={styles.searchButton}
onPress={() => router.push({ pathname: "/search" })} onPress={() => router.push({ pathname: "/search" })}

View File

@@ -11,6 +11,7 @@ import { useRemoteControlStore } from "@/stores/remoteControlStore";
import { RemoteControlModal } from "@/components/RemoteControlModal"; import { RemoteControlModal } from "@/components/RemoteControlModal";
import { useSettingsStore } from "@/stores/settingsStore"; import { useSettingsStore } from "@/stores/settingsStore";
import { useRouter } from "expo-router"; import { useRouter } from "expo-router";
import { Colors } from "@/constants/Colors";
export default function SearchScreen() { export default function SearchScreen() {
const [keyword, setKeyword] = useState(""); const [keyword, setKeyword] = useState("");
@@ -101,7 +102,7 @@ export default function SearchScreen() {
{ {
backgroundColor: colorScheme === "dark" ? "#2c2c2e" : "#f0f0f0", backgroundColor: colorScheme === "dark" ? "#2c2c2e" : "#f0f0f0",
color: colorScheme === "dark" ? "white" : "black", color: colorScheme === "dark" ? "white" : "black",
borderColor: isInputFocused ? "#007bff" : "transparent", borderColor: isInputFocused ? Colors.dark.primary : "transparent",
}, },
]} ]}
placeholder="搜索电影、剧集..." placeholder="搜索电影、剧集..."

View File

@@ -6,18 +6,17 @@ import { ThemedView } from "@/components/ThemedView";
import { StyledButton } from "@/components/StyledButton"; import { StyledButton } from "@/components/StyledButton";
import { useThemeColor } from "@/hooks/useThemeColor"; import { useThemeColor } from "@/hooks/useThemeColor";
import { useSettingsStore } from "@/stores/settingsStore"; import { useSettingsStore } from "@/stores/settingsStore";
import useAuthStore from "@/stores/authStore"; // import useAuthStore from "@/stores/authStore";
import { useRemoteControlStore } from "@/stores/remoteControlStore"; import { useRemoteControlStore } from "@/stores/remoteControlStore";
import { APIConfigSection } from "@/components/settings/APIConfigSection"; import { APIConfigSection } from "@/components/settings/APIConfigSection";
import { LiveStreamSection } from "@/components/settings/LiveStreamSection"; import { LiveStreamSection } from "@/components/settings/LiveStreamSection";
import { RemoteInputSection } from "@/components/settings/RemoteInputSection"; import { RemoteInputSection } from "@/components/settings/RemoteInputSection";
import { VideoSourceSection } from "@/components/settings/VideoSourceSection"; // import { VideoSourceSection } from "@/components/settings/VideoSourceSection";
import Toast from "react-native-toast-message"; import Toast from "react-native-toast-message";
export default function SettingsScreen() { export default function SettingsScreen() {
const { loadSettings, saveSettings, setApiBaseUrl, setM3uUrl } = useSettingsStore(); const { loadSettings, saveSettings, setApiBaseUrl, setM3uUrl } = useSettingsStore();
const { lastMessage } = useRemoteControlStore(); const { lastMessage } = useRemoteControlStore();
const { isLoggedIn, logout } = useAuthStore();
const backgroundColor = useThemeColor({}, "background"); const backgroundColor = useThemeColor({}, "background");
const [hasChanges, setHasChanges] = useState(false); const [hasChanges, setHasChanges] = useState(false);

View File

@@ -168,7 +168,7 @@ const styles = StyleSheet.create({
position: "absolute", position: "absolute",
left: 0, left: 0,
height: 8, height: 8,
backgroundColor: "#ff0000", backgroundColor: "#fff",
borderRadius: 4, borderRadius: 4,
}, },
progressBarTouchable: { progressBarTouchable: {

View File

@@ -80,7 +80,7 @@ const styles = StyleSheet.create({
}, },
seekingBarFilled: { seekingBarFilled: {
height: "100%", height: "100%",
backgroundColor: "#ff0000", backgroundColor: "#fff",
borderRadius: 2.5, borderRadius: 2.5,
}, },
}); });

View File

@@ -72,7 +72,9 @@ const styles = StyleSheet.create({
sourceItem: { sourceItem: {
paddingVertical: 2, paddingVertical: 2,
margin: 4, margin: 4,
width: "31%", marginLeft: 10,
marginRight: 8,
width: "30%",
}, },
sourceItemText: { sourceItemText: {
fontSize: 14, fontSize: 14,

View File

@@ -29,11 +29,10 @@ export const StyledButton = forwardRef<View, StyledButtonProps>(
color: colors.text, color: colors.text,
}, },
selectedButton: { selectedButton: {
backgroundColor: colors.tint, backgroundColor: colors.primary,
}, },
focusedButton: { focusedButton: {
backgroundColor: colors.link, borderColor: colors.primary,
borderColor: colors.background,
}, },
selectedText: { selectedText: {
color: Colors.dark.text, color: Colors.dark.text,
@@ -47,11 +46,11 @@ export const StyledButton = forwardRef<View, StyledButtonProps>(
color: colors.text, color: colors.text,
}, },
focusedButton: { focusedButton: {
backgroundColor: colors.link, backgroundColor: colors.primary,
borderColor: colors.background, borderColor: colors.background,
}, },
selectedButton: { selectedButton: {
backgroundColor: "rgba(0, 122, 255, 0.3)", backgroundColor: colors.primary,
}, },
selectedText: { selectedText: {
color: colors.link, color: colors.link,
@@ -65,7 +64,8 @@ export const StyledButton = forwardRef<View, StyledButtonProps>(
color: colors.text, color: colors.text,
}, },
focusedButton: { focusedButton: {
backgroundColor: "rgba(119, 119, 119, 0.9)", backgroundColor: "rgba(119, 119, 119, 0.2)",
borderColor: colors.primary,
}, },
selectedButton: {}, selectedButton: {},
selectedText: {}, selectedText: {},

View File

@@ -6,6 +6,7 @@ import { Heart, Star, Play, Trash2 } from "lucide-react-native";
import { FavoriteManager, PlayRecordManager } from "@/services/storage"; import { FavoriteManager, PlayRecordManager } from "@/services/storage";
import { API, api } from "@/services/api"; import { API, api } from "@/services/api";
import { ThemedText } from "@/components/ThemedText"; import { ThemedText } from "@/components/ThemedText";
import { Colors } from "@/constants/Colors";
interface VideoCardProps { interface VideoCardProps {
id: string; id: string;
@@ -209,6 +210,9 @@ const styles = StyleSheet.create({
overlay: { overlay: {
...StyleSheet.absoluteFillObject, ...StyleSheet.absoluteFillObject,
backgroundColor: "rgba(0,0,0,0.3)", backgroundColor: "rgba(0,0,0,0.3)",
borderColor: Colors.dark.primary,
borderWidth: 2,
borderRadius: 8,
justifyContent: "center", justifyContent: "center",
alignItems: "center", alignItems: "center",
}, },
@@ -290,17 +294,17 @@ const styles = StyleSheet.create({
bottom: 0, bottom: 0,
left: 0, left: 0,
right: 0, right: 0,
height: 3, height: 4,
backgroundColor: "rgba(0, 0, 0, 0.5)", backgroundColor: "rgba(0, 0, 0, 0.8)",
}, },
progressBar: { progressBar: {
height: 3, height: 4,
backgroundColor: "#ff0000", backgroundColor: Colors.dark.primary,
}, },
continueWatchingBadge: { continueWatchingBadge: {
flexDirection: "row", flexDirection: "row",
alignItems: "center", alignItems: "center",
backgroundColor: "rgba(255, 0, 0, 0.8)", backgroundColor: Colors.dark.primary,
paddingHorizontal: 10, paddingHorizontal: 10,
paddingVertical: 5, paddingVertical: 5,
borderRadius: 5, borderRadius: 5,
@@ -312,7 +316,7 @@ const styles = StyleSheet.create({
fontWeight: "bold", fontWeight: "bold",
}, },
continueLabel: { continueLabel: {
color: "#ff5252", color: Colors.dark.primary,
fontSize: 12, fontSize: 12,
}, },
}); });

View File

@@ -199,17 +199,17 @@ const VideoLoadingAnimation: React.FC<VideoLoadingAnimationProps> = ({ showProgr
</View> </View>
</Animated.View> </Animated.View>
<View style={styles.loadingDots}> {/* <View style={styles.loadingDots}>
<Animated.View style={[styles.dot, animatedStyles.bounce[0]]} /> <Animated.View style={[styles.dot, animatedStyles.bounce[0]]} />
<Animated.View style={[styles.dot, animatedStyles.bounce[1]]} /> <Animated.View style={[styles.dot, animatedStyles.bounce[1]]} />
<Animated.View style={[styles.dot, animatedStyles.bounce[2]]} /> <Animated.View style={[styles.dot, animatedStyles.bounce[2]]} />
</View> </View> */}
{showProgressBar && ( {showProgressBar && (
<View style={styles.progressBar}> <View style={styles.progressBar}>
<Animated.View style={[styles.progressFill, animatedStyles.progress]}> <Animated.View style={[styles.progressFill, animatedStyles.progress]}>
<LinearGradient <LinearGradient
colors={["#4fd1c7", "#06b6d4", "#3b82f6", "#8b5cf6"]} colors={["#00bb5e", "#feff5f"]}
style={StyleSheet.absoluteFill} style={StyleSheet.absoluteFill}
start={{ x: 0, y: 0 }} start={{ x: 0, y: 0 }}
end={{ x: 1, y: 0 }} end={{ x: 1, y: 0 }}

View File

@@ -6,6 +6,7 @@ import { SettingsSection } from "./SettingsSection";
import { useSettingsStore } from "@/stores/settingsStore"; import { useSettingsStore } from "@/stores/settingsStore";
import { useRemoteControlStore } from "@/stores/remoteControlStore"; import { useRemoteControlStore } from "@/stores/remoteControlStore";
import { useButtonAnimation } from "@/hooks/useAnimation"; import { useButtonAnimation } from "@/hooks/useAnimation";
import { Colors } from "@/constants/Colors";
interface APIConfigSectionProps { interface APIConfigSectionProps {
onChanged: () => void; onChanged: () => void;
@@ -126,8 +127,8 @@ const styles = StyleSheet.create({
borderColor: "transparent", borderColor: "transparent",
}, },
inputFocused: { inputFocused: {
borderColor: "#007AFF", borderColor: Colors.dark.primary,
shadowColor: "#007AFF", shadowColor: Colors.dark.primary,
shadowOffset: { width: 0, height: 0 }, shadowOffset: { width: 0, height: 0 },
shadowOpacity: 0.8, shadowOpacity: 0.8,
shadowRadius: 10, shadowRadius: 10,

View File

@@ -6,6 +6,7 @@ import { SettingsSection } from "./SettingsSection";
import { useSettingsStore } from "@/stores/settingsStore"; import { useSettingsStore } from "@/stores/settingsStore";
import { useRemoteControlStore } from "@/stores/remoteControlStore"; import { useRemoteControlStore } from "@/stores/remoteControlStore";
import { useButtonAnimation } from "@/hooks/useAnimation"; import { useButtonAnimation } from "@/hooks/useAnimation";
import { Colors } from "@/constants/Colors";
interface LiveStreamSectionProps { interface LiveStreamSectionProps {
onChanged: () => void; onChanged: () => void;
@@ -120,8 +121,8 @@ const styles = StyleSheet.create({
borderColor: "transparent", borderColor: "transparent",
}, },
inputFocused: { inputFocused: {
borderColor: "#007AFF", borderColor: Colors.dark.primary,
shadowColor: "#007AFF", shadowColor: Colors.dark.primary,
shadowOffset: { width: 0, height: 0 }, shadowOffset: { width: 0, height: 0 },
shadowOpacity: 0.8, shadowOpacity: 0.8,
shadowRadius: 10, shadowRadius: 10,

View File

@@ -6,6 +6,7 @@ import { SettingsSection } from "./SettingsSection";
import { useSettingsStore } from "@/stores/settingsStore"; import { useSettingsStore } from "@/stores/settingsStore";
import { useRemoteControlStore } from "@/stores/remoteControlStore"; import { useRemoteControlStore } from "@/stores/remoteControlStore";
import { useButtonAnimation } from "@/hooks/useAnimation"; import { useButtonAnimation } from "@/hooks/useAnimation";
import { Colors } from "@/constants/Colors";
interface RemoteInputSectionProps { interface RemoteInputSectionProps {
onChanged: () => void; onChanged: () => void;
@@ -59,7 +60,7 @@ export const RemoteInputSection: React.FC<RemoteInputSectionProps> = ({ onChange
<Switch <Switch
value={remoteInputEnabled} value={remoteInputEnabled}
onValueChange={() => {}} // 禁用Switch的直接交互 onValueChange={() => {}} // 禁用Switch的直接交互
trackColor={{ false: "#767577", true: "#007AFF" }} trackColor={{ false: "#767577", true: Colors.dark.primary }}
thumbColor={remoteInputEnabled ? "#ffffff" : "#f4f3f4"} thumbColor={remoteInputEnabled ? "#ffffff" : "#f4f3f4"}
pointerEvents="none" pointerEvents="none"
/> />
@@ -70,7 +71,7 @@ export const RemoteInputSection: React.FC<RemoteInputSectionProps> = ({ onChange
<View style={styles.statusContainer}> <View style={styles.statusContainer}>
<View style={styles.statusItem}> <View style={styles.statusItem}>
<ThemedText style={styles.statusLabel}></ThemedText> <ThemedText style={styles.statusLabel}></ThemedText>
<ThemedText style={[styles.statusValue, { color: isServerRunning ? "#00FF00" : "#FF6B6B" }]}> <ThemedText style={[styles.statusValue, { color: isServerRunning ? Colors.dark.primary : "#FF6B6B" }]}>
{isServerRunning ? "运行中" : "已停止"} {isServerRunning ? "运行中" : "已停止"}
</ThemedText> </ThemedText>
</View> </View>

View File

@@ -1,6 +1,7 @@
import React, { useState } from "react"; import React, { useState } from "react";
import { StyleSheet, Pressable } from "react-native"; import { StyleSheet, Pressable } from "react-native";
import { ThemedView } from "@/components/ThemedView"; import { ThemedView } from "@/components/ThemedView";
import { Colors } from "@/constants/Colors";
interface SettingsSectionProps { interface SettingsSectionProps {
children: React.ReactNode; children: React.ReactNode;
@@ -9,12 +10,7 @@ interface SettingsSectionProps {
focusable?: boolean; focusable?: boolean;
} }
export const SettingsSection: React.FC<SettingsSectionProps> = ({ export const SettingsSection: React.FC<SettingsSectionProps> = ({ children, onFocus, onBlur, focusable = false }) => {
children,
onFocus,
onBlur,
focusable = false
}) => {
const [isFocused, setIsFocused] = useState(false); const [isFocused, setIsFocused] = useState(false);
const handleFocus = () => { const handleFocus = () => {
@@ -28,20 +24,12 @@ export const SettingsSection: React.FC<SettingsSectionProps> = ({
}; };
if (!focusable) { if (!focusable) {
return ( return <ThemedView style={styles.section}>{children}</ThemedView>;
<ThemedView style={styles.section}>
{children}
</ThemedView>
);
} }
return ( return (
<ThemedView style={[styles.section, isFocused && styles.sectionFocused]}> <ThemedView style={[styles.section, isFocused && styles.sectionFocused]}>
<Pressable <Pressable style={styles.sectionPressable} onFocus={handleFocus} onBlur={handleBlur}>
style={styles.sectionPressable}
onFocus={handleFocus}
onBlur={handleBlur}
>
{children} {children}
</Pressable> </Pressable>
</ThemedView> </ThemedView>
@@ -57,10 +45,10 @@ const styles = StyleSheet.create({
borderColor: "#333", borderColor: "#333",
}, },
sectionFocused: { sectionFocused: {
borderColor: "#007AFF", borderColor: Colors.dark.primary,
backgroundColor: "#007AFF10", backgroundColor: "#007AFF10",
}, },
sectionPressable: { sectionPressable: {
width: "100%", width: "100%",
}, },
}); });

View File

@@ -26,5 +26,6 @@ export const Colors = {
tabIconSelected: tintColorDark, tabIconSelected: tintColorDark,
link: "#0a7ea4", link: "#0a7ea4",
border: "#333", border: "#333",
primary: "#00bb5e",
}, },
}; };

View File

@@ -2,7 +2,7 @@
"name": "OrionTV", "name": "OrionTV",
"private": true, "private": true,
"main": "expo-router/entry", "main": "expo-router/entry",
"version": "1.2.3", "version": "1.2.5",
"scripts": { "scripts": {
"start": "EXPO_USE_METRO_WORKSPACE_ROOT=1 expo start", "start": "EXPO_USE_METRO_WORKSPACE_ROOT=1 expo start",
"start-tv": "EXPO_TV=1 EXPO_USE_METRO_WORKSPACE_ROOT=1 expo start", "start-tv": "EXPO_TV=1 EXPO_USE_METRO_WORKSPACE_ROOT=1 expo start",

View File

@@ -43,7 +43,6 @@ export interface SearchResult {
export interface Favorite { export interface Favorite {
cover: string; cover: string;
title: string; title: string;
poster: string;
source_name: string; source_name: string;
total_episodes: number; total_episodes: number;
search_title: string; search_title: string;

View File

@@ -133,11 +133,11 @@ const useDetailStore = create<DetailState>((set, get) => ({
set({ error: "未找到任何播放源" }); set({ error: "未找到任何播放源" });
} }
// if (get().detail) { if (get().detail) {
// const { source, id } = get().detail!; const { source, id } = get().detail!;
// const isFavorited = await FavoriteManager.isFavorited(source, id.toString()); const isFavorited = await FavoriteManager.isFavorited(source, id.toString());
// set({ isFavorited }); set({ isFavorited });
// } }
} catch (e) { } catch (e) {
if ((e as Error).name !== "AbortError") { if ((e as Error).name !== "AbortError") {
set({ error: e instanceof Error ? e.message : "获取数据失败" }); set({ error: e instanceof Error ? e.message : "获取数据失败" });
@@ -151,9 +151,9 @@ const useDetailStore = create<DetailState>((set, get) => ({
setDetail: async (detail) => { setDetail: async (detail) => {
set({ detail }); set({ detail });
// const { source, id } = detail; const { source, id } = detail;
// const isFavorited = await FavoriteManager.isFavorited(source, id.toString()); const isFavorited = await FavoriteManager.isFavorited(source, id.toString());
// set({ isFavorited }); set({ isFavorited });
}, },
abort: () => { abort: () => {