mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
39 lines
998 B
JavaScript
39 lines
998 B
JavaScript
import React, { lazy } from 'react';
|
|
import { FormattedMessage as T } from 'react-intl';
|
|
import { Dialog, DialogSuspense } from 'components';
|
|
import withDialogRedux from 'components/DialogReduxConnect';
|
|
import { compose } from 'redux';
|
|
|
|
const QuickPaymentReceiveFormDialogContent = lazy(() =>
|
|
import('./QuickPaymentReceiveFormDialogContent'),
|
|
);
|
|
|
|
/**
|
|
* Quick payment receive form dialog.
|
|
*/
|
|
function QuickPaymentReceiveFormDialog({
|
|
dialogName,
|
|
payload = { invoiceId: null },
|
|
isOpen,
|
|
}) {
|
|
return (
|
|
<Dialog
|
|
name={dialogName}
|
|
title={<T id={'quick_receive_payment'} />}
|
|
isOpen={isOpen}
|
|
canEscapeJeyClose={true}
|
|
autoFocus={true}
|
|
className={'dialog--quick-payment-receive'}
|
|
>
|
|
<DialogSuspense>
|
|
<QuickPaymentReceiveFormDialogContent
|
|
dialogName={dialogName}
|
|
invoice={payload.invoiceId}
|
|
/>
|
|
</DialogSuspense>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
export default compose(withDialogRedux())(QuickPaymentReceiveFormDialog);
|