mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
282 lines
7.5 KiB
JavaScript
282 lines
7.5 KiB
JavaScript
import React, { Component } from 'react';
|
|
import { ActivityIndicator, View, Dimensions } from 'react-native';
|
|
import Ionicons from 'react-native-vector-icons/Ionicons';
|
|
import { Text, FormValidationMessage } from 'react-native-elements';
|
|
import {
|
|
BlueSpacing20,
|
|
BlueSpacing40,
|
|
BlueButton,
|
|
SafeBlueArea,
|
|
BlueCard,
|
|
BlueText,
|
|
BlueFormInput,
|
|
BlueSpacing,
|
|
BlueFormInputAddress,
|
|
} from '../../BlueComponents';
|
|
import PropTypes from 'prop-types';
|
|
const bip21 = require('bip21');
|
|
let EV = require('../../events');
|
|
let BigNumber = require('bignumber.js');
|
|
let BlueApp = require('../../BlueApp');
|
|
let loc = require('../../loc');
|
|
const { height, width } = Dimensions.get('window');
|
|
const aspectRatio = height / width;
|
|
let isIpad;
|
|
if (aspectRatio > 1.6) {
|
|
isIpad = false;
|
|
} else {
|
|
isIpad = true;
|
|
}
|
|
|
|
const btcAddressRx = /^[a-zA-Z0-9]{26,35}$/;
|
|
|
|
export default class SendDetails extends Component {
|
|
static navigationOptions = {
|
|
tabBarIcon: ({ tintColor, focused }) => (
|
|
<Ionicons
|
|
name={focused ? 'md-paper-plane' : 'md-paper-plane'}
|
|
size={26}
|
|
style={{ color: tintColor }}
|
|
/>
|
|
),
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
let startTime = Date.now();
|
|
let address;
|
|
if (props.navigation.state.params)
|
|
address = props.navigation.state.params.address;
|
|
let fromAddress;
|
|
if (props.navigation.state.params)
|
|
fromAddress = props.navigation.state.params.fromAddress;
|
|
let fromWallet = {};
|
|
|
|
let startTime2 = Date.now();
|
|
for (let w of BlueApp.getWallets()) {
|
|
if (w.getAddress() === fromAddress) {
|
|
fromWallet = w;
|
|
}
|
|
}
|
|
|
|
let endTime2 = Date.now();
|
|
console.log('getAddress() took', (endTime2 - startTime2) / 1000, 'sec');
|
|
|
|
this.state = {
|
|
errorMessage: false,
|
|
fromAddress: fromAddress,
|
|
fromWallet: fromWallet,
|
|
isLoading: true,
|
|
address: address,
|
|
amount: '',
|
|
fee: '',
|
|
};
|
|
|
|
EV(EV.enum.CREATE_TRANSACTION_NEW_DESTINATION_ADDRESS, data => {
|
|
console.log('received event with ', data);
|
|
|
|
if (btcAddressRx.test(data)) {
|
|
this.setState({
|
|
address: data,
|
|
});
|
|
} else {
|
|
const { address, options } = bip21.decode(data);
|
|
|
|
if (btcAddressRx.test(address)) {
|
|
this.setState({
|
|
address,
|
|
amount: options.amount,
|
|
memo: options.label,
|
|
});
|
|
}
|
|
}
|
|
});
|
|
let endTime = Date.now();
|
|
console.log('constructor took', (endTime - startTime) / 1000, 'sec');
|
|
}
|
|
|
|
async componentDidMount() {
|
|
let startTime = Date.now();
|
|
console.log('send/details - componentDidMount');
|
|
this.setState({
|
|
isLoading: false,
|
|
});
|
|
let endTime = Date.now();
|
|
console.log('componentDidMount took', (endTime - startTime) / 1000, 'sec');
|
|
}
|
|
|
|
recalculateAvailableBalance(balance, amount, fee) {
|
|
if (!amount) amount = 0;
|
|
if (!fee) fee = 0;
|
|
let availableBalance;
|
|
try {
|
|
availableBalance = new BigNumber(balance);
|
|
availableBalance = availableBalance.sub(amount);
|
|
availableBalance = availableBalance.sub(fee);
|
|
availableBalance = availableBalance.toString(10);
|
|
} catch (err) {
|
|
return balance;
|
|
}
|
|
console.log(typeof availableBalance, availableBalance);
|
|
return (availableBalance === 'NaN' && balance) || availableBalance;
|
|
}
|
|
|
|
createTransaction() {
|
|
if (!this.state.amount || this.state.amount === '0') {
|
|
this.setState({
|
|
errorMessage: loc.send.details.amount_fiels_is_not_valid,
|
|
});
|
|
console.log('validation error');
|
|
return;
|
|
}
|
|
|
|
if (!this.state.fee) {
|
|
this.setState({
|
|
errorMessage: loc.send.details.fee_fiels_is_not_valid,
|
|
});
|
|
console.log('validation error');
|
|
return;
|
|
}
|
|
|
|
if (!this.state.address) {
|
|
this.setState({
|
|
errorMessage: loc.send.details.address_fiels_is_not_valid,
|
|
});
|
|
console.log('validation error');
|
|
return;
|
|
}
|
|
|
|
this.setState({
|
|
errorMessage: '',
|
|
});
|
|
|
|
this.props.navigation.navigate('CreateTransaction', {
|
|
amount: this.state.amount,
|
|
fee: this.state.fee,
|
|
address: this.state.address,
|
|
memo: this.state.memo,
|
|
fromAddress: this.state.fromAddress,
|
|
});
|
|
}
|
|
|
|
render() {
|
|
if (this.state.isLoading) {
|
|
return (
|
|
<View style={{ flex: 1, paddingTop: 20 }}>
|
|
<ActivityIndicator />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
if (!this.state.fromWallet.getAddress) {
|
|
return (
|
|
<View style={{ flex: 1, paddingTop: 20 }}>
|
|
<Text>
|
|
System error: Source wallet not found (this should never happen)
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<SafeBlueArea style={{ flex: 1, paddingTop: 20 }}>
|
|
{(() => {
|
|
if (isIpad) {
|
|
return <BlueSpacing40 />;
|
|
} else {
|
|
return <BlueSpacing />;
|
|
}
|
|
})()}
|
|
<BlueCard
|
|
title={loc.send.details.title}
|
|
style={{ alignItems: 'center', flex: 1 }}
|
|
>
|
|
<BlueFormInputAddress
|
|
style={{ width: 250 }}
|
|
onChangeText={text => this.setState({ address: text })}
|
|
placeholder={loc.send.details.receiver_placeholder}
|
|
value={this.state.address}
|
|
/>
|
|
|
|
<BlueFormInput
|
|
onChangeText={text =>
|
|
this.setState({ amount: text.replace(',', '.') })
|
|
}
|
|
keyboardType={'numeric'}
|
|
placeholder={loc.send.details.amount_placeholder}
|
|
value={this.state.amount + ''}
|
|
/>
|
|
|
|
<BlueFormInput
|
|
onChangeText={text =>
|
|
this.setState({ fee: text.replace(',', '.') })
|
|
}
|
|
keyboardType={'numeric'}
|
|
placeholder={loc.send.details.fee_placeholder}
|
|
value={this.state.fee + ''}
|
|
/>
|
|
|
|
<BlueFormInput
|
|
onChangeText={text => this.setState({ memo: text })}
|
|
placeholder={loc.send.details.memo_placeholder}
|
|
value={this.state.memo}
|
|
/>
|
|
|
|
<BlueSpacing20 />
|
|
<BlueText>
|
|
{loc.send.details.remaining_balance}:{' '}
|
|
{this.recalculateAvailableBalance(
|
|
this.state.fromWallet.getBalance(),
|
|
this.state.amount,
|
|
this.state.fee,
|
|
)}{' '}
|
|
BTC
|
|
</BlueText>
|
|
</BlueCard>
|
|
|
|
<FormValidationMessage>{this.state.errorMessage}</FormValidationMessage>
|
|
|
|
<View style={{ flex: 1, flexDirection: 'row' }}>
|
|
<View style={{ flex: 0.33 }}>
|
|
<BlueButton
|
|
onPress={() => this.props.navigation.goBack()}
|
|
title={loc.send.details.cancel}
|
|
/>
|
|
</View>
|
|
<View style={{ flex: 0.33 }}>
|
|
<BlueButton
|
|
icon={{
|
|
name: 'qrcode',
|
|
type: 'font-awesome',
|
|
color: BlueApp.settings.buttonTextColor,
|
|
}}
|
|
style={{}}
|
|
title={loc.send.details.scan}
|
|
onPress={() => this.props.navigation.navigate('ScanQrAddress')}
|
|
/>
|
|
</View>
|
|
<View style={{ flex: 0.33 }}>
|
|
<BlueButton
|
|
onPress={() => this.createTransaction()}
|
|
title={loc.send.details.create}
|
|
/>
|
|
</View>
|
|
</View>
|
|
</SafeBlueArea>
|
|
);
|
|
}
|
|
}
|
|
|
|
SendDetails.propTypes = {
|
|
navigation: PropTypes.shape({
|
|
goBack: PropTypes.function,
|
|
navigate: PropTypes.func,
|
|
state: PropTypes.shape({
|
|
params: PropTypes.shape({
|
|
address: PropTypes.string,
|
|
fromAddress: PropTypes.string,
|
|
}),
|
|
}),
|
|
}),
|
|
};
|