onedrive/components/previews/PDFPreview.tsx

24 lines
759 B
TypeScript
Raw Normal View History

2021-12-28 18:13:17 +00:00
import { FunctionComponent } from 'react'
import DownloadBtn from '../DownloadBtn'
const PDFEmbedPreview: FunctionComponent<{ file: any }> = ({ file }) => {
// const url = `/api/proxy?url=${encodeURIComponent(file['@microsoft.graph.downloadUrl'])}&inline=true`
const url = `https://mozilla.github.io/pdf.js/web/viewer.html?file=${encodeURIComponent(
file['@microsoft.graph.downloadUrl']
)}`
return (
<>
<div className="w-full rounded overflow-hidden" style={{ height: '80vh' }}>
<iframe src={url} frameBorder="0" width="100%" height="100%"></iframe>
</div>
<div className="mt-4">
<DownloadBtn downloadUrl={file['@microsoft.graph.downloadUrl']} />
</div>
</>
)
}
export default PDFEmbedPreview