mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { AnchorButton } from '@blueprintjs/core';
|
|
|
|
import { DialogContent, PdfDocumentPreview, T } from '@/components';
|
|
import { usePdfPaymentReceive } from '@/hooks/query';
|
|
|
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
|
import { compose } from '@/utils';
|
|
|
|
function PaymentReceivePdfPreviewDialogContent({
|
|
subscriptionForm: { paymentReceiveId },
|
|
}) {
|
|
const { isLoading, pdfUrl, filename } = usePdfPaymentReceive(paymentReceiveId);
|
|
|
|
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={filename}
|
|
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)(
|
|
PaymentReceivePdfPreviewDialogContent,
|
|
);
|