/* global alert */ import React, { Component } from 'react'; import { ActivityIndicator, TouchableOpacity, StyleSheet, View } from 'react-native'; import { Text } from 'react-native-elements'; import { BlueButton, SafeBlueArea, BlueCard, BlueSpacing40, BlueNavigationStyle } from '../../BlueComponents'; import { BitcoinUnit } from '../../models/bitcoinUnits'; import PropTypes from 'prop-types'; import ReactNativeHapticFeedback from 'react-native-haptic-feedback'; let loc = require('../../loc'); let EV = require('../../events'); let currency = require('../../currency'); let BlueElectrum = require('../../BlueElectrum'); let Bignumber = require('bignumber.js'); export default class Confirm extends Component { static navigationOptions = () => ({ ...BlueNavigationStyle(null, false), title: loc.send.confirm.header, }); constructor(props) { super(props); this.state = { isLoading: false, amount: props.navigation.getParam('amount'), fee: props.navigation.getParam('fee'), feeSatoshi: new Bignumber(props.navigation.getParam('fee')).multipliedBy(100000000).toNumber(), address: props.navigation.getParam('address'), memo: props.navigation.getParam('memo'), 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() { console.log('send/confirm - componentDidMount'); console.log('address = ', this.state.address); } broadcast() { this.setState({ isLoading: true }, async () => { try { await BlueElectrum.ping(); await BlueElectrum.waitTillConnected(); 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 this.props.navigation.navigate('Success', { fee: Number(this.state.fee), amount: this.state.amount, address: this.state.address, dismissModal: () => this.props.navigation.dismiss(), }); } } catch (error) { ReactNativeHapticFeedback.trigger('notificationError', { ignoreAndroidSystemSettings: false }); this.setState({ isLoading: false }); alert(error.message); } }); } render() { return ( {this.state.amount} {' ' + BitcoinUnit.BTC} {loc.send.create.fee}: {loc.formatBalance(this.state.feeSatoshi, BitcoinUnit.BTC)} ( {currency.satoshiToLocalCurrency(this.state.feeSatoshi)}) {loc.send.create.to} {this.state.address} {this.state.isLoading ? : this.broadcast()} title={loc.send.confirm.sendNow} />} this.props.navigation.navigate('CreateTransaction', { amount: this.state.amount, fee: this.state.fee, address: this.state.address, memo: this.state.memo, tx: this.state.tx, satoshiPerByte: this.state.satoshiPerByte, }) } > {loc.transactions.details.transaction_details} ); } } 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({ goBack: PropTypes.func, getParam: PropTypes.func, navigate: PropTypes.func, dismiss: PropTypes.func, 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, }), }), }), }), };