import React, { Component } from 'react'; import { View, ActivityIndicator, Image, Text, TouchableOpacity, FlatList } from 'react-native'; import { SafeBlueArea, BlueNavigationStyle } from '../../BlueComponents'; import LinearGradient from 'react-native-linear-gradient'; import PropTypes from 'prop-types'; import { WatchOnlyWallet, LegacyWallet } from '../../class'; import { HDLegacyP2PKHWallet } from '../../class/hd-legacy-p2pkh-wallet'; import { HDLegacyBreadwalletWallet } from '../../class/hd-legacy-breadwallet-wallet'; import { HDSegwitP2SHWallet } from '../../class/hd-segwit-p2sh-wallet'; import { LightningCustodianWallet } from '../../class/lightning-custodian-wallet'; import ReactNativeHapticFeedback from 'react-native-haptic-feedback'; /** @type {AppStorage} */ let BlueApp = require('../../BlueApp'); let loc = require('../../loc'); export default class SelectWallet extends Component { static navigationOptions = () => ({ ...BlueNavigationStyle(), title: loc.wallets.select_wallet, }); constructor(props) { super(props); this.state = { isLoading: true, data: [], }; } componentDidMount() { const wallets = BlueApp.getWallets().filter(item => item.type !== new LightningCustodianWallet().type); this.setState({ data: wallets, isLoading: false, }); } _renderItem = ({ item }) => { let gradient1 = '#65ceef'; let gradient2 = '#68bbe1'; if (new WatchOnlyWallet().type === item.type) { gradient1 = '#7d7d7d'; gradient2 = '#4a4a4a'; } if (new LegacyWallet().type === item.type) { gradient1 = '#40fad1'; gradient2 = '#15be98'; } if (new HDLegacyP2PKHWallet().type === item.type) { gradient1 = '#e36dfa'; gradient2 = '#bd10e0'; } if (new HDLegacyBreadwalletWallet().type === item.type) { gradient1 = '#fe6381'; gradient2 = '#f99c42'; } if (new HDSegwitP2SHWallet().type === item.type) { gradient1 = '#c65afb'; gradient2 = '#9053fe'; } if (new LightningCustodianWallet().type === item.type) { gradient1 = '#f1be07'; gradient2 = '#f79056'; } return ( { ReactNativeHapticFeedback.trigger('selection', false); this.props.navigation.getParam('onWalletSelect')(item); }} > {item.getLabel()} {loc.formatBalance(Number(item.getBalance()), item.getPreferredBalanceUnit())} {loc.wallets.list.latest_transaction} {loc.transactionTimeToReadable(item.getLatestTransactionTime())} ); }; render() { if (this.state.isLoading || this.state.data.length <= 0) { return ( ); } return ( `${index}`} /> ); } } SelectWallet.propTypes = { navigation: PropTypes.shape({ navigate: PropTypes.func, setParams: PropTypes.func, dismiss: PropTypes.func, getParam: PropTypes.func, }), };