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.
trezor-wallet/src/views/Wallet/views/Account/Receive/index.js

36 lines
942 B

/* @flow */
import React from 'react';
import { connect } from 'react-redux';
import type { State } from 'flowtype';
import EthereumTypeReceiveForm from './ethereum/Container';
import RippleTypeReceiveForm from './ripple/Container';
import BitcoinTypeReceiveForm from './bitcoin/Container';
export type BaseProps = {
selectedAccount: $ElementType<State, 'selectedAccount'>,
};
// return container for requested network type
export default connect(
(state: State): BaseProps => ({
selectedAccount: state.selectedAccount,
}),
null
)(props => {
const { network } = props.selectedAccount;
if (!network) return null;
switch (network.type) {
case 'ethereum':
return <EthereumTypeReceiveForm />;
case 'ripple':
return <RippleTypeReceiveForm />;
case 'bitcoin':
return <BitcoinTypeReceiveForm />;
default:
return null;
}
});