lbry-desktop/src/ui/component/walletAddress/view.jsx

88 lines
2.3 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import React from 'react';
import * as ICONS from 'constants/icons';
2018-03-26 23:32:43 +02:00
import Button from 'component/button';
2019-01-22 21:36:28 +01:00
import CopyableText from 'component/copyableText';
import QRCode from 'component/common/qr-code';
2019-09-26 18:07:11 +02:00
import Card from 'component/common/card';
2018-03-26 23:32:43 +02:00
type Props = {
checkAddressIsMine: string => void,
receiveAddress: string,
getNewAddress: () => void,
gettingNewAddress: boolean,
history: { goBack: () => void },
2018-03-26 23:32:43 +02:00
};
type State = {
showQR: boolean,
};
class WalletAddress extends React.PureComponent<Props, State> {
constructor(props: Props) {
super(props);
this.state = {
showQR: false,
};
2019-03-05 18:54:11 +01:00
(this: any).toggleQR = this.toggleQR.bind(this);
}
2019-06-17 22:32:38 +02:00
componentDidMount() {
const { checkAddressIsMine, receiveAddress, getNewAddress } = this.props;
if (!receiveAddress) {
getNewAddress();
} else {
checkAddressIsMine(receiveAddress);
}
}
toggleQR() {
this.setState({
showQR: !this.state.showQR,
});
}
render() {
const { receiveAddress, getNewAddress, gettingNewAddress, history } = this.props;
const { showQR } = this.state;
return (
2019-09-26 18:07:11 +02:00
<Card
title={
<React.Fragment>
{__('Receive Credits')}
<Button button="close" icon={ICONS.REMOVE} onClick={() => history.goBack()} />
</React.Fragment>
}
2019-09-30 23:48:30 +02:00
subtitle={__('Use this address to receive LBC.')}
2019-09-26 18:07:11 +02:00
actions={
<React.Fragment>
<CopyableText label={__('Your Address')} copyable={receiveAddress} snackMessage={__('Address copied.')} />
2018-03-26 23:32:43 +02:00
2019-09-26 18:07:11 +02:00
<div className="card__actions">
{!IS_WEB && (
<Button
button="inverse"
label={__('Get New Address')}
onClick={getNewAddress}
disabled={gettingNewAddress}
/>
)}
<Button button="link" label={showQR ? __('Hide QR code') : __('Show QR code')} onClick={this.toggleQR} />
</div>
2019-09-30 23:48:30 +02:00
<p className="help">
{__('You can generate a new address at any time, and any previous addresses will continue to work.')}
</p>
2018-03-26 23:32:43 +02:00
2019-09-26 18:07:11 +02:00
{showQR && <QRCode value={receiveAddress} paddingTop />}
</React.Fragment>
}
/>
);
}
}
2017-06-06 06:21:55 +02:00
export default WalletAddress;