mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
43 lines
983 B
JavaScript
43 lines
983 B
JavaScript
import React from 'react';
|
|
import { FormattedMessage as T } from 'components';
|
|
|
|
import { Intent, Button } from '@blueprintjs/core';
|
|
|
|
import withDialogActions from 'containers/Dialog/withDialogActions';
|
|
import { compose } from 'redux';
|
|
import { useFormikContext } from 'formik';
|
|
|
|
/**
|
|
* Payment via license code tab.
|
|
*/
|
|
function LicenseTab({ openDialog }) {
|
|
const { submitForm, values } = useFormikContext();
|
|
|
|
const handleSubmitBtnClick = () => {
|
|
submitForm().then(() => {
|
|
openDialog('payment-via-voucher', { ...values });
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className={'license-container'}>
|
|
<h3>
|
|
<T id={'voucher'} />
|
|
</h3>
|
|
<p className="paragraph">
|
|
<T id={'cards_will_be_charged'} />
|
|
</p>
|
|
|
|
<Button
|
|
onClick={handleSubmitBtnClick}
|
|
intent={Intent.PRIMARY}
|
|
large={true}
|
|
>
|
|
<T id={'submit_voucher'} />
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default compose(withDialogActions)(LicenseTab);
|