bigbuffet-rw/app/soapbox/features/crypto_donate/components/crypto_address.js

67 lines
2 KiB
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { FormattedMessage } from 'react-intl';
2021-06-09 16:28:54 -07:00
import Icon from 'soapbox/components/icon';
import blockExplorers from '../utils/block_explorers.json';
import CoinDB from '../utils/coin_db';
import { getCoinIcon } from '../utils/coin_icons';
2021-06-09 16:28:54 -07:00
const getExplorerUrl = (ticker, address) => {
const template = blockExplorers[ticker];
if (!template) return false;
return template.replace('{address}', address);
};
export default class CryptoAddress extends ImmutablePureComponent {
static propTypes = {
address: PropTypes.string.isRequired,
ticker: PropTypes.string.isRequired,
note: PropTypes.string,
}
setInputRef = c => {
this.input = c;
}
handleCopyClick = e => {
if (!this.input) return;
this.input.select();
this.input.setSelectionRange(0, 99999);
document.execCommand('copy');
}
render() {
const { address, ticker, note } = this.props;
const title = CoinDB.getIn([ticker, 'name']);
2021-06-09 16:28:54 -07:00
const explorerUrl = getExplorerUrl(ticker, address);
return (
<div className='crypto-address'>
2021-06-09 15:55:28 -07:00
<div className='crypto-address__head'>
<div className='crypto-address__icon'>
<img src={getCoinIcon(ticker)} alt={title} />
</div>
<div className='crypto-address__title'>{title}</div>
2021-06-09 16:28:54 -07:00
<div className='crypto-address__actions'>
<a href={explorerUrl} target='_blank'>
<Icon id='external-link' />
</a>
</div>
</div>
{note && <div className='crypto-address__note'>{note}</div>}
2021-06-09 16:53:13 -07:00
<div className='crypto-address__address simple_form'>
<input ref={this.setInputRef} type='text' value={address} />
<button className='crypto-address__copy' onClick={this.handleCopyClick}>
<FormattedMessage id='crypto_donate.copy' defaultMessage='Copy' />
</button>
</div>
</div>
);
}
}