BlueWallet/screen/wallets/add.js

267 lines
8.7 KiB
JavaScript
Raw Normal View History

2018-07-14 20:54:27 +02:00
/* global alert */
2018-01-30 23:42:38 +01:00
import React, { Component } from 'react';
2018-11-04 22:21:07 +01:00
import { AsyncStorage, ActivityIndicator, Dimensions, View, TextInput } from 'react-native';
2018-07-14 20:54:27 +02:00
import {
BlueTextCentered,
2018-08-15 01:49:49 +02:00
BlueText,
2018-07-14 20:54:27 +02:00
LightningButton,
BitcoinButton,
BlueButtonLink,
BlueFormLabel,
BlueButton,
SafeBlueArea,
BlueCard,
BlueNavigationStyle,
2018-10-31 21:34:12 +01:00
BlueSpacing20,
2018-07-14 20:54:27 +02:00
} from '../../BlueComponents';
2018-08-15 01:49:49 +02:00
import { RadioGroup, RadioButton } from 'react-native-flexi-radio-button';
2018-03-18 03:48:23 +01:00
import PropTypes from 'prop-types';
2018-08-15 01:49:49 +02:00
import { HDSegwitP2SHWallet } from '../../class/hd-segwit-p2sh-wallet';
import { LightningCustodianWallet } from '../../class/lightning-custodian-wallet';
2018-11-04 22:21:07 +01:00
import { AppStorage, SegwitP2SHWallet } from '../../class';
const entropy = require('../../entropy');
2018-03-17 21:39:21 +01:00
let EV = require('../../events');
2018-07-06 18:28:04 +02:00
let A = require('../../analytics');
/** @type {AppStorage} */
2018-03-18 03:48:23 +01:00
let BlueApp = require('../../BlueApp');
2018-05-28 21:18:11 +02:00
let loc = require('../../loc');
2018-07-14 20:54:27 +02:00
const { width } = Dimensions.get('window');
2018-01-30 23:42:38 +01:00
export default class WalletsAdd extends Component {
static navigationOptions = ({ navigation }) => ({
...BlueNavigationStyle(navigation, true),
title: loc.wallets.add.title,
headerLeft: null,
});
2018-01-30 23:42:38 +01:00
constructor(props) {
super(props);
this.state = {
isLoading: true,
2018-03-17 21:39:21 +01:00
};
2018-01-30 23:42:38 +01:00
}
async componentDidMount() {
this.setState({
isLoading: false,
2018-07-14 20:54:27 +02:00
activeBitcoin: true,
label: '',
2018-03-17 21:39:21 +01:00
});
2018-01-30 23:42:38 +01:00
}
2018-07-14 20:54:27 +02:00
setLabel(text) {
this.setState({
label: text,
}); /* also, a hack to make screen update new typed text */
}
2018-08-15 01:49:49 +02:00
onSelect(index, value) {
this.setState({
selectedIndex: index,
selectedValue: value,
});
}
2018-01-30 23:42:38 +01:00
render() {
if (this.state.isLoading) {
return (
2018-03-17 21:39:21 +01:00
<View style={{ flex: 1, paddingTop: 20 }}>
2018-01-30 23:42:38 +01:00
<ActivityIndicator />
</View>
);
}
return (
2018-07-07 15:04:32 +02:00
<SafeBlueArea forceInset={{ horizontal: 'always' }} style={{ flex: 1, paddingTop: 40 }}>
2018-06-28 03:43:28 +02:00
<BlueCard>
2018-07-14 20:54:27 +02:00
<BlueFormLabel>{loc.wallets.add.wallet_name}</BlueFormLabel>
<View
style={{
flexDirection: 'row',
borderColor: '#d2d2d2',
borderBottomColor: '#d2d2d2',
borderWidth: 1.0,
borderBottomWidth: 0.5,
backgroundColor: '#f5f5f5',
minHeight: 44,
height: 44,
marginHorizontal: 20,
alignItems: 'center',
marginVertical: 16,
borderRadius: 4,
2018-03-17 21:39:21 +01:00
}}
>
<TextInput
value={this.state.label}
placeholderTextColor="#81868e"
placeholder={loc.wallets.add.label_new_segwit}
onChangeText={text => {
this.setLabel(text);
}}
style={{ flex: 1, marginHorizontal: 8, color: '#81868e' }}
editable={!this.state.isLoading}
underlineColorAndroid="transparent"
/>
</View>
2018-07-14 20:54:27 +02:00
<BlueFormLabel>{loc.wallets.add.wallet_type}</BlueFormLabel>
<View style={{ flexDirection: 'row', paddingTop: 10, paddingLeft: 20, width: width - 80, borderColor: 'red', borderWidth: 0 }}>
<View style={{ width: (width - 60) / 3, height: (width - 60) / 3, backgroundColor: 'transparent' }}>
<BitcoinButton
active={this.state.activeBitcoin}
onPress={() => {
this.setState({
activeBitcoin: true,
activeLightning: false,
});
}}
style={{
width: (width - 60) / 3,
height: (width - 60) / 3,
}}
title={loc.wallets.add.create}
/>
</View>
<View style={{ top: 40, width: (width - 185) / 3, height: 50, borderColor: 'red', borderWidth: 0 }}>
<BlueTextCentered style={{ textAlign: 'center' }}>{loc.wallets.add.or}</BlueTextCentered>
</View>
<View style={{ width: (width - 60) / 3, height: (width - 60) / 3, position: 'absolute', top: 10, right: 0 }}>
<LightningButton
active={this.state.activeLightning}
onPress={() => {
this.setState({
activeBitcoin: false,
activeLightning: true,
});
}}
style={{
width: (width - 60) / 3,
height: (width - 60) / 3,
}}
title={loc.wallets.add.create}
/>
</View>
</View>
2018-08-15 01:49:49 +02:00
<View>
{(() => {
if (this.state.activeBitcoin) {
return (
<View
style={{
width: 200,
height: 100,
left: 10,
}}
>
<RadioGroup onSelect={(index, value) => this.onSelect(index, value)} selectedIndex={0}>
<RadioButton value={new HDSegwitP2SHWallet().type}>
<BlueText>{new HDSegwitP2SHWallet().getTypeReadable()}</BlueText>
</RadioButton>
<RadioButton value={new SegwitP2SHWallet().type}>
<BlueText>{new SegwitP2SHWallet().getTypeReadable()}</BlueText>
</RadioButton>
</RadioGroup>
</View>
);
2018-10-31 21:34:12 +01:00
} else {
return (
<View>
<BlueSpacing20 />
</View>
);
2018-08-15 01:49:49 +02:00
}
})()}
</View>
2018-07-14 20:54:27 +02:00
<View
style={{
alignItems: 'center',
2018-03-17 21:39:21 +01:00
}}
2018-07-14 20:54:27 +02:00
>
<BlueButton
title={loc.wallets.add.create}
buttonStyle={{
width: width / 1.5,
}}
onPress={() => {
this.props.navigation.goBack();
setTimeout(async () => {
2018-08-15 01:49:49 +02:00
let w;
if (this.state.activeLightning) {
// lightning was selected
return alert('Coming soon');
// eslint-disable-next-line
for (let t of BlueApp.getWallets()) {
if (t.type === new LightningCustodianWallet().type) {
// already exist
return alert('Only 1 Ligthning wallet allowed for now');
}
}
w = new LightningCustodianWallet();
w.setLabel(this.state.label || w.getTypeReadable());
2018-11-04 22:21:07 +01:00
try {
let blitzhub = await AsyncStorage.getItem(AppStorage.BLITZHUB);
if (blitzhub) {
w.setBaseURI(blitzhub);
w.init();
}
await w.createAccount();
await w.authorize();
} catch (Err) {
console.warn('lnd create failure', Err);
return; // giving app, not adding anything
}
A(A.ENUM.CREATED_LIGHTNING_WALLET);
} else if (this.state.selectedIndex === 1) {
// btc was selected
2018-08-15 01:49:49 +02:00
// index 1 radio - segwit single address
w = new SegwitP2SHWallet();
w.setLabel(this.state.label || loc.wallets.add.label_new_segwit);
} else {
// zero index radio - HD segwit
w = new HDSegwitP2SHWallet();
w.setLabel((this.state.label || loc.wallets.add.label_new_segwit) + ' HD');
}
let intervalId;
intervalId = setInterval(async () => {
if (entropy.gotEnoughEntropy()) {
w.generate();
BlueApp.wallets.push(w);
await BlueApp.saveToDisk();
EV(EV.enum.WALLETS_COUNT_CHANGED);
A(A.ENUM.CREATED_WALLET);
clearInterval(intervalId);
} else {
console.log('dont have enough entropy, waiting to get some');
}
}, 500);
2018-07-14 20:54:27 +02:00
}, 1);
}}
/>
<BlueButtonLink
title={loc.wallets.add.import_wallet}
onPress={() => {
this.props.navigation.navigate('ImportWallet');
2018-07-14 20:54:27 +02:00
}}
/>
</View>
2018-01-30 23:42:38 +01:00
</BlueCard>
</SafeBlueArea>
);
}
}
2018-03-18 03:48:23 +01:00
WalletsAdd.propTypes = {
navigation: PropTypes.shape({
navigate: PropTypes.func,
goBack: PropTypes.func,
}),
};