2018-12-25 17:34:51 +01:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { Animated, StyleSheet, View, TouchableOpacity, Clipboard, Share } from 'react-native';
|
|
|
|
// import { QRCode } from 'react-native-custom-qr-codes';
|
2018-12-27 07:12:19 +01:00
|
|
|
import { BlueLoading, BlueText, SafeBlueArea, BlueButton, BlueNavigationStyle } from '../../BlueComponents';
|
2018-12-25 17:34:51 +01:00
|
|
|
import PropTypes from 'prop-types';
|
2018-12-27 07:12:19 +01:00
|
|
|
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
2018-12-25 17:34:51 +01:00
|
|
|
/** @type {AppStorage} */
|
|
|
|
let BlueApp = require('../../BlueApp');
|
2018-12-27 07:12:19 +01:00
|
|
|
const loc = require('../../loc');
|
|
|
|
const EV = require('../../events');
|
2018-12-25 17:34:51 +01:00
|
|
|
const QRFast = require('react-native-qrcode');
|
|
|
|
|
|
|
|
export default class LNDViewInvoice extends Component {
|
|
|
|
static navigationOptions = ({ navigation }) => ({
|
|
|
|
...BlueNavigationStyle(navigation, true, () => navigation.dismiss()),
|
|
|
|
title: loc.receive.header,
|
|
|
|
headerLeft: null,
|
|
|
|
});
|
2018-12-27 07:12:19 +01:00
|
|
|
|
2018-12-25 17:34:51 +01:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2018-12-27 07:12:19 +01:00
|
|
|
const invoice = props.navigation.getParam('invoice');
|
|
|
|
const fromWallet = props.navigation.getParam('fromWallet');
|
2018-12-25 17:34:51 +01:00
|
|
|
this.state = {
|
|
|
|
invoice,
|
2018-12-27 07:12:19 +01:00
|
|
|
fromWallet,
|
|
|
|
addressText: typeof invoice === 'object' ? invoice.payment_request : invoice,
|
2018-12-25 17:34:51 +01:00
|
|
|
};
|
2018-12-27 07:12:19 +01:00
|
|
|
this.fetchInvoiceInterval = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
async componentDidMount() {
|
|
|
|
if (!this.state.invoice.isLoading) {
|
|
|
|
this.fetchInvoiceInterval = setInterval(async () => {
|
|
|
|
const userInvoices = JSON.stringify(await this.state.fromWallet.getUserInvoices());
|
|
|
|
const updatedUserInvoice = JSON.parse(userInvoices).filter(
|
|
|
|
invoice => invoice.payment_request === this.state.invoice.payment_request,
|
|
|
|
)[0];
|
|
|
|
this.setState({ invoice: updatedUserInvoice });
|
|
|
|
if (updatedUserInvoice.ispaid) {
|
|
|
|
ReactNativeHapticFeedback.trigger('notificationSuccess', false);
|
|
|
|
clearInterval(this.fetchInvoiceInterval);
|
|
|
|
EV(EV.enum.TRANSACTIONS_COUNT_CHANGED);
|
|
|
|
}
|
|
|
|
}, 5000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
clearInterval(this.fetchInvoiceInterval)
|
2018-12-25 17:34:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
copyToClipboard = () => {
|
|
|
|
this.setState({ addressText: loc.receive.details.copiedToClipboard }, () => {
|
|
|
|
Clipboard.setString(this.state.invoice);
|
|
|
|
setTimeout(() => this.setState({ addressText: this.state.invoice }), 1000);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.state.isLoading) {
|
|
|
|
return <BlueLoading />;
|
|
|
|
}
|
|
|
|
|
2018-12-27 07:12:19 +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;
|
|
|
|
|
|
|
|
if (invoice.ispaid) {
|
|
|
|
return (
|
|
|
|
<SafeBlueArea style={{ flex: 1 }}>
|
|
|
|
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
|
|
|
|
<BlueText>This invoice has been paid for.</BlueText>
|
|
|
|
</View>
|
|
|
|
</SafeBlueArea>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (invoiceExpiration < now && !invoice.ispaid) {
|
|
|
|
return (
|
|
|
|
<SafeBlueArea style={{ flex: 1 }}>
|
|
|
|
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
|
|
|
|
<BlueText>This invoice was not paid for and has expired.</BlueText>
|
|
|
|
</View>
|
|
|
|
</SafeBlueArea>
|
|
|
|
);
|
|
|
|
} else if (invoiceExpiration > now && invoice.ispaid) {
|
|
|
|
if (invoice.ispaid) {
|
|
|
|
return (
|
|
|
|
<SafeBlueArea style={{ flex: 1 }}>
|
|
|
|
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
|
|
|
|
<BlueText>'This invoice has been paid for.'</BlueText>
|
|
|
|
</View>
|
|
|
|
</SafeBlueArea>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invoice has not expired, nor has it been paid for.
|
2018-12-25 17:34:51 +01:00
|
|
|
return (
|
|
|
|
<SafeBlueArea style={{ flex: 1 }}>
|
|
|
|
<View style={{ flex: 1, justifyContent: 'space-between', alignItems: 'center' }}>
|
|
|
|
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center', paddingHorizontal: 16 }}>
|
|
|
|
<QRFast
|
2018-12-27 07:12:19 +01:00
|
|
|
value={typeof this.state.invoice === 'object' ? invoice.payment_request : invoice}
|
2018-12-25 17:34:51 +01:00
|
|
|
size={300}
|
|
|
|
fgColor={BlueApp.settings.brandingColor}
|
|
|
|
bgColor={BlueApp.settings.foregroundColor}
|
|
|
|
/>
|
|
|
|
<TouchableOpacity onPress={this.copyToClipboard}>
|
|
|
|
<Animated.Text style={styles.address} numberOfLines={0}>
|
|
|
|
{this.state.addressText}
|
|
|
|
</Animated.Text>
|
|
|
|
</TouchableOpacity>
|
|
|
|
</View>
|
|
|
|
<View style={{ marginBottom: 24 }}>
|
|
|
|
<BlueButton
|
|
|
|
icon={{
|
|
|
|
name: 'share-alternative',
|
|
|
|
type: 'entypo',
|
|
|
|
color: BlueApp.settings.buttonTextColor,
|
|
|
|
}}
|
|
|
|
onPress={async () => {
|
|
|
|
Share.share({
|
2018-12-27 07:12:19 +01:00
|
|
|
message: invoice,
|
2018-12-25 17:34:51 +01:00
|
|
|
});
|
|
|
|
}}
|
|
|
|
title={loc.receive.details.share}
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
</SafeBlueArea>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
address: {
|
|
|
|
marginVertical: 32,
|
|
|
|
fontSize: 15,
|
|
|
|
color: '#9aa0aa',
|
|
|
|
textAlign: 'center',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
LNDViewInvoice.propTypes = {
|
|
|
|
navigation: PropTypes.shape({
|
|
|
|
goBack: PropTypes.function,
|
|
|
|
getParam: PropTypes.function,
|
|
|
|
}),
|
|
|
|
};
|