2018-10-27 17:13:09 +02:00
|
|
|
import React, { Component } from 'react';
|
2018-12-11 23:52:46 +01:00
|
|
|
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
2018-10-27 17:13:09 +02:00
|
|
|
import { View } from 'react-native';
|
|
|
|
import { Text, Icon } from 'react-native-elements';
|
|
|
|
import { BlueButton, SafeBlueArea, BlueCard } from '../../BlueComponents';
|
|
|
|
import { BitcoinUnit } from '../../models/bitcoinUnits';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
let loc = require('../../loc');
|
|
|
|
|
|
|
|
export default class Success extends Component {
|
2018-10-29 23:11:48 +01:00
|
|
|
static navigationOptions = {
|
|
|
|
header: null,
|
|
|
|
};
|
|
|
|
|
2018-10-27 17:13:09 +02:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
console.log('send/create constructor');
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
amount: props.navigation.getParam('amount'),
|
|
|
|
fee: props.navigation.getParam('fee'),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async componentDidMount() {
|
|
|
|
console.log('send/create - componentDidMount');
|
2018-12-13 17:50:18 +01:00
|
|
|
ReactNativeHapticFeedback.trigger('notificationSuccess', false);
|
2018-10-27 17:13:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<SafeBlueArea style={{ flex: 1, paddingTop: 19 }}>
|
|
|
|
<BlueCard style={{ alignItems: 'center', flex: 1 }}>
|
|
|
|
<View style={{ flexDirection: 'row', justifyContent: 'center', paddingTop: 76, paddingBottom: 16 }}>
|
|
|
|
<Text
|
|
|
|
style={{
|
|
|
|
color: '#0f5cc0',
|
|
|
|
fontSize: 36,
|
|
|
|
fontWeight: '600',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{this.state.amount}
|
|
|
|
</Text>
|
|
|
|
<Text
|
|
|
|
style={{
|
|
|
|
color: '#0f5cc0',
|
|
|
|
fontSize: 16,
|
|
|
|
marginHorizontal: 4,
|
|
|
|
paddingBottom: 6,
|
|
|
|
fontWeight: '600',
|
|
|
|
alignSelf: 'flex-end',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{' ' + BitcoinUnit.BTC}
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
<Text
|
|
|
|
style={{
|
|
|
|
color: '#37c0a1',
|
|
|
|
fontSize: 14,
|
|
|
|
marginHorizontal: 4,
|
|
|
|
paddingBottom: 6,
|
|
|
|
fontWeight: '500',
|
|
|
|
alignSelf: 'center',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{loc.send.create.fee}: {loc.formatBalance(this.state.fee, BitcoinUnit.SATS)}
|
|
|
|
</Text>
|
|
|
|
</BlueCard>
|
|
|
|
<View
|
|
|
|
style={{
|
|
|
|
backgroundColor: '#ccddf9',
|
|
|
|
width: 120,
|
|
|
|
height: 120,
|
|
|
|
borderRadius: 60,
|
|
|
|
alignSelf: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
marginTop: 43,
|
|
|
|
marginBottom: 53,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Icon name="check" size={50} type="font-awesome" color="#0f5cc0" />
|
|
|
|
</View>
|
|
|
|
<BlueCard>
|
|
|
|
<BlueButton
|
|
|
|
onPress={() => {
|
2018-10-29 23:11:48 +01:00
|
|
|
this.props.navigation.dismiss();
|
2018-10-27 17:13:09 +02:00
|
|
|
}}
|
|
|
|
title={loc.send.success.done}
|
|
|
|
/>
|
|
|
|
</BlueCard>
|
|
|
|
</SafeBlueArea>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Success.propTypes = {
|
|
|
|
navigation: PropTypes.shape({
|
|
|
|
goBack: PropTypes.function,
|
|
|
|
getParam: PropTypes.function,
|
|
|
|
navigate: PropTypes.function,
|
2018-10-29 23:11:48 +01:00
|
|
|
dismiss: PropTypes.function,
|
2018-10-27 17:13:09 +02:00
|
|
|
state: PropTypes.shape({
|
|
|
|
params: PropTypes.shape({
|
|
|
|
amount: PropTypes.string,
|
|
|
|
fee: PropTypes.number,
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
};
|