96 lines
3.5 KiB
TypeScript
96 lines
3.5 KiB
TypeScript
import React, { useEffect, useRef } from 'react';
|
|
import { Alert, StyleSheet, Text, TouchableOpacity, View } from 'react-native';
|
|
import { onProxyMessage, proxySendMessage, paytmPay, openMobikwikPayToBank, openFreechargePayToBank } from 'rnwalletman';
|
|
|
|
export default function TestScreen() {
|
|
const subRef = useRef<ReturnType<typeof onProxyMessage> | null>(null);
|
|
|
|
useEffect(() => {
|
|
subRef.current = onProxyMessage((msg) => {
|
|
if (msg.type === 'echo') {
|
|
Alert.alert('Echo Response', JSON.stringify(msg.data));
|
|
}
|
|
});
|
|
return () => {
|
|
subRef.current?.remove();
|
|
};
|
|
}, []);
|
|
|
|
const handleEcho = () => {
|
|
proxySendMessage({ type: 'echo', messageId: `echo_${Date.now()}`, data: { text: `hello_${Date.now()}` } });
|
|
};
|
|
|
|
const handlePaytmPay = () => {
|
|
paytmPay('2', 'Harshpreet singh', '01601000068180', 'PSIB0000160', '66666')
|
|
.then(result => console.log(result))
|
|
.catch(error => Alert.alert('Transfer Failed', String(error)));
|
|
};
|
|
|
|
const handleMobikwikPayToBank = () => {
|
|
openMobikwikPayToBank('5521101002938', 'CNRB0005521', 'Anmol', '12')
|
|
.then(result => console.log('Mobikwik Pay To Bank', result ? 'Success' : 'Failed'))
|
|
.catch(err => Alert.alert('Error', String(err)));
|
|
};
|
|
|
|
const handlePhonePePayToBank = () => {
|
|
|
|
};
|
|
|
|
const handleFreechargePayToBank = () => {
|
|
openFreechargePayToBank('2', '8284919464', 'PSIB0000160', 'test transfer')
|
|
.then((result: boolean) => console.log('Freecharge Pay To Bank', result ? 'Success' : 'Failed'))
|
|
.catch((err: unknown) => Alert.alert('Error', String(err)));
|
|
};
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={styles.sectionTitle}>Test Tools</Text>
|
|
|
|
<TouchableOpacity style={[styles.btn, { backgroundColor: '#2ecc71' }]} onPress={handlePaytmPay}>
|
|
<Text style={styles.btnText}>Paytm Pay To Bank Test</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity style={[styles.btn, { backgroundColor: '#2ecc33' }]} onPress={handleMobikwikPayToBank}>
|
|
<Text style={styles.btnText}>Mobikwik Pay To Bank Test</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity style={[styles.btn, { backgroundColor: '#5a2d9c' }]} onPress={handlePhonePePayToBank}>
|
|
<Text style={styles.btnText}>PhonePe Pay To Bank Test</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity style={[styles.btn, { backgroundColor: '#5468db' }]} onPress={handleFreechargePayToBank}>
|
|
<Text style={styles.btnText}>Freecharge Pay To Bank Test</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity style={[styles.btn, { backgroundColor: '#3498db' }]} onPress={handleEcho}>
|
|
<Text style={styles.btnText}>Echo Test</Text>
|
|
</TouchableOpacity>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#f0f0f0',
|
|
padding: 20,
|
|
alignItems: 'center',
|
|
},
|
|
sectionTitle: {
|
|
fontSize: 16,
|
|
fontWeight: '600',
|
|
color: '#333',
|
|
alignSelf: 'flex-start',
|
|
marginBottom: 16,
|
|
marginTop: 8,
|
|
},
|
|
btn: {
|
|
width: '100%',
|
|
paddingVertical: 14,
|
|
borderRadius: 8,
|
|
alignItems: 'center',
|
|
marginBottom: 12,
|
|
},
|
|
btnText: {
|
|
color: '#fff',
|
|
fontSize: 15,
|
|
fontWeight: '600',
|
|
},
|
|
});
|