You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

393 lines
12 KiB

7 years ago
import React, { Component } from 'react';
6 years ago
import { View, Dimensions, Text, ListView } from 'react-native';
7 years ago
import {
7 years ago
BlueLoading,
SafeBlueArea,
6 years ago
WalletsCarousel,
BlueTransactionIncommingIcon,
BlueTransactionOutgoingIcon,
BlueTransactionPendingIcon,
BlueSendButtonIcon,
BlueReceiveButtonIcon,
BlueRefreshIcon,
BlueList,
BlueListItem,
6 years ago
BlueHeaderDefaultMain,
is,
7 years ago
} from '../../BlueComponents';
7 years ago
import PropTypes from 'prop-types';
7 years ago
let EV = require('../../events');
7 years ago
/** @type {AppStorage} */
let BlueApp = require('../../BlueApp');
let loc = require('../../loc');
const { height, width } = Dimensions.get('window');
7 years ago
let ds = new ListView.DataSource({ rowHasChanged: (r1, r2) => r1 !== r2 });
7 years ago
export default class WalletsList extends Component {
static navigationOptions = {
6 years ago
tabBarVisible: false,
7 years ago
};
7 years ago
constructor(props) {
super(props);
this.state = {
isLoading: true,
7 years ago
};
EV(EV.enum.WALLETS_COUNT_CHANGED, this.refreshFunction.bind(this));
7 years ago
}
async componentDidMount() {
7 years ago
this.refreshFunction();
7 years ago
} // end of componendDidMount
6 years ago
/**
* Forcefully fetches TXs and balance for lastSnappedTo (i.e. current) wallet
*/
6 years ago
refreshTransactions() {
7 years ago
this.setState(
6 years ago
{
isTransactionsLoading: true,
},
async function() {
let that = this;
setTimeout(async function() {
// more responsive
let noErr = true;
try {
await BlueApp.fetchWalletTransactions(that.lastSnappedTo || 0);
6 years ago
await BlueApp.fetchWalletBalances(that.lastSnappedTo || 0);
6 years ago
} catch (err) {
noErr = false;
console.warn(err);
}
if (noErr) await BlueApp.saveToDisk(); // caching
that.refreshFunction();
}, 1);
},
);
}
6 years ago
/**
* Redraws the screen
*/
6 years ago
refreshFunction() {
setTimeout(() => {
this.setState({
isLoading: false,
isTransactionsLoading: false,
showReceiveButton: true,
showSendButton: true,
showRereshButton: true,
6 years ago
final_balance: BlueApp.getBalance(),
dataSource: ds.cloneWithRows(
BlueApp.getTransactions(this.lastSnappedTo || 0),
),
});
}, 1);
}
txMemo(hash) {
if (BlueApp.tx_metadata[hash] && BlueApp.tx_metadata[hash]['memo']) {
6 years ago
return BlueApp.tx_metadata[hash]['memo'];
6 years ago
}
return '';
}
handleClick(index) {
console.log('cick', index);
let wallet = BlueApp.wallets[index];
if (wallet) {
this.props.navigation.navigate('WalletDetails', {
address: wallet.getAddress(),
});
} else {
// if its out of index - this must be last card with incentive to create wallet
this.props.navigation.navigate('AddWallet');
}
}
onSnapToItem(index) {
console.log('onSnapToItem', index);
this.lastSnappedTo = index;
this.setState({
isLoading: false,
showReceiveButton: false,
showSendButton: false,
showRereshButton: false,
6 years ago
final_balance: BlueApp.getBalance(),
6 years ago
// TODO: погуглить че это за ебала ds.cloneWithRows, можно ли быстрее сделать прогрузку транзакций на экран
6 years ago
dataSource: ds.cloneWithRows(BlueApp.getTransactions(index)),
});
if (index < BlueApp.getWallets().length) {
// do not show for last card
setTimeout(
() =>
this.setState({
showReceiveButton: true,
showSendButton: true,
showRereshButton: true,
}),
6 years ago
50,
); // just to animate it, no real function
}
// now, lets try to fetch balance and txs for this wallet in case it has changed
this.lazyRefreshWallet(index);
}
/**
* Decides whether wallet with such index shoud be refreshed,
* refreshes if yes and redraws the screen
* @param index {Integer} Index of the wallet.
* @return {Promise.<void>}
*/
async lazyRefreshWallet(index) {
/** @type {Array.<AbstractWallet>} wallets */
let wallets = BlueApp.getWallets();
let oldBalance = wallets[index].getBalance();
let noErr = true;
try {
if (wallets && wallets[index] && wallets[index].timeToRefresh()) {
console.log('snapped to, and now its time to refresh wallet #', index);
await wallets[index].fetchBalance();
if (oldBalance !== wallets[index].getBalance()) {
// balance changed, thus txs too
await wallets[index].fetchTransactions();
this.refreshFunction();
}
}
} catch (Err) {
noErr = false;
console.warn(Err);
}
if (noErr && oldBalance !== wallets[index].getBalance()) {
// so we DID refresh
await BlueApp.saveToDisk(); // caching
}
7 years ago
}
render() {
7 years ago
const { navigate } = this.props.navigation;
7 years ago
if (this.state.isLoading) {
7 years ago
return <BlueLoading />;
7 years ago
}
return (
<SafeBlueArea>
6 years ago
<BlueHeaderDefaultMain
leftText={loc.wallets.list.title}
onClose={() => navigate('Settings')}
6 years ago
/>
<WalletsCarousel
data={BlueApp.getWallets().concat(false)}
handleClick={index => {
this.handleClick(index);
}}
onSnapToItem={index => {
this.onSnapToItem(index);
7 years ago
}}
7 years ago
/>
6 years ago
{(() => {
if (this.state.isTransactionsLoading) {
return <BlueLoading />;
} else {
return (
<View style={{ flex: 1 }}>
6 years ago
<View style={{ flex: 1, flexDirection: 'row', height: 50 }}>
6 years ago
<Text
style={{
paddingLeft: 15,
paddingTop: 15,
fontWeight: 'bold',
fontSize: 24,
7 years ago
color: BlueApp.settings.foregroundColor,
7 years ago
}}
6 years ago
>
{loc.transactions.list.title}
</Text>
{(() => {
if (this.state.showRereshButton) {
return (
<BlueRefreshIcon
onPress={() => this.refreshTransactions()}
/>
);
}
})()}
</View>
<View
style={{
top: is.ipad() ? 60 : 120,
position: 'absolute',
width: width,
}}
>
{(() => {
if (
BlueApp.getTransactions(this.lastSnappedTo || 0)
.length === 0
) {
return (
<View>
<Text
style={{
fontSize: 18,
color: '#9aa0aa',
textAlign: 'center',
}}
>
{loc.wallets.list.empty_txs1}
</Text>
<Text
style={{
fontSize: 18,
color: '#9aa0aa',
textAlign: 'center',
}}
>
{loc.wallets.list.empty_txs2}
</Text>
</View>
);
}
})()}
6 years ago
</View>
6 years ago
<View style={{ top: 30, position: 'absolute' }}>
<BlueList>
<ListView
maxHeight={height - 330 + 10}
width={width - 5}
left={5}
enableEmptySections
dataSource={this.state.dataSource}
renderRow={rowData => {
return (
<BlueListItem
avatar={(() => {
if (!rowData.confirmations) {
return (
<View style={{ width: 25 }}>
<BlueTransactionPendingIcon />
</View>
);
} else if (rowData.value < 0) {
return (
<View style={{ width: 25 }}>
<BlueTransactionOutgoingIcon />
</View>
);
} else {
return (
<View style={{ width: 25 }}>
<BlueTransactionIncommingIcon />
</View>
);
}
})()}
title={loc.transactionTimeToReadable(
rowData.received,
)}
subtitle={
(rowData.confirmations < 200
? loc.transactions.list.conf +
': ' +
rowData.confirmations +
' '
: '') + this.txMemo(rowData.hash)
6 years ago
}
6 years ago
onPress={() => {
navigate('TransactionDetails', {
hash: rowData.hash,
});
}}
badge={{
value: 3,
textStyle: { color: 'orange' },
containerStyle: { marginTop: 0 },
}}
chevron={false}
chevronColor="transparent"
rightTitle={rowData.value / 100000000 + ''}
rightTitleStyle={{
position: 'relative',
right: -30,
top: -7,
fontWeight: '600',
fontSize: 16,
color:
rowData.value / 100000000 < 0
? BlueApp.settings.foregroundColor
: '#37c0a1',
}}
/>
);
}}
/>
</BlueList>
</View>
6 years ago
</View>
);
}
})()}
{(() => {
if (this.state.showReceiveButton) {
return (
<BlueReceiveButtonIcon
onPress={() => {
let walletIndex = this.lastSnappedTo || 0;
console.log('receiving on #', walletIndex);
let c = 0;
for (let w of BlueApp.getWallets()) {
if (c++ === walletIndex) {
console.log('found receiving address ', w.getAddress());
navigate('ReceiveDetails', { address: w.getAddress() });
EV(EV.enum.RECEIVE_ADDRESS_CHANGED, w.getAddress());
}
}
}}
/>
);
}
})()}
{(() => {
if (this.state.showReceiveButton) {
return (
<BlueSendButtonIcon
onPress={() => {
let walletIndex = this.lastSnappedTo || 0;
let c = 0;
for (let w of BlueApp.getWallets()) {
if (c++ === walletIndex) {
navigate('SendDetails', { fromAddress: w.getAddress() });
}
}
}}
/>
);
}
})()}
7 years ago
</SafeBlueArea>
);
}
7 years ago
}
7 years ago
WalletsList.propTypes = {
navigation: PropTypes.shape({
navigate: PropTypes.func,
}),
};