mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
188 lines
5.9 KiB
JavaScript
188 lines
5.9 KiB
JavaScript
import React from 'react';
|
|
import { Linking, AppState, Clipboard, StyleSheet, KeyboardAvoidingView, Platform, View } from 'react-native';
|
|
import Modal from 'react-native-modal';
|
|
import { NavigationActions } from 'react-navigation';
|
|
import MainBottomTabs from './MainBottomTabs';
|
|
import NavigationService from './NavigationService';
|
|
import { BlueTextCentered, BlueButton } from './BlueComponents';
|
|
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
|
const bitcoin = require('bitcoinjs-lib');
|
|
const bitcoinModalString = 'Bitcoin address';
|
|
const lightningModalString = 'Lightning Invoice';
|
|
const loc = require('./loc');
|
|
/** @type {AppStorage} */
|
|
const BlueApp = require('./BlueApp');
|
|
|
|
export default class App extends React.Component {
|
|
navigator = null;
|
|
|
|
state = {
|
|
appState: AppState.currentState,
|
|
isClipboardContentModalVisible: false,
|
|
clipboardContentModalAddressType: bitcoinModalString,
|
|
clipboardContent: '',
|
|
};
|
|
|
|
componentDidMount() {
|
|
Linking.getInitialURL()
|
|
.then(url => this.handleOpenURL({ url }))
|
|
.catch(console.error);
|
|
|
|
Linking.addEventListener('url', this.handleOpenURL);
|
|
AppState.addEventListener('change', this._handleAppStateChange);
|
|
this._handleAppStateChange(this.state.appState, true);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
Linking.removeEventListener('url', this.handleOpenURL);
|
|
AppState.removeEventListener('change', this._handleAppStateChange);
|
|
}
|
|
|
|
_handleAppStateChange = async (nextAppState, force = false) => {
|
|
if (BlueApp.getWallets().length > 0) {
|
|
if ((this.state.appState.match(/inactive|background/) && nextAppState === 'active') || force) {
|
|
const clipboard = await Clipboard.getString();
|
|
if (this.state.clipboardContent !== clipboard && (this.isBitcoinAddress(clipboard) || this.isLightningInvoice(clipboard))) {
|
|
this.setState({ isClipboardContentModalVisible: true });
|
|
}
|
|
this.setState({ clipboardContent: clipboard });
|
|
}
|
|
this.setState({ appState: nextAppState });
|
|
}
|
|
};
|
|
|
|
isBitcoinAddress(address) {
|
|
let isValidBitcoinAddress = false;
|
|
try {
|
|
bitcoin.address.toOutputScript(address);
|
|
isValidBitcoinAddress = true;
|
|
this.setState({ clipboardContentModalAddressType: bitcoinModalString });
|
|
} catch (err) {
|
|
isValidBitcoinAddress = false;
|
|
}
|
|
if (!isValidBitcoinAddress) {
|
|
if (address.indexOf('bitcoin:') === 0 || address.indexOf('BITCOIN:') === 0) {
|
|
isValidBitcoinAddress = true;
|
|
this.setState({ clipboardContentModalAddressType: bitcoinModalString });
|
|
}
|
|
}
|
|
return isValidBitcoinAddress;
|
|
}
|
|
|
|
isLightningInvoice(invoice) {
|
|
let isValidLightningInvoice = false;
|
|
if (invoice.indexOf('lightning:lnb') === 0 || invoice.indexOf('LIGHTNING:lnb') === 0 || invoice.toLowerCase().startsWith('lnb')) {
|
|
this.setState({ clipboardContentModalAddressType: lightningModalString });
|
|
isValidLightningInvoice = true;
|
|
}
|
|
return isValidLightningInvoice;
|
|
}
|
|
|
|
handleOpenURL = event => {
|
|
if (event.url === null) {
|
|
return;
|
|
}
|
|
if (typeof event.url !== 'string') {
|
|
return;
|
|
}
|
|
if (this.isBitcoinAddress(event.url)) {
|
|
this.navigator &&
|
|
this.navigator.dispatch(
|
|
NavigationActions.navigate({
|
|
routeName: 'SendDetails',
|
|
params: {
|
|
uri: event.url,
|
|
},
|
|
}),
|
|
);
|
|
} else if (this.isLightningInvoice(event.url)) {
|
|
this.navigator &&
|
|
this.navigator.dispatch(
|
|
NavigationActions.navigate({
|
|
routeName: 'ScanLndInvoice',
|
|
params: {
|
|
uri: event.url,
|
|
},
|
|
}),
|
|
);
|
|
}
|
|
};
|
|
|
|
renderClipboardContentModal = () => {
|
|
return (
|
|
<Modal
|
|
onModalShow={() => ReactNativeHapticFeedback.trigger('impactLight', false)}
|
|
isVisible={this.state.isClipboardContentModalVisible}
|
|
style={styles.bottomModal}
|
|
onBackdropPress={() => {
|
|
this.setState({ isClipboardContentModalVisible: false });
|
|
}}
|
|
>
|
|
<KeyboardAvoidingView behavior={Platform.OS === 'ios' ? 'position' : null}>
|
|
<View style={styles.modalContent}>
|
|
<BlueTextCentered>
|
|
You have a {this.state.clipboardContentModalAddressType} on your clipboard. Would you like to use it for a transaction?
|
|
</BlueTextCentered>
|
|
<View style={styles.modelContentButtonLayout}>
|
|
<BlueButton
|
|
noMinWidth
|
|
title={loc.send.details.cancel}
|
|
onPress={() => this.setState({ isClipboardContentModalVisible: false })}
|
|
/>
|
|
<View style={{ marginHorizontal: 8 }} />
|
|
<BlueButton
|
|
noMinWidth
|
|
title="OK"
|
|
onPress={() => {
|
|
this.setState({ isClipboardContentModalVisible: false }, async () => {
|
|
const clipboard = await Clipboard.getString();
|
|
setTimeout(() => this.handleOpenURL({ url: clipboard }), 100);
|
|
});
|
|
}}
|
|
/>
|
|
</View>
|
|
</View>
|
|
</KeyboardAvoidingView>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<View style={{ flex: 1 }}>
|
|
<MainBottomTabs
|
|
ref={nav => {
|
|
this.navigator = nav;
|
|
NavigationService.setTopLevelNavigator(nav);
|
|
}}
|
|
/>
|
|
{this.renderClipboardContentModal()}
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
modalContent: {
|
|
backgroundColor: '#FFFFFF',
|
|
padding: 22,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
borderTopLeftRadius: 16,
|
|
borderTopRightRadius: 16,
|
|
borderColor: 'rgba(0, 0, 0, 0.1)',
|
|
minHeight: 200,
|
|
height: 200,
|
|
},
|
|
bottomModal: {
|
|
justifyContent: 'flex-end',
|
|
margin: 0,
|
|
},
|
|
modelContentButtonLayout: {
|
|
flexDirection: 'row',
|
|
margin: 16,
|
|
justifyContent: 'space-between',
|
|
alignItems: 'flex-end',
|
|
},
|
|
});
|