mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
ADD: is it my address check on wallet details screen (closes #829)
This commit is contained in:
parent
5ff3d390ff
commit
57ec7c9813
@ -60,6 +60,7 @@ import PsbtWithHardwareWallet from './screen/send/psbtWithHardwareWallet';
|
||||
import PsbtMultisig from './screen/send/psbtMultisig';
|
||||
import Success from './screen/send/success';
|
||||
import Broadcast from './screen/send/broadcast';
|
||||
import IsItMyAddress from './screen/send/isItMyAddress';
|
||||
import CoinControl from './screen/send/coinControl';
|
||||
|
||||
import ScanLndInvoice from './screen/lnd/scanLndInvoice';
|
||||
@ -148,6 +149,7 @@ const WalletsRoot = () => (
|
||||
/>
|
||||
<WalletsStack.Screen name="HodlHodlViewOffer" component={HodlHodlViewOffer} options={HodlHodlViewOffer.navigationOptions} />
|
||||
<WalletsStack.Screen name="Broadcast" component={Broadcast} options={Broadcast.navigationOptions} />
|
||||
<WalletsStack.Screen name="IsItMyAddress" component={IsItMyAddress} options={IsItMyAddress.navigationOptions} />
|
||||
<WalletsStack.Screen name="LnurlPay" component={LnurlPay} options={LnurlPay.navigationOptions} />
|
||||
<WalletsStack.Screen name="LnurlPaySuccess" component={LnurlPaySuccess} options={LnurlPaySuccess.navigationOptions} />
|
||||
<WalletsStack.Screen
|
||||
|
@ -464,6 +464,12 @@
|
||||
"input_path_explain": "skip to use default one ({default})",
|
||||
"view_edit_cosigners_title": "Edit Cosigners"
|
||||
},
|
||||
"is_it_my_address": {
|
||||
"title": "Is it my address?",
|
||||
"owns": "{label} owns {address}",
|
||||
"enter_address": "Enter address:",
|
||||
"check_address": "Check address"
|
||||
},
|
||||
"cc": {
|
||||
"change": "change",
|
||||
"coins_selected": "Coins selected ({number})",
|
||||
|
149
screen/send/isItMyAddress.js
Normal file
149
screen/send/isItMyAddress.js
Normal file
@ -0,0 +1,149 @@
|
||||
import React, { useState, useContext } from 'react';
|
||||
import { StyleSheet, View, KeyboardAvoidingView, Platform, TextInput } from 'react-native';
|
||||
import loc from '../../loc';
|
||||
import {
|
||||
SafeBlueArea,
|
||||
BlueCard,
|
||||
BlueButton,
|
||||
BlueSpacing10,
|
||||
BlueSpacing20,
|
||||
BlueFormLabel,
|
||||
BlueNavigationStyle,
|
||||
BlueText,
|
||||
BlueButtonLink,
|
||||
} from '../../BlueComponents';
|
||||
import { BlueCurrentTheme } from '../../components/themes';
|
||||
import { BlueStorageContext } from '../../blue_modules/storage-context';
|
||||
import { useNavigation, useRoute } from '@react-navigation/native';
|
||||
|
||||
const IsItMyAddress = () => {
|
||||
/** @type {AbstractWallet[]} */
|
||||
const wallets = useContext(BlueStorageContext).wallets;
|
||||
const navigation = useNavigation();
|
||||
const route = useRoute();
|
||||
|
||||
const [address, setAddress] = useState('');
|
||||
const [result, setResult] = useState('');
|
||||
|
||||
const handleUpdateAddress = nextValue => setAddress(nextValue.trim());
|
||||
|
||||
const checkAddress = async () => {
|
||||
const cleanAddress = address.replace('bitcoin:', '').replace('BITCOIN:', '').replace('bitcoin=', '').split('?')[0];
|
||||
const _result = [];
|
||||
for (const w of wallets) {
|
||||
if (w.weOwnAddress(cleanAddress)) {
|
||||
_result.push(loc.formatString(loc.is_it_my_address.owns, { label: w.getLabel(), address: cleanAddress }));
|
||||
}
|
||||
}
|
||||
|
||||
setResult(_result.join('\n\n'));
|
||||
};
|
||||
|
||||
const onBarScanned = async value => {
|
||||
setAddress(value);
|
||||
};
|
||||
|
||||
const importScan = async () => {
|
||||
navigation.navigate('ScanQRCodeRoot', {
|
||||
screen: 'ScanQRCode',
|
||||
params: {
|
||||
launchedBy: route.name,
|
||||
onBarScanned: onBarScanned,
|
||||
showFileImportButton: true,
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
<SafeBlueArea style={styles.blueArea}>
|
||||
<KeyboardAvoidingView behavior={Platform.OS === 'ios' ? 'position' : null} keyboardShouldPersistTaps="handled">
|
||||
<View style={styles.wrapper}>
|
||||
<BlueCard style={styles.mainCard}>
|
||||
<View style={styles.topFormRow}>
|
||||
<BlueFormLabel>{loc.is_it_my_address.enter_address}</BlueFormLabel>
|
||||
</View>
|
||||
<TextInput
|
||||
style={styles.text}
|
||||
maxHeight={100}
|
||||
minHeight={100}
|
||||
maxWidth="100%"
|
||||
minWidth="100%"
|
||||
multiline
|
||||
editable
|
||||
value={address}
|
||||
onChangeText={handleUpdateAddress}
|
||||
/>
|
||||
|
||||
<BlueSpacing10 />
|
||||
<BlueButtonLink title={loc.wallets.import_scan_qr} onPress={importScan} />
|
||||
<BlueSpacing10 />
|
||||
<BlueButton title={loc.is_it_my_address.check_address} onPress={checkAddress} />
|
||||
<BlueSpacing20 />
|
||||
<BlueText>{result}</BlueText>
|
||||
</BlueCard>
|
||||
</View>
|
||||
</KeyboardAvoidingView>
|
||||
</SafeBlueArea>
|
||||
);
|
||||
};
|
||||
|
||||
export default IsItMyAddress;
|
||||
IsItMyAddress.navigationOptions = () => ({
|
||||
...BlueNavigationStyle(),
|
||||
title: loc.is_it_my_address.title,
|
||||
});
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
wrapper: {
|
||||
marginTop: 16,
|
||||
alignItems: 'center',
|
||||
justifyContent: 'flex-start',
|
||||
},
|
||||
blueArea: {
|
||||
flex: 1,
|
||||
paddingTop: 19,
|
||||
},
|
||||
broadcastResultWrapper: {
|
||||
flex: 1,
|
||||
flexDirection: 'column',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
height: '100%',
|
||||
width: '100%',
|
||||
},
|
||||
link: {
|
||||
color: BlueCurrentTheme.colors.foregroundColor,
|
||||
},
|
||||
mainCard: {
|
||||
padding: 0,
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'flex-start',
|
||||
},
|
||||
topFormRow: {
|
||||
flex: 0.1,
|
||||
flexBasis: 0.1,
|
||||
flexDirection: 'row',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'space-between',
|
||||
paddingBottom: 10,
|
||||
paddingTop: 0,
|
||||
paddingRight: 100,
|
||||
height: 30,
|
||||
maxHeight: 30,
|
||||
},
|
||||
text: {
|
||||
flex: 1,
|
||||
borderColor: '#ebebeb',
|
||||
backgroundColor: '#d2f8d6',
|
||||
borderRadius: 4,
|
||||
marginTop: 20,
|
||||
color: BlueCurrentTheme.colors.foregroundColor,
|
||||
fontWeight: '500',
|
||||
fontSize: 14,
|
||||
paddingHorizontal: 16,
|
||||
paddingBottom: 16,
|
||||
paddingTop: 16,
|
||||
},
|
||||
});
|
@ -324,6 +324,10 @@ const WalletDetails = () => {
|
||||
navigate('Broadcast');
|
||||
};
|
||||
|
||||
const navigateToIsItMyAddress = () => {
|
||||
navigate('IsItMyAddress');
|
||||
};
|
||||
|
||||
const walletNameTextInputOnBlur = () => {
|
||||
if (walletName.trim().length === 0) {
|
||||
const walletLabel = wallet.getLabel();
|
||||
@ -512,6 +516,10 @@ const WalletDetails = () => {
|
||||
<SecondButton onPress={navigateToBroadcast} title={loc.settings.network_broadcast} />
|
||||
</>
|
||||
)}
|
||||
<>
|
||||
<BlueSpacing20 />
|
||||
<SecondButton onPress={navigateToIsItMyAddress} title="Is it my address?" />
|
||||
</>
|
||||
<BlueSpacing20 />
|
||||
<BlueSpacing20 />
|
||||
<TouchableOpacity onPress={handleDeleteButtonTapped}>
|
||||
|
Loading…
Reference in New Issue
Block a user