- Fix race condition where connect() was called before beneficiaryData loaded - Add connectCalledRef to prevent duplicate connect calls - Wait for beneficiaryData.deploymentId before initiating call - Add 5s timeout fallback for edge cases (API failure/no beneficiaries) - Hide Debug tab, show only Julia tab in navigation - Add Android keyboard layout fix for password fields - Bump version to 1.0.5 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
150 lines
3.5 KiB
TypeScript
150 lines
3.5 KiB
TypeScript
import React, { useState } from 'react';
|
|
import {
|
|
View,
|
|
TextInput,
|
|
Text,
|
|
StyleSheet,
|
|
TouchableOpacity,
|
|
Platform,
|
|
type TextInputProps,
|
|
} from 'react-native';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import { AppColors, BorderRadius, FontSizes, Spacing } from '@/constants/theme';
|
|
|
|
interface InputProps extends TextInputProps {
|
|
label?: string;
|
|
error?: string;
|
|
leftIcon?: keyof typeof Ionicons.glyphMap;
|
|
rightIcon?: keyof typeof Ionicons.glyphMap;
|
|
onRightIconPress?: () => void;
|
|
}
|
|
|
|
export function Input({
|
|
label,
|
|
error,
|
|
leftIcon,
|
|
rightIcon,
|
|
onRightIconPress,
|
|
secureTextEntry,
|
|
style,
|
|
...props
|
|
}: InputProps) {
|
|
const [isPasswordVisible, setIsPasswordVisible] = useState(false);
|
|
const isPassword = secureTextEntry !== undefined;
|
|
|
|
const handleTogglePassword = () => {
|
|
setIsPasswordVisible(!isPasswordVisible);
|
|
};
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
{label && <Text style={styles.label}>{label}</Text>}
|
|
|
|
<View style={[styles.inputContainer, error && styles.inputError]}>
|
|
{leftIcon && (
|
|
<Ionicons
|
|
name={leftIcon}
|
|
size={20}
|
|
color={AppColors.textMuted}
|
|
style={styles.leftIcon}
|
|
/>
|
|
)}
|
|
|
|
<TextInput
|
|
style={[
|
|
styles.input,
|
|
leftIcon && styles.inputWithLeftIcon,
|
|
(isPassword || rightIcon) && styles.inputWithRightIcon,
|
|
style,
|
|
]}
|
|
placeholderTextColor={AppColors.textMuted}
|
|
secureTextEntry={isPassword && !isPasswordVisible}
|
|
{...props}
|
|
/>
|
|
|
|
{isPassword && (
|
|
<TouchableOpacity
|
|
onPress={handleTogglePassword}
|
|
style={styles.rightIconButton}
|
|
>
|
|
<Ionicons
|
|
name={isPasswordVisible ? 'eye-off-outline' : 'eye-outline'}
|
|
size={20}
|
|
color={AppColors.textMuted}
|
|
/>
|
|
</TouchableOpacity>
|
|
)}
|
|
|
|
{!isPassword && rightIcon && (
|
|
<TouchableOpacity
|
|
onPress={onRightIconPress}
|
|
style={styles.rightIconButton}
|
|
disabled={!onRightIconPress}
|
|
>
|
|
<Ionicons
|
|
name={rightIcon}
|
|
size={20}
|
|
color={AppColors.textMuted}
|
|
/>
|
|
</TouchableOpacity>
|
|
)}
|
|
</View>
|
|
|
|
{error && <Text style={styles.errorText}>{error}</Text>}
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
marginBottom: Spacing.md,
|
|
},
|
|
label: {
|
|
fontSize: FontSizes.sm,
|
|
fontWeight: '500',
|
|
color: AppColors.textPrimary,
|
|
marginBottom: Spacing.xs,
|
|
},
|
|
inputContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
backgroundColor: AppColors.surface,
|
|
borderRadius: BorderRadius.lg,
|
|
borderWidth: 1,
|
|
borderColor: AppColors.border,
|
|
},
|
|
inputError: {
|
|
borderColor: AppColors.error,
|
|
},
|
|
input: {
|
|
flex: 1,
|
|
paddingVertical: Spacing.sm + 4,
|
|
paddingHorizontal: Spacing.md,
|
|
fontSize: FontSizes.base,
|
|
color: AppColors.textPrimary,
|
|
// Fix for Android password field text visibility
|
|
...(Platform.OS === 'android' && {
|
|
fontFamily: 'Roboto',
|
|
includeFontPadding: false,
|
|
}),
|
|
},
|
|
inputWithLeftIcon: {
|
|
paddingLeft: 0,
|
|
},
|
|
inputWithRightIcon: {
|
|
paddingRight: 0,
|
|
},
|
|
leftIcon: {
|
|
marginLeft: Spacing.md,
|
|
marginRight: Spacing.sm,
|
|
},
|
|
rightIconButton: {
|
|
padding: Spacing.md,
|
|
},
|
|
errorText: {
|
|
fontSize: FontSizes.xs,
|
|
color: AppColors.error,
|
|
marginTop: Spacing.xs,
|
|
},
|
|
});
|