BlueWallet/screen/lnd/lndViewInvoice.js

378 lines
13 KiB
JavaScript
Raw Normal View History

2018-12-25 17:34:51 +01:00
import React, { Component } from 'react';
2020-07-15 19:32:59 +02:00
import { View, Text, Dimensions, StatusBar, ScrollView, BackHandler, TouchableOpacity, StyleSheet } from 'react-native';
2019-08-06 06:20:33 +02:00
import Share from 'react-native-share';
import {
BlueLoading,
BlueText,
SafeBlueArea,
BlueButton,
2020-07-15 19:32:59 +02:00
SecondButton,
BlueCopyTextToClipboard,
BlueNavigationStyle,
BlueSpacing20,
2020-04-29 16:00:33 +02:00
BlueBigCheckmark,
} from '../../BlueComponents';
2018-12-25 17:34:51 +01:00
import PropTypes from 'prop-types';
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
import { Icon } from 'react-native-elements';
2019-02-14 06:15:56 +01:00
import QRCode from 'react-native-qrcode-svg';
2020-07-20 15:38:46 +02:00
import loc from '../../loc';
2020-07-15 19:32:59 +02:00
import { BlueCurrentTheme } from '../../components/themes';
const EV = require('../../blue_modules/events');
2019-01-05 02:28:08 +01:00
const { width, height } = Dimensions.get('window');
2018-12-25 17:34:51 +01:00
const styles = StyleSheet.create({
root: {
flex: 1,
backgroundColor: BlueCurrentTheme.colors.background,
},
center: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
2020-08-03 19:26:16 +02:00
qrCodeContainer: { borderWidth: 6, borderRadius: 8, borderColor: '#FFFFFF' },
valueRoot: {
flex: 2,
flexDirection: 'column',
justifyContent: 'center',
},
valueAmount: {
flexDirection: 'row',
justifyContent: 'center',
paddingBottom: 8,
},
valueText: {
2020-07-15 19:32:59 +02:00
color: BlueCurrentTheme.colors.alternativeTextColor2,
fontSize: 32,
fontWeight: '600',
},
valueSats: {
2020-07-15 19:32:59 +02:00
color: BlueCurrentTheme.colors.alternativeTextColor2,
fontSize: 16,
marginHorizontal: 4,
paddingBottom: 3,
fontWeight: '600',
alignSelf: 'flex-end',
},
memo: {
color: '#9aa0aa',
fontSize: 14,
marginHorizontal: 4,
paddingBottom: 6,
fontWeight: '400',
alignSelf: 'center',
},
paid: {
flex: 3,
alignItems: 'center',
justifyContent: 'center',
},
paidMark: {
marginTop: -100,
marginBottom: 16,
2020-07-15 19:32:59 +02:00
backgroundColor: BlueCurrentTheme.colors.success,
},
detailsRoot: {
flex: 1,
justifyContent: 'flex-end',
marginBottom: 24,
alignItems: 'center',
},
detailsTouch: {
flexDirection: 'row',
alignItems: 'center',
},
detailsText: {
2020-07-15 19:32:59 +02:00
color: BlueCurrentTheme.colors.alternativeTextColor,
fontSize: 14,
marginRight: 8,
},
expired: {
2020-07-15 19:32:59 +02:00
backgroundColor: BlueCurrentTheme.colors.success,
width: 120,
height: 120,
borderRadius: 60,
alignSelf: 'center',
justifyContent: 'center',
marginTop: -100,
marginBottom: 30,
},
activeRoot: {
flex: 1,
alignItems: 'center',
marginTop: 8,
justifyContent: 'space-between',
},
activeQrcode: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
paddingHorizontal: 16,
2020-08-03 19:26:16 +02:00
borderWidth: 6,
borderRadius: 8,
borderColor: '#FFFFFF',
},
additionalInfo: {
2020-07-15 19:32:59 +02:00
backgroundColor: BlueCurrentTheme.colors.brandingColor,
},
});
2018-12-25 17:34:51 +01:00
export default class LNDViewInvoice extends Component {
constructor(props) {
super(props);
2020-05-27 13:12:17 +02:00
const invoice = props.route.params.invoice;
const fromWallet = props.route.params.fromWallet;
2018-12-25 17:34:51 +01:00
this.state = {
invoice,
fromWallet,
isLoading: typeof invoice === 'string',
addressText: typeof invoice === 'object' && 'payment_request' in invoice ? invoice.payment_request : invoice,
isFetchingInvoices: true,
qrCodeHeight: height > width ? width - 20 : width / 2,
2018-12-25 17:34:51 +01:00
};
this.fetchInvoiceInterval = undefined;
2019-08-30 06:14:06 +02:00
BackHandler.addEventListener('hardwareBackPress', this.handleBackButton);
}
2020-01-08 11:58:30 +01:00
componentDidMount() {
this.fetchInvoiceInterval = setInterval(async () => {
if (this.state.isFetchingInvoices) {
try {
const userInvoices = await this.state.fromWallet.getUserInvoices(20);
// fetching only last 20 invoices
// for invoice that was created just now - that should be enough (it is basically the last one, so limit=1 would be sufficient)
// but that might not work as intended IF user creates 21 invoices, and then tries to check the status of invoice #0, it just wont be updated
const updatedUserInvoice = userInvoices.filter(invoice =>
typeof this.state.invoice === 'object'
? invoice.payment_request === this.state.invoice.payment_request
: invoice.payment_request === this.state.invoice,
)[0];
if (typeof updatedUserInvoice !== 'undefined') {
this.setState({ invoice: updatedUserInvoice, isLoading: false, addressText: updatedUserInvoice.payment_request });
if (updatedUserInvoice.ispaid) {
// we fetched the invoice, and it is paid :-)
this.setState({ isFetchingInvoices: false });
2019-05-03 14:36:11 +02:00
ReactNativeHapticFeedback.trigger('notificationSuccess', { ignoreAndroidSystemSettings: false });
clearInterval(this.fetchInvoiceInterval);
this.fetchInvoiceInterval = undefined;
EV(EV.enum.REMOTE_TRANSACTIONS_COUNT_CHANGED); // remote because we want to refetch from server tx list and balance
} else {
const currentDate = new Date();
const now = (currentDate.getTime() / 1000) | 0;
const invoiceExpiration = updatedUserInvoice.timestamp + updatedUserInvoice.expire_time;
if (invoiceExpiration < now && !updatedUserInvoice.ispaid) {
// invoice expired :-(
this.setState({ isFetchingInvoices: false });
2019-05-03 14:36:11 +02:00
ReactNativeHapticFeedback.trigger('notificationError', { ignoreAndroidSystemSettings: false });
clearInterval(this.fetchInvoiceInterval);
this.fetchInvoiceInterval = undefined;
EV(EV.enum.TRANSACTIONS_COUNT_CHANGED);
}
}
}
} catch (error) {
console.log(error);
}
}
2019-01-01 01:09:10 +01:00
}, 3000);
}
async componentWillUnmount() {
clearInterval(this.fetchInvoiceInterval);
this.fetchInvoiceInterval = undefined;
2019-08-30 06:14:06 +02:00
BackHandler.removeEventListener('hardwareBackPress', this.handleBackButton);
2019-01-12 00:01:52 +01:00
}
2019-08-30 06:14:06 +02:00
handleBackButton = () => {
this.props.navigation.goBack(null);
2019-01-12 00:01:52 +01:00
return true;
2019-08-30 06:14:06 +02:00
};
2018-12-25 17:34:51 +01:00
2019-01-05 02:28:08 +01:00
onLayout = () => {
const { height } = Dimensions.get('window');
this.setState({ qrCodeHeight: height > width ? width - 20 : width / 2 });
2019-01-05 02:28:08 +01:00
};
2018-12-25 17:34:51 +01:00
render() {
if (this.state.isLoading) {
2020-07-17 16:07:09 +02:00
return (
<View style={styles.root}>
<BlueLoading />
</View>
2020-07-23 20:04:44 +02:00
);
2018-12-25 17:34:51 +01:00
}
const { invoice } = this.state;
if (typeof invoice === 'object') {
const currentDate = new Date();
const now = (currentDate.getTime() / 1000) | 0;
const invoiceExpiration = invoice.timestamp + invoice.expire_time;
2019-05-04 00:24:17 +02:00
if (this.state.showPreimageQr) {
return (
<SafeBlueArea style={styles.root}>
2020-07-15 19:32:59 +02:00
<StatusBar barStyle="default" />
<View style={styles.center}>
2020-07-20 15:38:46 +02:00
<BlueText>{loc.lndViewInvoice.preimage}:</BlueText>
2019-05-04 00:24:17 +02:00
<BlueSpacing20 />
2020-08-03 19:26:16 +02:00
<View style={styles.qrCodeContainer}>
<QRCode
value={invoice.payment_preimage && typeof invoice.payment_preimage === 'string' ? invoice.payment_preimage : 'none'}
logo={require('../../img/qr-code.png')}
size={this.state.qrCodeHeight}
logoSize={90}
color="#000000"
logoBackgroundColor={BlueCurrentTheme.colors.brandingColor}
backgroundColor="#FFFFFF"
/>
</View>
2019-05-04 00:24:17 +02:00
<BlueSpacing20 />
<BlueCopyTextToClipboard
text={invoice.payment_preimage && typeof invoice.payment_preimage === 'string' ? invoice.payment_preimage : 'none'}
/>
2019-05-04 00:24:17 +02:00
</View>
</SafeBlueArea>
);
}
if (invoice.ispaid || invoice.type === 'paid_invoice') {
return (
<SafeBlueArea style={styles.root}>
2020-07-15 19:32:59 +02:00
<StatusBar barStyle="default" />
<View style={styles.valueRoot}>
2019-11-19 15:49:09 +01:00
{invoice.type === 'paid_invoice' && invoice.value && (
<View style={styles.valueAmount}>
<Text style={styles.valueText}>{invoice.value}</Text>
<Text style={styles.valueSats}>{loc.lndViewInvoice.sats}</Text>
</View>
)}
2019-11-19 15:49:09 +01:00
{invoice.type === 'user_invoice' && invoice.amt && (
<View style={styles.valueAmount}>
<Text style={styles.valueText}>{invoice.amt}</Text>
<Text style={styles.valueSats}>{loc.lndViewInvoice.sats}</Text>
</View>
)}
{!invoice.ispaid && invoice.memo && invoice.memo.length > 0 && <Text style={styles.memo}>{invoice.memo}</Text>}
2019-11-19 15:49:09 +01:00
</View>
<View style={styles.paid}>
<BlueBigCheckmark style={styles.paidMark} />
2019-05-04 00:58:23 +02:00
<BlueText>{loc.lndViewInvoice.has_been_paid}</BlueText>
</View>
<View style={styles.detailsRoot}>
{invoice.payment_preimage && typeof invoice.payment_preimage === 'string' ? (
<TouchableOpacity style={styles.detailsTouch} onPress={() => this.setState({ showPreimageQr: true })}>
2020-07-23 20:04:44 +02:00
<Text style={styles.detailsText}>{loc.send.create_details}</Text>
2020-07-15 19:32:59 +02:00
<Icon name="angle-right" size={18} type="font-awesome" color={BlueCurrentTheme.colors.alternativeTextColor} />
</TouchableOpacity>
) : (
<View />
2019-05-04 00:24:17 +02:00
)}
</View>
</SafeBlueArea>
);
}
if (invoiceExpiration < now && !invoice.ispaid) {
return (
<SafeBlueArea style={styles.root}>
2020-07-15 19:32:59 +02:00
<StatusBar barStyle="default" />
<View style={styles.center}>
<View style={styles.expired}>
2020-07-15 19:32:59 +02:00
<Icon name="times" size={50} type="font-awesome" color={BlueCurrentTheme.colors.successCheck} />
</View>
2019-05-04 00:58:23 +02:00
<BlueText>{loc.lndViewInvoice.wasnt_paid_and_expired}</BlueText>
</View>
</SafeBlueArea>
);
} else if (invoiceExpiration > now && invoice.ispaid) {
if (invoice.ispaid) {
return (
<SafeBlueArea style={styles.root}>
<View style={styles.center}>
2019-05-04 00:58:23 +02:00
<BlueText>{loc.lndViewInvoice.has_been_paid}</BlueText>
</View>
</SafeBlueArea>
);
}
}
}
// Invoice has not expired, nor has it been paid for.
2018-12-25 17:34:51 +01:00
return (
<SafeBlueArea>
2020-07-15 19:32:59 +02:00
<StatusBar barStyle="default" />
<ScrollView>
<View style={styles.activeRoot} onLayout={this.onLayout}>
<View style={styles.activeQrcode}>
2019-02-14 06:15:56 +01:00
<QRCode
value={typeof this.state.invoice === 'object' ? invoice.payment_request : invoice}
2019-02-14 06:15:56 +01:00
logo={require('../../img/qr-code.png')}
size={this.state.qrCodeHeight}
2019-02-14 06:15:56 +01:00
logoSize={90}
2020-08-03 19:26:16 +02:00
color="#000000"
2020-07-15 19:32:59 +02:00
logoBackgroundColor={BlueCurrentTheme.colors.brandingColor}
2020-08-03 19:26:16 +02:00
backgroundColor="#FFFFFF"
/>
</View>
<BlueSpacing20 />
2020-01-08 11:58:30 +01:00
<BlueText>
{loc.lndViewInvoice.please_pay} {invoice.amt} {loc.lndViewInvoice.sats}
</BlueText>
{invoice && 'description' in invoice && invoice.description.length > 0 && (
2019-05-04 00:58:23 +02:00
<BlueText>
{loc.lndViewInvoice.for} {invoice.description}
</BlueText>
)}
<BlueCopyTextToClipboard text={this.state.invoice.payment_request} />
2020-07-15 19:32:59 +02:00
<SecondButton
2020-07-06 23:53:08 +02:00
onPress={() => {
2020-07-15 19:32:59 +02:00
Share.open({ message: `lightning:${invoice.payment_request}` }).catch(error => console.log(error));
}}
2020-07-20 15:38:46 +02:00
title={loc.receive.details_share}
/>
<BlueSpacing20 />
2019-05-22 14:09:00 +02:00
<BlueButton
style={styles.additionalInfo}
onPress={() => this.props.navigation.navigate('LNDViewAdditionalInvoiceInformation', { fromWallet: this.state.fromWallet })}
2019-05-04 00:58:23 +02:00
title={loc.lndViewInvoice.additional_info}
/>
2018-12-25 17:34:51 +01:00
</View>
<BlueSpacing20 />
</ScrollView>
2018-12-25 17:34:51 +01:00
</SafeBlueArea>
);
}
}
LNDViewInvoice.propTypes = {
navigation: PropTypes.shape({
goBack: PropTypes.func,
navigate: PropTypes.func,
popToTop: PropTypes.func,
2018-12-25 17:34:51 +01:00
}),
2020-05-27 13:12:17 +02:00
route: PropTypes.shape({
params: PropTypes.object,
}),
2018-12-25 17:34:51 +01:00
};
2020-07-15 19:32:59 +02:00
LNDViewInvoice.navigationOptions = ({ navigation, route }) =>
route.params.isModal === true
? {
...BlueNavigationStyle(navigation, true, () => navigation.dangerouslyGetParent().pop()),
title: 'Lightning Invoice',
headerLeft: null,
headerStyle: {
backgroundColor: BlueCurrentTheme.colors.customHeader,
},
}
: {
...BlueNavigationStyle(),
title: 'Lightning Invoice',
headerStyle: {
backgroundColor: BlueCurrentTheme.colors.customHeader,
},
};