-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathCustomizePrintButtonExample.tsx
64 lines (59 loc) · 2.02 KB
/
CustomizePrintButtonExample.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import * as React from 'react';
import { Viewer } from '@react-pdf-viewer/core';
import { printPlugin, RenderPrintProps } from '@react-pdf-viewer/print';
import '@react-pdf-viewer/core/lib/styles/index.css';
import '@react-pdf-viewer/print/lib/styles/index.css';
interface CustomizePrintButtonExampleProps {
fileUrl: string;
}
const CustomizePrintButtonExample: React.FC<CustomizePrintButtonExampleProps> = ({ fileUrl }) => {
const printPluginInstance = printPlugin();
const { Print } = printPluginInstance;
return (
<div
style={{
border: '1px solid rgba(0, 0, 0, 0.3)',
display: 'flex',
flexDirection: 'column',
height: '100%',
}}
>
<div
style={{
alignItems: 'center',
backgroundColor: '#eeeeee',
borderBottom: '1px solid rgba(0, 0, 0, 0.1)',
display: 'flex',
padding: '4px',
}}
>
<Print>
{(props: RenderPrintProps) => (
<button
style={{
backgroundColor: '#357edd',
border: 'none',
borderRadius: '4px',
color: '#ffffff',
cursor: 'pointer',
padding: '8px',
}}
onClick={props.onClick}
>
Print
</button>
)}
</Print>
</div>
<div
style={{
flex: 1,
overflow: 'hidden',
}}
>
<Viewer fileUrl={fileUrl} plugins={[printPluginInstance]} />
</div>
</div>
);
};
export default CustomizePrintButtonExample;