Sergei 7cb07c09ce Major UI/UX updates: Voice, Subscription, Beneficiaries, Profile
- Voice tab: simplified interface, voice picker improvements
- Subscription: Stripe integration, purchase flow updates
- Beneficiaries: dashboard, sharing, improved management
- Profile: drawer, edit, help, privacy sections
- Theme: expanded constants, new colors
- New components: MockDashboard, ProfileDrawer, Toast
- Backend: Stripe routes additions
- Auth: activate, add-loved-one, purchase screens
2025-12-29 15:36:44 -08:00

339 lines
9.2 KiB
TypeScript

import React, { useState } from 'react';
import {
View,
Text,
StyleSheet,
TouchableOpacity,
TextInput,
ScrollView,
Image,
Alert,
KeyboardAvoidingView,
Platform,
} from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import { router } from 'expo-router';
import { Ionicons } from '@expo/vector-icons';
import * as ImagePicker from 'expo-image-picker';
import { AppColors, Spacing, BorderRadius, FontSizes, FontWeights } from '@/constants/theme';
import { useBeneficiary } from '@/contexts/BeneficiaryContext';
import { Button } from '@/components/ui/Button';
export default function AddBeneficiaryScreen() {
const { addLocalBeneficiary } = useBeneficiary();
const [name, setName] = useState('');
const [address, setAddress] = useState('');
const [avatarUri, setAvatarUri] = useState<string | null>(null);
const [isLoading, setIsLoading] = useState(false);
const handlePickAvatar = async () => {
const { status } = await ImagePicker.requestMediaLibraryPermissionsAsync();
if (status !== 'granted') {
Alert.alert('Permission needed', 'Please allow access to your photo library.');
return;
}
const result = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ['images'],
allowsEditing: true,
aspect: [1, 1],
quality: 0.5,
});
if (!result.canceled && result.assets[0]) {
setAvatarUri(result.assets[0].uri);
}
};
const handleTakePhoto = async () => {
const { status } = await ImagePicker.requestCameraPermissionsAsync();
if (status !== 'granted') {
Alert.alert('Permission needed', 'Please allow access to your camera.');
return;
}
const result = await ImagePicker.launchCameraAsync({
allowsEditing: true,
aspect: [1, 1],
quality: 0.5,
});
if (!result.canceled && result.assets[0]) {
setAvatarUri(result.assets[0].uri);
}
};
const handleAvatarPress = () => {
Alert.alert(
'Add Photo',
'Choose how to add a photo',
[
{ text: 'Take Photo', onPress: handleTakePhoto },
{ text: 'Choose from Library', onPress: handlePickAvatar },
{ text: 'Cancel', style: 'cancel' },
]
);
};
const handleSave = async () => {
if (!name.trim()) {
Alert.alert('Name Required', 'Please enter a name for your loved one.');
return;
}
setIsLoading(true);
try {
const newBeneficiary = await addLocalBeneficiary({
name: name.trim(),
address: address.trim() || undefined,
avatar: avatarUri || undefined,
});
// Navigate to purchase flow for this beneficiary
router.replace({
pathname: '/(auth)/purchase',
params: {
lovedOneName: name.trim(),
beneficiaryId: newBeneficiary.id.toString(),
},
});
} catch (error) {
Alert.alert('Error', 'Failed to add beneficiary. Please try again.');
} finally {
setIsLoading(false);
}
};
const nameInitial = name.trim() ? name.trim().charAt(0).toUpperCase() : '+';
return (
<SafeAreaView style={styles.container} edges={['top']}>
{/* Header */}
<View style={styles.header}>
<TouchableOpacity style={styles.backButton} onPress={() => router.back()}>
<Ionicons name="close" size={24} color={AppColors.textPrimary} />
</TouchableOpacity>
<Text style={styles.headerTitle}>Add Loved One</Text>
<View style={styles.placeholder} />
</View>
<KeyboardAvoidingView
style={styles.keyboardView}
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
>
<ScrollView
style={styles.content}
contentContainerStyle={styles.contentContainer}
keyboardShouldPersistTaps="handled"
showsVerticalScrollIndicator={false}
>
{/* Avatar Section */}
<TouchableOpacity style={styles.avatarSection} onPress={handleAvatarPress}>
<View style={styles.avatarContainer}>
{avatarUri ? (
<Image source={{ uri: avatarUri }} style={styles.avatarImage} />
) : (
<Text style={styles.avatarText}>{nameInitial}</Text>
)}
<View style={styles.avatarEditBadge}>
<Ionicons name="camera" size={18} color={AppColors.white} />
</View>
</View>
<Text style={styles.avatarHint}>Tap to add photo</Text>
</TouchableOpacity>
{/* Form */}
<View style={styles.form}>
<View style={styles.inputGroup}>
<Text style={styles.inputLabel}>Name *</Text>
<View style={styles.inputContainer}>
<Ionicons name="person-outline" size={20} color={AppColors.textMuted} />
<TextInput
style={styles.input}
value={name}
onChangeText={setName}
placeholder="e.g., Grandma Julia"
placeholderTextColor={AppColors.textMuted}
autoCapitalize="words"
autoCorrect={false}
/>
</View>
</View>
<View style={styles.inputGroup}>
<Text style={styles.inputLabel}>Address (optional)</Text>
<View style={styles.inputContainer}>
<Ionicons name="location-outline" size={20} color={AppColors.textMuted} />
<TextInput
style={styles.input}
value={address}
onChangeText={setAddress}
placeholder="123 Main St, City, State"
placeholderTextColor={AppColors.textMuted}
/>
</View>
</View>
</View>
{/* Info Box */}
<View style={styles.infoBox}>
<Ionicons name="information-circle" size={24} color={AppColors.primary} />
<View style={styles.infoTextContainer}>
<Text style={styles.infoTitle}>Next Step</Text>
<Text style={styles.infoText}>
After adding, you can activate sensors to start monitoring wellness data.
</Text>
</View>
</View>
</ScrollView>
{/* Save Button */}
<View style={styles.footer}>
<Button
title="Add Loved One"
onPress={handleSave}
loading={isLoading}
disabled={!name.trim()}
fullWidth
size="lg"
/>
</View>
</KeyboardAvoidingView>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: AppColors.background,
},
header: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
paddingHorizontal: Spacing.md,
paddingVertical: Spacing.sm,
borderBottomWidth: 1,
borderBottomColor: AppColors.border,
},
backButton: {
padding: Spacing.xs,
},
headerTitle: {
fontSize: FontSizes.lg,
fontWeight: FontWeights.semibold,
color: AppColors.textPrimary,
},
placeholder: {
width: 40,
},
keyboardView: {
flex: 1,
},
content: {
flex: 1,
},
contentContainer: {
padding: Spacing.lg,
},
avatarSection: {
alignItems: 'center',
marginBottom: Spacing.xl,
},
avatarContainer: {
width: 120,
height: 120,
borderRadius: 60,
backgroundColor: AppColors.primaryLight,
justifyContent: 'center',
alignItems: 'center',
position: 'relative',
},
avatarImage: {
width: 120,
height: 120,
borderRadius: 60,
},
avatarText: {
fontSize: FontSizes['3xl'],
fontWeight: FontWeights.bold,
color: AppColors.primary,
},
avatarEditBadge: {
position: 'absolute',
bottom: 4,
right: 4,
width: 36,
height: 36,
borderRadius: 18,
backgroundColor: AppColors.primary,
justifyContent: 'center',
alignItems: 'center',
borderWidth: 3,
borderColor: AppColors.background,
},
avatarHint: {
fontSize: FontSizes.sm,
color: AppColors.textMuted,
marginTop: Spacing.sm,
},
form: {
marginBottom: Spacing.xl,
},
inputGroup: {
marginBottom: Spacing.lg,
},
inputLabel: {
fontSize: FontSizes.sm,
fontWeight: FontWeights.medium,
color: AppColors.textSecondary,
marginBottom: Spacing.sm,
},
inputContainer: {
flexDirection: 'row',
alignItems: 'center',
backgroundColor: AppColors.surface,
borderRadius: BorderRadius.lg,
paddingHorizontal: Spacing.md,
borderWidth: 1,
borderColor: AppColors.border,
},
input: {
flex: 1,
fontSize: FontSizes.base,
color: AppColors.textPrimary,
paddingVertical: Spacing.md,
marginLeft: Spacing.sm,
},
infoBox: {
flexDirection: 'row',
backgroundColor: '#EFF6FF',
borderRadius: BorderRadius.lg,
padding: Spacing.md,
gap: Spacing.md,
},
infoTextContainer: {
flex: 1,
},
infoTitle: {
fontSize: FontSizes.sm,
fontWeight: FontWeights.semibold,
color: AppColors.primary,
marginBottom: Spacing.xs,
},
infoText: {
fontSize: FontSizes.sm,
color: AppColors.textSecondary,
lineHeight: 20,
},
footer: {
padding: Spacing.lg,
borderTopWidth: 1,
borderTopColor: AppColors.border,
backgroundColor: AppColors.background,
},
});