mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
// @ts-nocheck
|
|
import React, { lazy } from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import { Dialog, DialogSuspense } from '@/components';
|
|
|
|
import withDialogRedux from '@/components/DialogReduxConnect';
|
|
|
|
import { CLASSES } from '@/constants/classes';
|
|
import { compose } from '@/utils';
|
|
|
|
// Lazy loading the content.
|
|
const CashflowSheetPdfDialogContent = lazy(
|
|
() => import('./CashflowSheetPdfDialogContent'),
|
|
);
|
|
|
|
/**
|
|
* Cashflow sheet pdf preview dialog.
|
|
* @returns {React.ReactNode}
|
|
*/
|
|
function CashflowSheetPdfDialogRoot({ dialogName, payload, isOpen }) {
|
|
return (
|
|
<Dialog
|
|
name={dialogName}
|
|
title={'Cashflow Sheet Print Preview'}
|
|
className={classNames(CLASSES.DIALOG_PDF_PREVIEW)}
|
|
autoFocus={true}
|
|
canEscapeKeyClose={true}
|
|
isOpen={isOpen}
|
|
style={{ width: '1000px' }}
|
|
>
|
|
<DialogSuspense>
|
|
<CashflowSheetPdfDialogContent />
|
|
</DialogSuspense>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
export const CashflowSheetPdfDialog = compose(withDialogRedux())(
|
|
CashflowSheetPdfDialogRoot,
|
|
);
|