zy-react-library/components/Pdf/index.js

108 lines
2.5 KiB
JavaScript
Raw Normal View History

2025-11-08 15:52:06 +08:00
import { message, Modal, Spin } from "antd";
2025-10-22 17:54:38 +08:00
import { useState } from "react";
import { Document, Page, pdfjs } from "react-pdf";
2025-11-08 15:52:06 +08:00
import useDownloadFile from "../../hooks/useDownloadFile";
2025-10-22 17:54:38 +08:00
import { getFileUrl } from "../../utils/index";
/**
* PDF查看组件
*/
2025-10-22 17:54:38 +08:00
function Pdf(props) {
const {
visible = false,
onCancel,
file,
2025-11-08 15:52:06 +08:00
name,
2025-10-22 17:54:38 +08:00
inline = false,
style = {},
} = props;
const fileUrl = getFileUrl();
const [numPages, setNumPages] = useState(0);
const [pdfWidth, setPdfWidth] = useState(600);
const [loading, setLoading] = useState(true);
pdfjs.GlobalWorkerOptions.workerSrc = new URL(
"pdfjs-dist/build/pdf.worker.min.mjs",
import.meta.url,
).toString();
const onDocumentLoadSuccess = ({ numPages }) => {
setNumPages(numPages);
setLoading(false);
};
const onDocumentLoadError = () => {
setLoading(false);
message.error("加载 PDF 文件失败");
if (onCancel)
onCancel();
};
const onPageLoadSuccess = ({ width }) => {
setPdfWidth(width);
};
// 内联模式的PDF内容
const renderPdfContent = () => (
<>
{loading && (
<div style={{ display: "flex", justifyContent: "center", alignItems: "center", height: "80vh" }}>
<Spin size="large" />
</div>
)}
<div style={{ height: "88vh", overflowY: "auto", padding: "24px", ...style }}>
<Document
file={!file.includes(fileUrl) ? fileUrl + file : file}
2025-10-22 17:54:38 +08:00
onLoadSuccess={onDocumentLoadSuccess}
onLoadError={onDocumentLoadError}
>
{
Array.from({ length: numPages }).map((el, index) => (
<Page key={`page_${index + 1}`} pageNumber={index + 1} onLoadSuccess={onPageLoadSuccess} />
))
}
</Document>
</div>
</>
);
// 如果是内联模式直接返回PDF内容
if (inline) {
return renderPdfContent();
}
2025-11-08 15:52:06 +08:00
const { loading: downloadFileLoading, downloadFile } = useDownloadFile();
const onDownloadFile = () => {
Modal.confirm({
title: "提示",
content: "确定要下载此文件吗?",
onOk: () => {
downloadFile({
url: fileUrl,
name,
});
},
});
};
2025-10-22 17:54:38 +08:00
// 默认弹窗模式
return (
<Modal
open={visible}
width={pdfWidth + 100}
title="PDF预览"
onCancel={onCancel}
2025-11-08 15:52:06 +08:00
cancelText="关闭"
okText="下载"
onOk={onDownloadFile}
loading={downloadFileLoading}
2025-10-22 17:54:38 +08:00
>
{renderPdfContent()}
</Modal>
);
}
export default Pdf;