mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 02:09:10 +01:00
6f581a2f2e
* OPS: randombytes work * OPS: porting to RN android: added prompt, refactoring * OPS: better android prompt * FIX: scan qr callback * FIX: correct fee sat calculation for HD & classic segwit wallets * FIX: Fixed height for button in empty transaction list * FIX: keyboard issue on fee selection modal * FIX: slow QR code generation for HD backup screen * ADD: wallet reorder * FIX: TypeError: undefined is not an object (evaluating 'recommendedFees.halfHourFee') #133 * FIX: android appstore link * OPS: Code to Migrate Expo json * REF: renamed blitzhub to lndhub * OPS: Migration: move expo files instead of parsing * FIX: lndhub uri usage * FIX: no security alert on android (it was ios specific) * REF: better tx list rendering and sorting * ADD: verify tx on coinb.in * FIX: Tap to dismiss is not working #137 * REF: Removed Wallet gradients duplication. * REF: about screen * FIX: bech32 qr scan in send screen * FIX: better bip21 handling * Use of dayjs for transaction details * REF: QR code content follows BIP21 * ADD: fee in local currency when send * FIX: Refresh wallet info on page focus
125 lines
4.6 KiB
JavaScript
125 lines
4.6 KiB
JavaScript
import React, { Component } from 'react';
|
|
import { TextInput, ScrollView, Linking, TouchableOpacity, Clipboard, StyleSheet, TouchableWithoutFeedback, Keyboard } from 'react-native';
|
|
import { Text } from 'react-native-elements';
|
|
import { BlueNavigationStyle, SafeBlueArea, BlueCard, BlueText } from '../../BlueComponents';
|
|
import PropTypes from 'prop-types';
|
|
let loc = require('../../loc');
|
|
|
|
export default class SendCreate extends Component {
|
|
static navigationOptions = () => ({
|
|
...BlueNavigationStyle,
|
|
title: loc.send.create.details,
|
|
});
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
console.log('send/create constructor');
|
|
|
|
this.state = {
|
|
isLoading: false,
|
|
amount: props.navigation.getParam('amount'),
|
|
fee: props.navigation.getParam('fee'),
|
|
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'),
|
|
};
|
|
}
|
|
|
|
async componentDidMount() {
|
|
console.log('send/create - componentDidMount');
|
|
console.log('address = ', this.state.address);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<SafeBlueArea style={{ flex: 1, paddingTop: 19 }}>
|
|
<TouchableWithoutFeedback onPress={Keyboard.dismiss} accessible={false}>
|
|
<ScrollView>
|
|
<BlueCard style={{ alignItems: 'center', flex: 1 }}>
|
|
<BlueText style={{ color: '#0c2550', fontWeight: '500' }}>{loc.send.create.this_is_hex}</BlueText>
|
|
<TextInput
|
|
style={{
|
|
borderColor: '#ebebeb',
|
|
backgroundColor: '#d2f8d6',
|
|
borderRadius: 4,
|
|
marginTop: 20,
|
|
color: '#37c0a1',
|
|
fontWeight: '500',
|
|
fontSize: 14,
|
|
paddingHorizontal: 16,
|
|
paddingBottom: 16,
|
|
paddingTop: 16,
|
|
}}
|
|
height={72}
|
|
multiline
|
|
editable
|
|
value={this.state.tx}
|
|
/>
|
|
|
|
<TouchableOpacity style={{ marginVertical: 24 }} onPress={() => Clipboard.setString(this.state.tx)}>
|
|
<Text style={{ color: '#9aa0aa', fontSize: 15, fontWeight: '500', alignSelf: 'center' }}>Copy and broadcast later</Text>
|
|
</TouchableOpacity>
|
|
<TouchableOpacity style={{ marginVertical: 24 }} onPress={() => Linking.openURL('https://coinb.in/?verify=' + this.state.tx)}>
|
|
<Text style={{ color: '#9aa0aa', fontSize: 15, fontWeight: '500', alignSelf: 'center' }}>Verify on coinb.in</Text>
|
|
</TouchableOpacity>
|
|
</BlueCard>
|
|
<BlueCard>
|
|
<Text style={styles.transactionDetailsTitle}>{loc.send.create.to}</Text>
|
|
<Text style={styles.transactionDetailsSubtitle}>{this.state.address}</Text>
|
|
|
|
<Text style={styles.transactionDetailsTitle}>{loc.send.create.amount}</Text>
|
|
<Text style={styles.transactionDetailsSubtitle}>{this.state.amount} BTC</Text>
|
|
|
|
<Text style={styles.transactionDetailsTitle}>{loc.send.create.fee}</Text>
|
|
<Text style={styles.transactionDetailsSubtitle}>{this.state.fee} BTC</Text>
|
|
|
|
<Text style={styles.transactionDetailsTitle}>{loc.send.create.tx_size}</Text>
|
|
<Text style={styles.transactionDetailsSubtitle}>{this.state.size} bytes</Text>
|
|
|
|
<Text style={styles.transactionDetailsTitle}>{loc.send.create.satoshi_per_byte}</Text>
|
|
<Text style={styles.transactionDetailsSubtitle}>{this.state.satoshiPerByte} Sat/B</Text>
|
|
|
|
<Text style={styles.transactionDetailsTitle}>{loc.send.create.memo}</Text>
|
|
<Text style={styles.transactionDetailsSubtitle}>{this.state.memo}</Text>
|
|
</BlueCard>
|
|
</ScrollView>
|
|
</TouchableWithoutFeedback>
|
|
</SafeBlueArea>
|
|
);
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
transactionDetailsTitle: {
|
|
color: '#0c2550',
|
|
fontWeight: '500',
|
|
fontSize: 17,
|
|
marginBottom: 2,
|
|
},
|
|
transactionDetailsSubtitle: {
|
|
color: '#9aa0aa',
|
|
fontWeight: '500',
|
|
fontSize: 15,
|
|
marginBottom: 20,
|
|
},
|
|
});
|
|
|
|
SendCreate.propTypes = {
|
|
navigation: PropTypes.shape({
|
|
goBack: PropTypes.function,
|
|
getParam: PropTypes.function,
|
|
navigate: PropTypes.function,
|
|
dismiss: PropTypes.function,
|
|
state: PropTypes.shape({
|
|
params: PropTypes.shape({
|
|
amount: PropTypes.string,
|
|
fee: PropTypes.number,
|
|
address: PropTypes.string,
|
|
memo: PropTypes.string,
|
|
}),
|
|
}),
|
|
}),
|
|
};
|