2018-10-27 17:13:09 +02:00
|
|
|
/* global alert */
|
|
|
|
import React, { Component } from 'react';
|
2019-09-03 05:28:52 +02:00
|
|
|
import { ActivityIndicator, FlatList, TouchableOpacity, StyleSheet, View } from 'react-native';
|
2018-10-27 17:13:09 +02:00
|
|
|
import { Text } from 'react-native-elements';
|
2019-09-03 05:28:52 +02:00
|
|
|
import { BlueButton, BlueText, SafeBlueArea, BlueCard, BlueSpacing40, BlueNavigationStyle } from '../../BlueComponents';
|
2018-10-27 17:13:09 +02:00
|
|
|
import { BitcoinUnit } from '../../models/bitcoinUnits';
|
|
|
|
import PropTypes from 'prop-types';
|
2019-03-05 02:04:40 +01:00
|
|
|
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
2019-09-25 05:42:21 +02:00
|
|
|
import Biometric from '../../class/biometrics';
|
2019-10-05 12:11:54 +02:00
|
|
|
import { HDSegwitBech32Wallet } from '../../class';
|
2018-10-27 17:13:09 +02:00
|
|
|
let loc = require('../../loc');
|
|
|
|
let EV = require('../../events');
|
2018-12-11 23:52:46 +01:00
|
|
|
let currency = require('../../currency');
|
2019-07-13 02:22:50 +02:00
|
|
|
let BlueElectrum = require('../../BlueElectrum');
|
2018-12-11 23:52:46 +01:00
|
|
|
let Bignumber = require('bignumber.js');
|
2019-09-03 05:28:52 +02:00
|
|
|
/** @type {AppStorage} */
|
|
|
|
const BlueApp = require('../../BlueApp');
|
2018-10-27 17:13:09 +02:00
|
|
|
|
|
|
|
export default class Confirm extends Component {
|
2018-10-29 23:11:48 +01:00
|
|
|
static navigationOptions = () => ({
|
|
|
|
...BlueNavigationStyle(null, false),
|
|
|
|
title: loc.send.confirm.header,
|
|
|
|
});
|
2018-10-27 17:13:09 +02:00
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
isLoading: false,
|
|
|
|
fee: props.navigation.getParam('fee'),
|
2018-12-11 23:52:46 +01:00
|
|
|
feeSatoshi: new Bignumber(props.navigation.getParam('fee')).multipliedBy(100000000).toNumber(),
|
2018-10-27 17:13:09 +02:00
|
|
|
memo: props.navigation.getParam('memo'),
|
2019-09-03 05:28:52 +02:00
|
|
|
recipients: props.navigation.getParam('recipients'),
|
2018-10-27 17:13:09 +02:00
|
|
|
size: Math.round(props.navigation.getParam('tx').length / 2),
|
|
|
|
tx: props.navigation.getParam('tx'),
|
|
|
|
satoshiPerByte: props.navigation.getParam('satoshiPerByte'),
|
|
|
|
fromWallet: props.navigation.getParam('fromWallet'),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async componentDidMount() {
|
2018-12-11 23:52:46 +01:00
|
|
|
console.log('send/confirm - componentDidMount');
|
2019-09-16 23:11:22 +02:00
|
|
|
console.log('address = ', this.state.recipients);
|
2019-10-06 13:40:21 +02:00
|
|
|
this.isBiometricUseCapableAndEnabled = await Biometric.isBiometricUseCapableAndEnabled();
|
2018-10-27 17:13:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
broadcast() {
|
|
|
|
this.setState({ isLoading: true }, async () => {
|
2019-02-28 03:50:31 +01:00
|
|
|
try {
|
2019-07-13 17:21:03 +02:00
|
|
|
await BlueElectrum.ping();
|
2019-07-13 02:22:50 +02:00
|
|
|
await BlueElectrum.waitTillConnected();
|
2019-09-25 05:42:21 +02:00
|
|
|
|
2019-10-06 13:40:21 +02:00
|
|
|
if (this.isBiometricUseCapableAndEnabled) {
|
2019-09-25 05:42:21 +02:00
|
|
|
if (!(await Biometric.unlockWithBiometrics())) {
|
2019-12-28 20:42:59 +01:00
|
|
|
this.setState({ isLoading: false });
|
2019-09-25 05:42:21 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 03:50:31 +01:00
|
|
|
let result = await this.state.fromWallet.broadcastTx(this.state.tx);
|
|
|
|
if (result && result.code) {
|
|
|
|
if (result.code === 1) {
|
|
|
|
const message = result.message.split('\n');
|
|
|
|
throw new Error(`${message[0]}: ${message[2]}`);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
console.log('broadcast result = ', result);
|
|
|
|
EV(EV.enum.REMOTE_TRANSACTIONS_COUNT_CHANGED); // someone should fetch txs
|
2019-09-03 05:28:52 +02:00
|
|
|
let amount = 0;
|
2019-09-16 23:11:22 +02:00
|
|
|
const recipients = this.state.recipients;
|
|
|
|
if (recipients[0].amount === BitcoinUnit.MAX) {
|
|
|
|
amount = this.state.fromWallet.getBalance() - this.state.feeSatoshi;
|
|
|
|
} else {
|
|
|
|
for (const recipient of recipients) {
|
2019-09-27 13:36:08 +02:00
|
|
|
amount += recipient.amount ? +recipient.amount : recipient.value;
|
2019-09-16 23:11:22 +02:00
|
|
|
}
|
2019-09-03 05:28:52 +02:00
|
|
|
}
|
2019-09-16 23:11:22 +02:00
|
|
|
|
2019-10-05 12:11:54 +02:00
|
|
|
if (this.state.fromWallet.type === HDSegwitBech32Wallet.type) {
|
|
|
|
amount = loc.formatBalanceWithoutSuffix(amount, BitcoinUnit.BTC, false);
|
|
|
|
}
|
|
|
|
|
2019-02-28 03:50:31 +01:00
|
|
|
this.props.navigation.navigate('Success', {
|
|
|
|
fee: Number(this.state.fee),
|
2019-09-03 05:28:52 +02:00
|
|
|
amount,
|
2019-02-28 03:50:31 +01:00
|
|
|
dismissModal: () => this.props.navigation.dismiss(),
|
|
|
|
});
|
2019-09-03 05:28:52 +02:00
|
|
|
this.setState({ isLoading: false });
|
2019-02-28 03:50:31 +01:00
|
|
|
}
|
|
|
|
} catch (error) {
|
2019-05-03 14:36:11 +02:00
|
|
|
ReactNativeHapticFeedback.trigger('notificationError', { ignoreAndroidSystemSettings: false });
|
2019-02-28 03:50:31 +01:00
|
|
|
this.setState({ isLoading: false });
|
|
|
|
alert(error.message);
|
2018-10-27 17:13:09 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-09-03 05:28:52 +02:00
|
|
|
_renderItem = ({ index, item }) => {
|
2018-10-27 17:13:09 +02:00
|
|
|
return (
|
2019-09-03 05:28:52 +02:00
|
|
|
<>
|
|
|
|
<View style={{ flexDirection: 'row', justifyContent: 'center' }}>
|
2018-10-27 17:13:09 +02:00
|
|
|
<Text
|
|
|
|
style={{
|
2019-09-03 05:28:52 +02:00
|
|
|
color: '#0f5cc0',
|
|
|
|
fontSize: 36,
|
|
|
|
fontWeight: '600',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{item.amount === BitcoinUnit.MAX
|
|
|
|
? currency.satoshiToBTC(this.state.fromWallet.getBalance() - this.state.feeSatoshi)
|
2019-09-27 13:36:08 +02:00
|
|
|
: item.amount || currency.satoshiToBTC(item.value)}
|
2019-09-03 05:28:52 +02:00
|
|
|
</Text>
|
|
|
|
<Text
|
|
|
|
style={{
|
|
|
|
color: '#0f5cc0',
|
|
|
|
fontSize: 16,
|
2018-10-27 17:13:09 +02:00
|
|
|
marginHorizontal: 4,
|
|
|
|
paddingBottom: 6,
|
2019-09-03 05:28:52 +02:00
|
|
|
fontWeight: '600',
|
|
|
|
alignSelf: 'flex-end',
|
2018-10-27 17:13:09 +02:00
|
|
|
}}
|
|
|
|
>
|
2019-09-03 05:28:52 +02:00
|
|
|
{' ' + BitcoinUnit.BTC}
|
2018-10-27 17:13:09 +02:00
|
|
|
</Text>
|
2019-09-03 05:28:52 +02:00
|
|
|
</View>
|
2018-10-27 17:13:09 +02:00
|
|
|
<BlueCard>
|
|
|
|
<Text style={styles.transactionDetailsTitle}>{loc.send.create.to}</Text>
|
2019-09-03 05:28:52 +02:00
|
|
|
<Text style={styles.transactionDetailsSubtitle}>{item.address}</Text>
|
2018-10-27 17:13:09 +02:00
|
|
|
</BlueCard>
|
2019-09-03 05:28:52 +02:00
|
|
|
{this.state.recipients.length > 1 && (
|
|
|
|
<BlueText style={{ alignSelf: 'flex-end', marginRight: 18, marginVertical: 8 }}>
|
|
|
|
{index + 1} of {this.state.recipients.length}
|
|
|
|
</BlueText>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
renderSeparator = () => {
|
|
|
|
return <View style={{ backgroundColor: BlueApp.settings.inputBorderColor, height: 0.5, margin: 16 }} />;
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<SafeBlueArea style={{ flex: 1, paddingTop: 19 }}>
|
|
|
|
<View style={{ marginTop: 16, alignItems: 'center', justifyContent: 'space-between' }}>
|
|
|
|
<FlatList
|
|
|
|
scrollEnabled={this.state.recipients.length > 1}
|
|
|
|
extraData={this.state.recipients}
|
|
|
|
data={this.state.recipients}
|
|
|
|
renderItem={this._renderItem}
|
|
|
|
keyExtractor={(_item, index) => `${index}`}
|
|
|
|
ItemSeparatorComponent={this.renderSeparator}
|
|
|
|
style={{ maxHeight: '55%' }}
|
|
|
|
/>
|
|
|
|
<View style={{ flexDirection: 'row', justifyContent: 'center', paddingTop: 16, paddingBottom: 16 }}>
|
|
|
|
<BlueCard>
|
|
|
|
<Text
|
|
|
|
style={{
|
|
|
|
color: '#37c0a1',
|
|
|
|
fontSize: 14,
|
|
|
|
marginHorizontal: 4,
|
|
|
|
paddingBottom: 6,
|
|
|
|
fontWeight: '500',
|
|
|
|
alignSelf: 'center',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{loc.send.create.fee}: {loc.formatBalance(this.state.feeSatoshi, BitcoinUnit.BTC)} (
|
|
|
|
{currency.satoshiToLocalCurrency(this.state.feeSatoshi)})
|
|
|
|
</Text>
|
|
|
|
<BlueSpacing40 />
|
|
|
|
{this.state.isLoading ? (
|
|
|
|
<ActivityIndicator />
|
|
|
|
) : (
|
|
|
|
<BlueButton onPress={() => this.broadcast()} title={loc.send.confirm.sendNow} />
|
|
|
|
)}
|
|
|
|
|
|
|
|
<TouchableOpacity
|
|
|
|
style={{ marginVertical: 24 }}
|
2019-09-25 05:42:21 +02:00
|
|
|
onPress={async () => {
|
2019-10-06 13:40:21 +02:00
|
|
|
if (this.isBiometricUseCapableAndEnabled) {
|
2019-09-25 05:42:21 +02:00
|
|
|
if (!(await Biometric.unlockWithBiometrics())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-03 05:28:52 +02:00
|
|
|
this.props.navigation.navigate('CreateTransaction', {
|
|
|
|
fee: this.state.fee,
|
|
|
|
recipients: this.state.recipients,
|
|
|
|
memo: this.state.memo,
|
|
|
|
tx: this.state.tx,
|
|
|
|
satoshiPerByte: this.state.satoshiPerByte,
|
|
|
|
wallet: this.state.fromWallet,
|
|
|
|
feeSatoshi: this.state.feeSatoshi,
|
2019-09-25 05:42:21 +02:00
|
|
|
});
|
|
|
|
}}
|
2019-09-03 05:28:52 +02:00
|
|
|
>
|
|
|
|
<Text style={{ color: '#0c2550', fontSize: 15, fontWeight: '500', alignSelf: 'center' }}>
|
|
|
|
{loc.transactions.details.transaction_details}
|
|
|
|
</Text>
|
|
|
|
</TouchableOpacity>
|
|
|
|
</BlueCard>
|
|
|
|
</View>
|
|
|
|
</View>
|
2018-10-27 17:13:09 +02:00
|
|
|
</SafeBlueArea>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
transactionDetailsTitle: {
|
|
|
|
color: '#0c2550',
|
|
|
|
fontWeight: '500',
|
|
|
|
fontSize: 17,
|
|
|
|
marginBottom: 2,
|
|
|
|
},
|
|
|
|
transactionDetailsSubtitle: {
|
|
|
|
color: '#9aa0aa',
|
|
|
|
fontWeight: '500',
|
|
|
|
fontSize: 15,
|
|
|
|
marginBottom: 20,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
Confirm.propTypes = {
|
|
|
|
navigation: PropTypes.shape({
|
2019-02-01 16:28:43 +01:00
|
|
|
goBack: PropTypes.func,
|
|
|
|
getParam: PropTypes.func,
|
|
|
|
navigate: PropTypes.func,
|
|
|
|
dismiss: PropTypes.func,
|
2018-10-27 17:13:09 +02:00
|
|
|
state: PropTypes.shape({
|
|
|
|
params: PropTypes.shape({
|
|
|
|
amount: PropTypes.string,
|
|
|
|
fee: PropTypes.number,
|
|
|
|
address: PropTypes.string,
|
|
|
|
memo: PropTypes.string,
|
|
|
|
fromWallet: PropTypes.shape({
|
|
|
|
fromAddress: PropTypes.string,
|
|
|
|
fromSecret: PropTypes.string,
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
};
|