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.
217 lines
6.4 KiB
217 lines
6.4 KiB
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { btc } from 'lib/utils'
|
|
import PaperPlane from 'components/Icon/PaperPlane'
|
|
import ChainLink from 'components/Icon/ChainLink'
|
|
import AmountInput from 'components/AmountInput'
|
|
import { Button, Dropdown } from 'components/UI'
|
|
import { FormattedNumber, FormattedMessage, injectIntl } from 'react-intl'
|
|
import messages from './messages'
|
|
import styles from './Pay.scss'
|
|
|
|
class Pay extends Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.paymentRequestInput = React.createRef()
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { setPayInput, setPayAmount } = this.props
|
|
|
|
// Clear the form of any previous data.
|
|
setPayInput('')
|
|
setPayAmount('')
|
|
|
|
// Focus the payment request input field.
|
|
this.paymentRequestInput.current.focus()
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
const {
|
|
isLn,
|
|
payform: { payInput },
|
|
fetchInvoice
|
|
} = this.props
|
|
|
|
// If LN go retrieve invoice details
|
|
if (prevProps.payform.payInput !== payInput && isLn) {
|
|
fetchInvoice(payInput)
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
payform: { payInput, showErrors, invoice },
|
|
nodes,
|
|
ticker,
|
|
isOnchain,
|
|
isLn,
|
|
currentAmount,
|
|
fiatAmount,
|
|
payFormIsValid: { errors, isValid },
|
|
currencyFilters,
|
|
setPayAmount,
|
|
onPayAmountBlur,
|
|
setPayInput,
|
|
onPayInputBlur,
|
|
onPaySubmit,
|
|
setCurrency,
|
|
intl
|
|
} = this.props
|
|
|
|
const displayNodeName = pubkey => {
|
|
const node = nodes.find(n => n.pub_key === pubkey)
|
|
|
|
if (node && node.alias.length) {
|
|
return node.alias
|
|
}
|
|
|
|
return pubkey ? pubkey.substring(0, 10) : ''
|
|
}
|
|
|
|
const onCurrencyFilterClick = currency => {
|
|
if (!isLn) {
|
|
// change the input amount
|
|
setPayAmount(btc.convert(ticker.currency, currency, currentAmount))
|
|
}
|
|
setCurrency(currency)
|
|
}
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<header className={styles.header}>
|
|
<PaperPlane width="2em" height="2em" />
|
|
<h1>
|
|
<FormattedMessage {...messages.title} />
|
|
</h1>
|
|
</header>
|
|
|
|
<div className={styles.content}>
|
|
<section className={styles.destination}>
|
|
<div className={styles.top}>
|
|
<label htmlFor="paymentRequest">
|
|
<FormattedMessage {...messages.destination} />
|
|
</label>
|
|
<span
|
|
className={`${styles.description} ${isOnchain || isLn ? styles.active : undefined}`}
|
|
>
|
|
{isOnchain && (
|
|
<i>
|
|
<ChainLink />
|
|
<span>
|
|
<FormattedMessage {...messages.onchain_description} />
|
|
</span>
|
|
</i>
|
|
)}
|
|
{isLn && (
|
|
<i>
|
|
<span>
|
|
{displayNodeName(invoice.destination)} ({invoice.description})
|
|
</span>
|
|
</i>
|
|
)}
|
|
</span>
|
|
</div>
|
|
<div className={styles.bottom}>
|
|
<textarea
|
|
type="text"
|
|
placeholder={intl.formatMessage({ ...messages.request_placeholder })}
|
|
value={payInput}
|
|
onChange={event => setPayInput(event.target.value)}
|
|
onBlur={onPayInputBlur}
|
|
id="paymentRequest"
|
|
rows="4"
|
|
ref={this.paymentRequestInput}
|
|
/>
|
|
<section
|
|
className={`${styles.errorMessage} ${
|
|
showErrors.payInput ? styles.active : undefined
|
|
}`}
|
|
>
|
|
{showErrors.payInput && <span>{errors.payInput}</span>}
|
|
</section>
|
|
</div>
|
|
</section>
|
|
|
|
<section className={styles.amount}>
|
|
<div className={styles.top}>
|
|
<label htmlFor="amount">
|
|
<FormattedMessage {...messages.amount} />
|
|
</label>
|
|
<span />
|
|
</div>
|
|
<div className={styles.bottom}>
|
|
<AmountInput
|
|
id="amount"
|
|
amount={currentAmount}
|
|
currency={ticker.currency}
|
|
onChangeEvent={setPayAmount}
|
|
onBlurEvent={onPayAmountBlur}
|
|
readOnly={isLn}
|
|
/>
|
|
<Dropdown
|
|
activeKey={ticker.currency}
|
|
items={currencyFilters}
|
|
onChange={onCurrencyFilterClick}
|
|
ml={2}
|
|
/>
|
|
</div>
|
|
|
|
<div className={styles.fiatAmount}>
|
|
{'≈ '}
|
|
<FormattedNumber
|
|
currency={ticker.fiatTicker}
|
|
style="currency"
|
|
value={fiatAmount || 0}
|
|
/>
|
|
</div>
|
|
|
|
<section
|
|
className={`${styles.errorMessage} ${styles.amount} ${
|
|
showErrors.amount ? styles.active : undefined
|
|
}`}
|
|
>
|
|
{showErrors.amount && <span>{errors.amount}</span>}
|
|
</section>
|
|
</section>
|
|
|
|
<section className={styles.submit}>
|
|
<Button disabled={!isValid} onClick={onPaySubmit} width={200}>
|
|
<FormattedMessage {...messages.pay} />
|
|
</Button>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
Pay.propTypes = {
|
|
payform: PropTypes.shape({
|
|
amount: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
payInput: PropTypes.string.isRequired,
|
|
invoice: PropTypes.object.isRequired,
|
|
showErrors: PropTypes.object.isRequired
|
|
}).isRequired,
|
|
currencyName: PropTypes.string.isRequired,
|
|
isOnchain: PropTypes.bool.isRequired,
|
|
isLn: PropTypes.bool.isRequired,
|
|
currentAmount: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
fiatAmount: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
|
payFormIsValid: PropTypes.shape({
|
|
errors: PropTypes.object,
|
|
isValid: PropTypes.bool
|
|
}).isRequired,
|
|
setPayAmount: PropTypes.func.isRequired,
|
|
onPayAmountBlur: PropTypes.func.isRequired,
|
|
setPayInput: PropTypes.func.isRequired,
|
|
onPayInputBlur: PropTypes.func.isRequired,
|
|
fetchInvoice: PropTypes.func.isRequired,
|
|
onPaySubmit: PropTypes.func.isRequired,
|
|
setCurrency: PropTypes.func.isRequired,
|
|
ticker: PropTypes.object.isRequired,
|
|
nodes: PropTypes.array.isRequired,
|
|
currencyFilters: PropTypes.array.isRequired
|
|
}
|
|
|
|
export default injectIntl(Pay)
|
|
|