mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
113 lines
2.7 KiB
JavaScript
113 lines
2.7 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import autobind from 'autobind-decorator';
|
|
import PDF from 'pdfjs-dist/webpack';
|
|
|
|
type Props = {
|
|
body: Buffer,
|
|
uniqueKey: string,
|
|
};
|
|
|
|
type State = {
|
|
numPages: number | null,
|
|
};
|
|
|
|
@autobind
|
|
class ResponsePDFViewer extends React.PureComponent<Props, State> {
|
|
container: ?HTMLDivElement;
|
|
debounceTimeout: any;
|
|
|
|
setRef(n: ?HTMLDivElement) {
|
|
this.container = n;
|
|
}
|
|
|
|
loadPDF() {
|
|
clearTimeout(this.debounceTimeout);
|
|
this.debounceTimeout = setTimeout(async () => {
|
|
// get node for this react component
|
|
const container = this.container;
|
|
|
|
if (!container) {
|
|
return;
|
|
}
|
|
|
|
container.innerHTML = '';
|
|
|
|
const containerWidth = container.clientWidth;
|
|
const pdf = await PDF.getDocument({
|
|
data: this.props.body.toString('binary'),
|
|
});
|
|
for (let i = 1; i <= pdf.numPages; i++) {
|
|
const page = await pdf.getPage(i);
|
|
const density = window.devicePixelRatio || 1;
|
|
|
|
const { width: pdfWidth, height: pdfHeight } = page.getViewport(1);
|
|
const ratio = pdfHeight / pdfWidth;
|
|
const scale = containerWidth / pdfWidth;
|
|
const viewport = page.getViewport(scale * density);
|
|
|
|
// set canvas for page
|
|
const canvas = document.createElement('canvas');
|
|
|
|
canvas.width = containerWidth * density;
|
|
// canvas.height = containerWidth * (viewport.height / viewport.width);
|
|
canvas.height = containerWidth * ratio * density;
|
|
canvas.style.width = `${containerWidth}px`;
|
|
canvas.style.height = `${containerWidth * ratio}px`;
|
|
|
|
container.appendChild(canvas);
|
|
|
|
// get context and render page
|
|
const context = canvas.getContext('2d');
|
|
const renderContext = {
|
|
id: `${this.props.uniqueKey}.${i}`,
|
|
canvasContext: context,
|
|
viewport: viewport,
|
|
};
|
|
|
|
page.render(renderContext);
|
|
}
|
|
}, 100);
|
|
}
|
|
|
|
handleResize(e: SyntheticEvent<HTMLDivElement>) {
|
|
if (!this.container) {
|
|
return;
|
|
}
|
|
|
|
clearTimeout(this.debounceTimeout);
|
|
this.debounceTimeout = setTimeout(this.loadPDF, 300);
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.loadPDF();
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.loadPDF();
|
|
window.addEventListener('resize', this.handleResize);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
window.removeEventListener('resize', this.handleResize);
|
|
}
|
|
|
|
render() {
|
|
const styles = {
|
|
width: '100%',
|
|
height: '100%',
|
|
overflowX: 'hidden',
|
|
overflowY: 'scroll',
|
|
padding: '0px',
|
|
};
|
|
|
|
return (
|
|
<div className="S-PDF-ID" ref={this.setRef} style={styles}>
|
|
<div className="faded text-center vertically-center tall">Loading PDF...</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ResponsePDFViewer;
|