Files
pezkuwi-mobile-app/frontend/src/screens/Wallet/WalletSetupScreen.tsx
T
2025-11-08 10:47:10 +00:00

243 lines
5.9 KiB
TypeScript

import React, { useState } from 'react';
import {
View,
Text,
StyleSheet,
TouchableOpacity,
SafeAreaView,
TextInput,
Alert,
} from 'react-native';
import { Ionicons } from '@expo/vector-icons';
import { LinearGradient } from 'expo-linear-gradient';
import { usePolkadot } from '../../contexts/PolkadotContext';
export default function WalletSetupScreen({ navigation }: any) {
const { connectWallet, setSelectedAccount } = usePolkadot();
const [walletAddress, setWalletAddress] = useState('');
const handleConnectWithAddress = () => {
if (!walletAddress.trim()) {
Alert.alert('Error', 'Please enter a valid wallet address');
return;
}
// Set the account manually
setSelectedAccount({
address: walletAddress.trim(),
name: 'My Wallet',
});
navigation.navigate('MainTabs');
};
const handleConnectWithExtension = async () => {
await connectWallet();
// After successful connection, navigate to main app
navigation.navigate('MainTabs');
};
return (
<SafeAreaView style={styles.container}>
<LinearGradient
colors={['#F08080', '#E8C896', '#F5B895']}
style={styles.gradient}
>
<View style={styles.content}>
{/* Header */}
<View style={styles.header}>
<Ionicons name="wallet" size={80} color="#FFF" />
<Text style={styles.title}>Connect Your Wallet</Text>
<Text style={styles.subtitle}>
View your PezkuwiChain assets and transactions
</Text>
</View>
{/* Option 1: Enter Address */}
<View style={styles.card}>
<View style={styles.optionHeader}>
<Ionicons name="key" size={32} color="#F08080" />
<Text style={styles.optionTitle}>Enter Wallet Address</Text>
</View>
<Text style={styles.optionDescription}>
Enter your wallet address to view balances and transactions
</Text>
<TextInput
style={styles.input}
placeholder="5GrwvaEF5zXb26Fz9rcQpDWS..."
value={walletAddress}
onChangeText={setWalletAddress}
placeholderTextColor="#999"
autoCapitalize="none"
autoCorrect={false}
/>
<TouchableOpacity
style={styles.primaryButton}
onPress={handleConnectWithAddress}
>
<Text style={styles.primaryButtonText}>Continue</Text>
<Ionicons name="arrow-forward" size={20} color="#FFF" />
</TouchableOpacity>
<View style={styles.infoBox}>
<Ionicons name="information-circle" size={20} color="#7DD3C0" />
<Text style={styles.infoText}>
Read-only mode. To send transactions, you'll be guided to SubWallet.
</Text>
</View>
</View>
{/* Option 2: Connect with Extension (Web only) */}
<TouchableOpacity
style={styles.secondaryButton}
onPress={handleConnectWithExtension}
>
<Ionicons name="extension-puzzle" size={24} color="#FFF" />
<Text style={styles.secondaryButtonText}>
Connect Polkadot.js Extension
</Text>
</TouchableOpacity>
{/* Footer */}
<View style={styles.footer}>
<Ionicons name="shield-checkmark" size={20} color="#FFF" />
<Text style={styles.footerText}>
Your keys stay secure. We never access private keys.
</Text>
</View>
</View>
</LinearGradient>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
gradient: {
flex: 1,
},
content: {
flex: 1,
padding: 20,
justifyContent: 'space-between',
},
header: {
alignItems: 'center',
marginTop: 40,
},
title: {
fontSize: 28,
fontWeight: 'bold',
color: '#FFF',
marginTop: 20,
textAlign: 'center',
},
subtitle: {
fontSize: 16,
color: '#FFF',
marginTop: 12,
textAlign: 'center',
opacity: 0.9,
paddingHorizontal: 20,
},
card: {
backgroundColor: '#FFF',
borderRadius: 24,
padding: 24,
shadowColor: '#000',
shadowOffset: { width: 0, height: 4 },
shadowOpacity: 0.15,
shadowRadius: 12,
elevation: 8,
},
optionHeader: {
flexDirection: 'row',
alignItems: 'center',
gap: 12,
marginBottom: 12,
},
optionTitle: {
fontSize: 20,
fontWeight: '700',
color: '#333',
},
optionDescription: {
fontSize: 14,
color: '#666',
marginBottom: 16,
lineHeight: 20,
},
input: {
backgroundColor: '#F5F5F5',
borderRadius: 12,
padding: 16,
fontSize: 14,
color: '#333',
marginBottom: 16,
},
primaryButton: {
backgroundColor: '#F08080',
borderRadius: 12,
padding: 16,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
gap: 8,
},
primaryButtonText: {
color: '#FFF',
fontSize: 18,
fontWeight: '600',
},
infoBox: {
backgroundColor: '#F0F9F7',
borderRadius: 12,
padding: 12,
flexDirection: 'row',
alignItems: 'center',
gap: 8,
marginTop: 16,
borderWidth: 1,
borderColor: '#D0F0E8',
},
infoText: {
flex: 1,
fontSize: 12,
color: '#5DBEA3',
lineHeight: 16,
},
secondaryButton: {
backgroundColor: 'rgba(255,255,255,0.2)',
borderRadius: 12,
padding: 16,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
gap: 8,
borderWidth: 2,
borderColor: 'rgba(255,255,255,0.3)',
},
secondaryButtonText: {
color: '#FFF',
fontSize: 16,
fontWeight: '600',
},
footer: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
gap: 8,
marginBottom: 20,
},
footerText: {
fontSize: 12,
color: '#FFF',
opacity: 0.9,
},
});