import React from 'react';
import { View, StyleSheet, TouchableOpacity } from 'react-native';
import { Ionicons } from '@expo/vector-icons';
import { LinearGradient } from 'expo-linear-gradient';
import { ThemedText } from '@/components/themed-text';
import { useAuthGuard } from '@/hooks/use-auth-guard';
interface AuthPromptProps {
variant?: 'card' | 'fullscreen' | 'inline';
title?: string;
subtitle?: string;
actionLabel?: string;
showIcon?: boolean;
iconName?: keyof typeof Ionicons.glyphMap;
gradientColors?: [string, string, ...string[]];
onLoginPress?: () => void;
}
/**
* 认证提示组件
* 为未登录用户提供清晰的登录引导
*/
export function AuthPrompt({
variant = 'card',
title = '需要登录',
subtitle = '登录后即可使用所有功能',
actionLabel = '立即登录',
showIcon = true,
iconName = 'log-in-outline',
gradientColors = ['#007AFF', '#0056D2'] as [string, string],
onLoginPress,
}: AuthPromptProps) {
const { requireAuth } = useAuthGuard();
const handleLogin = () => {
if (onLoginPress) {
onLoginPress();
} else {
requireAuth();
}
};
if (variant === 'fullscreen') {
return (
{showIcon && (
)}
{title}
{subtitle}
{actionLabel}
);
}
if (variant === 'card') {
return (
{showIcon && (
)}
{title}
{subtitle}
{actionLabel}
);
}
return (
{title}
{actionLabel}
);
}
const styles = StyleSheet.create({
fullscreenContainer: {
flex: 1,
backgroundColor: '#050505',
},
fullscreenContent: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
paddingHorizontal: 40,
},
iconContainer: {
width: 100,
height: 100,
borderRadius: 50,
backgroundColor: 'rgba(0, 122, 255, 0.1)',
alignItems: 'center',
justifyContent: 'center',
marginBottom: 32,
},
title: {
fontSize: 28,
fontWeight: '700',
color: '#ffffff',
marginBottom: 16,
textAlign: 'center',
},
subtitle: {
fontSize: 16,
color: 'rgba(255, 255, 255, 0.6)',
textAlign: 'center',
lineHeight: 24,
marginBottom: 48,
},
actionButton: {
width: '100%',
height: 56,
borderRadius: 16,
overflow: 'hidden',
elevation: 8,
},
cardContainer: {
backgroundColor: 'rgba(255, 255, 255, 0.05)',
borderRadius: 20,
padding: 24,
alignItems: 'center',
borderWidth: 1,
borderColor: 'rgba(255, 255, 255, 0.1)',
margin: 20,
},
cardButton: {
width: '100%',
height: 48,
borderRadius: 12,
overflow: 'hidden',
},
buttonGradient: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
height: '100%',
},
buttonIcon: {
marginRight: 8,
},
buttonText: {
color: '#fff',
fontSize: 17,
fontWeight: '700',
},
inlineContainer: {
flexDirection: 'row',
alignItems: 'center',
paddingHorizontal: 16,
paddingVertical: 12,
backgroundColor: 'rgba(255, 255, 255, 0.05)',
borderRadius: 12,
},
inlineTitle: {
flex: 1,
fontSize: 14,
color: '#ffffff',
marginRight: 12,
},
inlineButton: {
paddingHorizontal: 16,
paddingVertical: 8,
backgroundColor: '#007AFF',
borderRadius: 8,
},
inlineButtonText: {
color: '#fff',
fontSize: 14,
fontWeight: '600',
},
});