2020-04-23 10:18:17 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import Button from 'component/button';
|
|
|
|
import { Form } from 'component/common/form';
|
|
|
|
import { Modal } from 'modal/modal';
|
2020-05-01 19:55:42 +02:00
|
|
|
import Card from 'component/common/card';
|
2020-04-23 10:18:17 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
claimId: string,
|
|
|
|
title: string,
|
|
|
|
tipAmount: number,
|
|
|
|
isSupport: boolean,
|
|
|
|
closeModal: () => void,
|
|
|
|
sendSupport: (number, string, boolean) => void,
|
|
|
|
};
|
|
|
|
|
|
|
|
class ModalConfirmSendTip extends React.PureComponent<Props> {
|
|
|
|
onConfirmed() {
|
|
|
|
const { closeModal, sendSupport, tipAmount, claimId, isSupport } = this.props;
|
|
|
|
sendSupport(tipAmount, claimId, isSupport);
|
|
|
|
closeModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2020-05-01 19:55:42 +02:00
|
|
|
const { tipAmount = 5.5, title = 'This is a random title name', isSupport, closeModal } = this.props;
|
|
|
|
const cardTitle = __(isSupport ? 'Confirm Support' : 'Confirm Tip');
|
|
|
|
|
2020-04-23 10:18:17 +02:00
|
|
|
return (
|
2020-05-01 19:55:42 +02:00
|
|
|
<Modal isOpen type="card" onAborted={closeModal} contentLabel={cardTitle}>
|
2020-04-23 10:18:17 +02:00
|
|
|
<Form onSubmit={() => this.onConfirmed()}>
|
2020-05-01 19:55:42 +02:00
|
|
|
<Card
|
|
|
|
title={cardTitle}
|
|
|
|
body={
|
|
|
|
<>
|
|
|
|
<div className="section">
|
|
|
|
<label>{__(isSupport ? 'Supporting: ' : 'Tipping: ')}</label>
|
|
|
|
<blockquote>{tipAmount} LBC</blockquote>
|
|
|
|
</div>
|
|
|
|
<div className="section">
|
|
|
|
<label>{__('To: ')}</label>
|
|
|
|
<blockquote>{title}</blockquote>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
actions={
|
|
|
|
<div className="section__actions">
|
|
|
|
<Button autoFocus button="primary" type="submit" label={__('Send')} />
|
|
|
|
<Button button="link" label={__('Cancel')} onClick={closeModal} />
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
/>
|
2020-04-23 10:18:17 +02:00
|
|
|
</Form>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ModalConfirmSendTip;
|