mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
import { AnchorButton } from '@blueprintjs/core';
|
|
|
|
import { DialogContent, PdfDocumentPreview, T } from 'components';
|
|
import { usePdfEstimate } from 'hooks/query';
|
|
|
|
import withDialogActions from 'containers/Dialog/withDialogActions';
|
|
import { compose } from 'utils';
|
|
|
|
function EstimatePdfPreviewDialogContent({
|
|
subscriptionForm: { estimateId },
|
|
dialogName,
|
|
// #withDialogActions
|
|
closeDialog,
|
|
}) {
|
|
const { isLoading, pdfUrl } = usePdfEstimate(estimateId);
|
|
|
|
return (
|
|
<DialogContent>
|
|
<div class="dialog__header-actions">
|
|
<AnchorButton
|
|
href={pdfUrl}
|
|
target={'__blank'}
|
|
minimal={true}
|
|
outlined={true}
|
|
>
|
|
<T id={'pdf_preview.preview.button'} />
|
|
</AnchorButton>
|
|
|
|
<AnchorButton
|
|
href={pdfUrl}
|
|
download={'estimate.pdf'}
|
|
minimal={true}
|
|
outlined={true}
|
|
>
|
|
<T id={'pdf_preview.download.button'} />
|
|
</AnchorButton>
|
|
</div>
|
|
|
|
<PdfDocumentPreview
|
|
height={760}
|
|
width={1000}
|
|
isLoading={isLoading}
|
|
url={pdfUrl}
|
|
/>
|
|
</DialogContent>
|
|
);
|
|
}
|
|
|
|
export default compose(withDialogActions)(EstimatePdfPreviewDialogContent);
|