58 lines
1.7 KiB
JavaScript
58 lines
1.7 KiB
JavaScript
// @flow
|
|
import React from 'react';
|
|
import Button from 'component/button';
|
|
import { Form } from 'component/common/form';
|
|
import { Modal } from 'modal/modal';
|
|
import Card from 'component/common/card';
|
|
|
|
type Props = {
|
|
address: string,
|
|
amount: number,
|
|
closeModal: () => void,
|
|
sendToAddress: (string, number) => void,
|
|
};
|
|
|
|
class ModalConfirmTransaction extends React.PureComponent<Props> {
|
|
onConfirmed() {
|
|
const { closeModal, sendToAddress, amount, address } = this.props;
|
|
sendToAddress(address, amount);
|
|
closeModal();
|
|
}
|
|
|
|
render() {
|
|
const { amount, address, closeModal } = this.props;
|
|
const title = __('Confirm Transaction');
|
|
return (
|
|
<Modal isOpen contentLabel={title} type="card" onAborted={closeModal}>
|
|
<Form onSubmit={() => this.onConfirmed()}>
|
|
<Card
|
|
title={title}
|
|
body={
|
|
<>
|
|
<div className="section">
|
|
<label>{__('Sending: ')}</label>
|
|
<blockquote>{amount} LBC</blockquote>
|
|
</div>
|
|
<div className="section">
|
|
<p>{__('To address: ')}</p>
|
|
<blockquote>{address}</blockquote>
|
|
</div>
|
|
</>
|
|
}
|
|
actions={
|
|
<>
|
|
<div className="section__actions">
|
|
<Button autoFocus button="primary" label={__('Send')} onClick={() => this.onConfirmed()} />
|
|
<Button button="link" label={__('Cancel')} onClick={closeModal} />
|
|
</div>
|
|
<p className="help">{__('Once the transaction is sent, it cannot be reversed.')}</p>
|
|
</>
|
|
}
|
|
/>
|
|
</Form>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ModalConfirmTransaction;
|