2020-10-29 22:13:54 +01:00
|
|
|
import React, { useState, useRef, useEffect, useContext } from 'react';
|
2020-11-11 17:45:19 +01:00
|
|
|
import { Keyboard, KeyboardAvoidingView, Platform, StatusBar, StyleSheet, Text, TouchableOpacity, View } from 'react-native';
|
2020-10-29 22:13:54 +01:00
|
|
|
import LottieView from 'lottie-react-native';
|
|
|
|
import { Icon } from 'react-native-elements';
|
|
|
|
import { BlueButton, BlueListItem, BlueNavigationStyle, BlueSpacing20 } from '../../BlueComponents';
|
|
|
|
import { MultisigHDWallet } from '../../class';
|
|
|
|
import { useNavigation, useTheme } from '@react-navigation/native';
|
|
|
|
import loc from '../../loc';
|
|
|
|
import Modal from 'react-native-modal';
|
|
|
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
|
|
import { BlueStorageContext } from '../../blue_modules/storage-context';
|
|
|
|
|
|
|
|
const WalletsAddMultisig = () => {
|
2020-11-11 17:45:19 +01:00
|
|
|
const { colors } = useTheme();
|
2020-10-29 22:13:54 +01:00
|
|
|
const { navigate } = useNavigation();
|
|
|
|
const loadingAnimation = useRef();
|
|
|
|
|
|
|
|
const [m, setM] = useState(2);
|
|
|
|
const [n, setN] = useState(3);
|
|
|
|
const [isModalVisible, setIsModalVisible] = useState(false);
|
|
|
|
const [format, setFormat] = useState(MultisigHDWallet.FORMAT_P2WSH);
|
|
|
|
const { isAdancedModeEnabled } = useContext(BlueStorageContext);
|
|
|
|
const [isAdvancedModeEnabledRender, setIsAdvancedModeEnabledRender] = useState(false);
|
|
|
|
|
|
|
|
const stylesHook = StyleSheet.create({
|
|
|
|
root: {
|
|
|
|
backgroundColor: colors.elevated,
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
textdesc: {
|
|
|
|
color: colors.alternativeTextColor,
|
|
|
|
},
|
|
|
|
whiteBackground: { backgroundColor: colors.background },
|
|
|
|
itemNameWrapper: { backgroundColor: colors.elevated },
|
|
|
|
nativeName: { color: colors.foregroundColor },
|
|
|
|
filteTextWrapper: { color: colors.foregroundColor, right: 0, position: 'absolute' },
|
|
|
|
modalContentShort: {
|
|
|
|
backgroundColor: colors.elevated,
|
|
|
|
},
|
|
|
|
textSubtitle: {
|
|
|
|
color: colors.alternativeTextColor,
|
|
|
|
},
|
|
|
|
selectedItem: {
|
2020-11-05 16:50:58 +01:00
|
|
|
backgroundColor: colors.elevated,
|
2020-10-29 22:13:54 +01:00
|
|
|
},
|
|
|
|
deSelectedItem: {
|
|
|
|
backgroundColor: 'transparent',
|
|
|
|
},
|
|
|
|
textHeader: {
|
|
|
|
color: colors.outputValue,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
isAdancedModeEnabled().then(setIsAdvancedModeEnabledRender);
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const onLetsStartPress = () => {
|
|
|
|
navigate('WalletsAddMultisigStep2', { m, n, format });
|
|
|
|
};
|
|
|
|
|
|
|
|
const setFormatP2wsh = () => setFormat(MultisigHDWallet.FORMAT_P2WSH);
|
|
|
|
|
|
|
|
const setFormatP2shP2wsh = () => setFormat(MultisigHDWallet.FORMAT_P2SH_P2WSH);
|
|
|
|
|
|
|
|
const setFormatP2sh = () => setFormat(MultisigHDWallet.FORMAT_P2SH);
|
|
|
|
|
|
|
|
const isP2wsh = () => format === MultisigHDWallet.FORMAT_P2WSH;
|
|
|
|
|
|
|
|
const isP2shP2wsh = () => format === MultisigHDWallet.FORMAT_P2SH_P2WSH;
|
|
|
|
|
|
|
|
const isP2sh = () => format === MultisigHDWallet.FORMAT_P2SH;
|
|
|
|
|
|
|
|
const increaseM = () => {
|
|
|
|
if (n === m) return;
|
|
|
|
if (m === 7) return;
|
|
|
|
setM(m + 1);
|
|
|
|
};
|
|
|
|
const decreaseM = () => {
|
|
|
|
if (m === 2) return;
|
|
|
|
setM(m - 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
const increaseN = () => {
|
|
|
|
if (n === 7) return;
|
|
|
|
setN(n + 1);
|
|
|
|
};
|
|
|
|
const decreaseN = () => {
|
|
|
|
if (n === m) return;
|
|
|
|
setN(n - 1);
|
|
|
|
};
|
|
|
|
|
|
|
|
const renderModal = () => {
|
|
|
|
return (
|
2020-11-11 17:45:19 +01:00
|
|
|
<Modal
|
|
|
|
isVisible={isModalVisible}
|
|
|
|
style={styles.bottomModal}
|
|
|
|
onBackdropPress={() => {
|
|
|
|
Keyboard.dismiss();
|
|
|
|
setIsModalVisible(false);
|
|
|
|
}}
|
|
|
|
>
|
2020-10-29 22:13:54 +01:00
|
|
|
<KeyboardAvoidingView behavior={Platform.OS === 'ios' ? 'position' : null}>
|
|
|
|
<View style={[styles.modalContentShort, stylesHook.modalContentShort]}>
|
2020-11-11 17:45:19 +01:00
|
|
|
<Text style={[styles.textHeader, stylesHook.textHeader]}>{loc.multisig.quorum_header}</Text>
|
|
|
|
<Text style={[styles.textSubtitle, stylesHook.textSubtitle]}>{loc.multisig.required_keys_out_of_total}</Text>
|
2020-10-29 22:13:54 +01:00
|
|
|
<View style={styles.rowCenter}>
|
|
|
|
<View style={styles.column}>
|
|
|
|
<TouchableOpacity onPress={increaseM} disabled={n === m || m === 7} style={styles.chevron}>
|
|
|
|
<Icon
|
|
|
|
name="chevron-up"
|
|
|
|
size={22}
|
|
|
|
type="octicon"
|
|
|
|
color={n === m || m === 7 ? colors.buttonDisabledTextColor : '#007AFF'}
|
|
|
|
/>
|
|
|
|
</TouchableOpacity>
|
|
|
|
<Text style={[styles.textM, stylesHook.textHeader]}>{m}</Text>
|
|
|
|
<TouchableOpacity onPress={decreaseM} disabled={m === 2} style={styles.chevron}>
|
|
|
|
<Icon name="chevron-down" size={22} type="octicon" color={m === 2 ? colors.buttonDisabledTextColor : '#007AFF'} />
|
|
|
|
</TouchableOpacity>
|
|
|
|
</View>
|
|
|
|
|
|
|
|
<View style={styles.columnOf}>
|
|
|
|
<Text style={styles.textOf}>{loc.multisig.of}</Text>
|
|
|
|
</View>
|
|
|
|
|
|
|
|
<View style={styles.column}>
|
|
|
|
<TouchableOpacity disabled={n === 7} onPress={increaseN} style={styles.chevron}>
|
|
|
|
<Icon name="chevron-up" size={22} type="octicon" color={n === 7 ? colors.buttonDisabledTextColor : '#007AFF'} />
|
|
|
|
</TouchableOpacity>
|
|
|
|
<Text style={[styles.textM, stylesHook.textHeader]}>{n}</Text>
|
|
|
|
<TouchableOpacity onPress={decreaseN} disabled={n === m} style={styles.chevron}>
|
|
|
|
<Icon name="chevron-down" size={22} type="octicon" color={n === m ? colors.buttonDisabledTextColor : '#007AFF'} />
|
|
|
|
</TouchableOpacity>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
|
|
|
|
<BlueSpacing20 />
|
|
|
|
|
|
|
|
<Text style={[styles.textHeader, stylesHook.textHeader]}>{loc.multisig.wallet_type}</Text>
|
|
|
|
<BlueSpacing20 />
|
|
|
|
<BlueListItem
|
|
|
|
bottomDivider={false}
|
|
|
|
onPress={setFormatP2wsh}
|
|
|
|
title={`${loc.multisig.native_segwit_title} (${MultisigHDWallet.FORMAT_P2WSH})`}
|
|
|
|
checkmark={isP2wsh()}
|
2020-11-05 16:50:58 +01:00
|
|
|
containerStyle={[styles.borderRadius6, styles.item, isP2wsh() ? stylesHook.selectedItem : stylesHook.deSelectedItem]}
|
2020-10-29 22:13:54 +01:00
|
|
|
/>
|
|
|
|
<BlueListItem
|
|
|
|
bottomDivider={false}
|
|
|
|
onPress={setFormatP2shP2wsh}
|
|
|
|
title={`${loc.multisig.wrapped_segwit_title} (${MultisigHDWallet.FORMAT_P2SH_P2WSH})`}
|
|
|
|
checkmark={isP2shP2wsh()}
|
2020-11-05 16:50:58 +01:00
|
|
|
containerStyle={[styles.borderRadius6, styles.item, isP2shP2wsh() ? stylesHook.selectedItem : stylesHook.deSelectedItem]}
|
2020-10-29 22:13:54 +01:00
|
|
|
/>
|
|
|
|
<BlueListItem
|
|
|
|
bottomDivider={false}
|
|
|
|
onPress={setFormatP2sh}
|
|
|
|
title={`${loc.multisig.legacy_title} (${MultisigHDWallet.FORMAT_P2SH})`}
|
|
|
|
checkmark={isP2sh()}
|
2020-11-05 16:50:58 +01:00
|
|
|
containerStyle={[styles.borderRadius6, styles.item, isP2sh() ? stylesHook.selectedItem : stylesHook.deSelectedItem]}
|
2020-10-29 22:13:54 +01:00
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
</KeyboardAvoidingView>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const showAdvancedOptionsModal = () => {
|
|
|
|
setIsModalVisible(true);
|
|
|
|
};
|
|
|
|
|
|
|
|
const getCurrentlySelectedFormat = code => {
|
|
|
|
switch (code) {
|
|
|
|
case 'format':
|
|
|
|
return WalletsAddMultisig.getCurrentFormatReadable(format);
|
|
|
|
case 'quorum':
|
|
|
|
return loc.formatString(loc.multisig.quorum, { m, n });
|
|
|
|
default:
|
|
|
|
throw new Error('This should never happen');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<SafeAreaView style={stylesHook.root}>
|
2020-11-05 12:38:04 +01:00
|
|
|
<StatusBar barStyle="light-content" />
|
2020-10-29 22:13:54 +01:00
|
|
|
<View style={styles.descriptionContainer}>
|
|
|
|
<View style={styles.imageWrapper}>
|
|
|
|
<LottieView source={require('../../img/msvault.json')} autoPlay ref={loadingAnimation} loop={false} />
|
|
|
|
</View>
|
|
|
|
<BlueSpacing20 />
|
|
|
|
<Text style={[styles.textdesc, stylesHook.textdesc]}>
|
|
|
|
{loc.multisig.what_is_vault}
|
|
|
|
<Text style={[styles.textdescBold, stylesHook.textdesc]}>
|
|
|
|
{loc.formatString(loc.multisig.what_is_vault_numberOfWallets, { m, n })}
|
|
|
|
</Text>
|
|
|
|
<Text style={[styles.textdesc, stylesHook.textdesc]}>{loc.multisig.what_is_vault_wallet}</Text>
|
|
|
|
</Text>
|
|
|
|
|
|
|
|
<BlueSpacing20 />
|
|
|
|
|
|
|
|
<Text style={[styles.textdesc, stylesHook.textdesc]}>
|
|
|
|
{loc.multisig.needs}
|
|
|
|
<Text style={[styles.textdescBold, stylesHook.textdesc]}>
|
|
|
|
{loc.formatString(loc.multisig.what_is_vault_description_number_of_vault_keys, { m })}
|
|
|
|
</Text>
|
|
|
|
<Text style={[styles.textdesc, stylesHook.textdesc]}>{loc.multisig.what_is_vault_description_to_spend}</Text>
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
{isAdvancedModeEnabledRender && (
|
|
|
|
<View style={styles.advancedOptionsContainer}>
|
|
|
|
<BlueListItem
|
|
|
|
onPress={showAdvancedOptionsModal}
|
|
|
|
title={loc.multisig.vault_advanced_customize}
|
|
|
|
subtitle={`${getCurrentlySelectedFormat('format')}, ${getCurrentlySelectedFormat('quorum')}`}
|
|
|
|
chevron
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
)}
|
|
|
|
<View style={styles.buttonContainer}>
|
|
|
|
<BlueButton buttonTextColor={colors.buttonAlternativeTextColor} title={loc.multisig.lets_start} onPress={onLetsStartPress} />
|
|
|
|
</View>
|
|
|
|
{renderModal()}
|
|
|
|
</SafeAreaView>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
modalFlatList: { width: '100%' },
|
|
|
|
itemNameWrapper: { flexDirection: 'row', paddingTop: 20, paddingBottom: 0 },
|
|
|
|
textWrapper: { paddingLeft: 10, flex: 1, flexDirection: 'row' },
|
|
|
|
nativeName: { fontSize: 16 },
|
|
|
|
filteTextWrapper: { right: 0, position: 'absolute' },
|
|
|
|
filterText: { fontSize: 16, color: 'gray' },
|
|
|
|
advancedOptionsContainer: {},
|
|
|
|
bottomModal: {
|
|
|
|
justifyContent: 'flex-end',
|
|
|
|
margin: 0,
|
|
|
|
},
|
2020-11-05 16:50:58 +01:00
|
|
|
item: {
|
|
|
|
paddingHorizontal: 0,
|
|
|
|
},
|
2020-10-29 22:13:54 +01:00
|
|
|
descriptionContainer: {
|
|
|
|
alignContent: 'center',
|
|
|
|
justifyContent: 'center',
|
|
|
|
flex: 0.8,
|
|
|
|
},
|
|
|
|
modalContentShort: {
|
|
|
|
padding: 24,
|
|
|
|
justifyContent: 'center',
|
|
|
|
borderTopLeftRadius: 16,
|
|
|
|
borderTopRightRadius: 16,
|
|
|
|
borderColor: 'rgba(0, 0, 0, 0.1)',
|
|
|
|
minHeight: 350,
|
|
|
|
},
|
|
|
|
formatSelectorTextWrapper: {
|
|
|
|
borderRadius: 6,
|
|
|
|
paddingVertical: 12,
|
|
|
|
paddingHorizontal: 8,
|
|
|
|
borderColor: 0,
|
|
|
|
},
|
|
|
|
borderRadius6: {
|
|
|
|
borderRadius: 6,
|
|
|
|
},
|
|
|
|
formatSelectorTextWrapperSelected: {
|
|
|
|
backgroundColor: '#EEF0F4',
|
|
|
|
borderRadius: 6,
|
|
|
|
paddingVertical: 12,
|
|
|
|
paddingHorizontal: 8,
|
|
|
|
borderColor: 0,
|
|
|
|
},
|
|
|
|
buttonContainer: {
|
2020-11-05 12:38:04 +01:00
|
|
|
flexDirection: 'row',
|
|
|
|
margin: 24,
|
|
|
|
alignItems: 'center',
|
2020-10-29 22:13:54 +01:00
|
|
|
justifyContent: 'flex-end',
|
|
|
|
},
|
|
|
|
formatSelectorText: {
|
|
|
|
color: '#13244D',
|
|
|
|
fontSize: 16,
|
|
|
|
fontWeight: '500',
|
|
|
|
},
|
|
|
|
column: {
|
|
|
|
paddingRight: 20,
|
|
|
|
paddingLeft: 20,
|
|
|
|
},
|
|
|
|
chevron: {
|
|
|
|
paddingBottom: 10,
|
|
|
|
paddingTop: 10,
|
|
|
|
fontSize: 24,
|
|
|
|
},
|
|
|
|
columnOf: {
|
|
|
|
paddingRight: 20,
|
|
|
|
paddingLeft: 20,
|
|
|
|
justifyContent: 'center',
|
|
|
|
},
|
|
|
|
textdesc: {
|
|
|
|
fontWeight: '500',
|
|
|
|
alignSelf: 'center',
|
|
|
|
textAlign: 'center',
|
|
|
|
},
|
|
|
|
textdescBold: {
|
|
|
|
fontWeight: '700',
|
|
|
|
alignSelf: 'center',
|
|
|
|
textAlign: 'center',
|
|
|
|
},
|
|
|
|
textM: {
|
|
|
|
fontSize: 50,
|
|
|
|
fontWeight: '700',
|
|
|
|
},
|
|
|
|
textOf: {
|
|
|
|
fontSize: 30,
|
|
|
|
color: '#9AA0AA',
|
|
|
|
},
|
|
|
|
textHeader: {
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: 'bold',
|
|
|
|
},
|
|
|
|
textSubtitle: {
|
|
|
|
fontSize: 13,
|
|
|
|
fontWeight: '500',
|
|
|
|
marginTop: 4,
|
|
|
|
},
|
|
|
|
imageWrapper: {
|
|
|
|
borderWidth: 0,
|
|
|
|
flexDirection: 'row',
|
|
|
|
height: 160,
|
|
|
|
},
|
|
|
|
rowCenter: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'center',
|
|
|
|
paddingVertical: 40,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
WalletsAddMultisig.getCurrentFormatReadable = f => {
|
|
|
|
switch (f) {
|
|
|
|
case MultisigHDWallet.FORMAT_P2WSH:
|
|
|
|
return loc.multisig.native_segwit_title;
|
|
|
|
case MultisigHDWallet.FORMAT_P2SH_P2WSH:
|
|
|
|
case MultisigHDWallet.FORMAT_P2SH_P2WSH_ALT:
|
|
|
|
return loc.multisig.wrapped_segwit_title;
|
|
|
|
case MultisigHDWallet.FORMAT_P2SH:
|
|
|
|
return loc.multisig.legacy_title;
|
|
|
|
default:
|
|
|
|
throw new Error('This should never happen');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
WalletsAddMultisig.navigationOptions = () => ({
|
|
|
|
...BlueNavigationStyle(),
|
|
|
|
headerTitle: null,
|
|
|
|
});
|
|
|
|
|
|
|
|
export default WalletsAddMultisig;
|