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

89 lines
2.2 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import React from 'react';
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';
2018-03-26 23:32:43 +02:00
type Props = {
checkAddressIsMine: string => void,
receiveAddress: string,
getNewAddress: () => void,
gettingNewAddress: boolean,
};
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() {
2017-06-06 23:19:12 +02:00
const { receiveAddress, getNewAddress, gettingNewAddress } = this.props;
const { showQR } = this.state;
return (
2018-03-26 23:32:43 +02:00
<section className="card card--section">
<header className="card__header">
<h2 className="card__title">{__('Receive Credits')}</h2>
<p className="card__subtitle">
{__('Use this wallet address to receive credits sent by another user (or yourself).')}
</p>
</header>
2018-03-26 23:32:43 +02:00
<div className="card__content">
2019-01-22 21:36:28 +01:00
<CopyableText copyable={receiveAddress} snackMessage={__('Address copied.')} />
</div>
2018-03-26 23:32:43 +02:00
<div className="card__content">
<div className="card__actions">
<Button
2019-06-17 22:32:38 +02:00
button="inverse"
label={__('Get New Address')}
onClick={getNewAddress}
disabled={gettingNewAddress}
/>
2019-05-07 23:38:29 +02:00
<Button button="link" label={showQR ? __('Hide QR code') : __('Show QR code')} onClick={this.toggleQR} />
</div>
<p className="help">
{__('You can generate a new address at any time, and any previous addresses will continue to work.')}
</p>
</div>
2018-06-20 23:56:42 +02:00
{showQR && (
<div className="card__content">
<QRCode value={receiveAddress} paddingTop />
</div>
)}
</section>
);
}
}
2017-06-06 06:21:55 +02:00
export default WalletAddress;