forked from mrin9/RapiPdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdf-gen.js
114 lines (105 loc) · 3.38 KB
/
pdf-gen.js
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import pdfMake from 'pdfmake/build/pdfmake.min';
import pdfFonts from '@/vfs_fonts';
// import pdfFonts from "pdfmake/build/vfs_fonts";
import ProcessSpec from '@/spec-parser';
import {
getInfoDef, getSecurityDef, getApiDef, getApiListDef,
} from '@/pdf-parts-gen';
export default async function createPdf(specUrl, options) {
const parsedSpec = await ProcessSpec(specUrl, options.pdfSortTags);
const pdfStyles = {
title: { fontSize: 32 },
h1: { fontSize: 22 },
h2: { fontSize: 20 },
h3: { fontSize: 18 },
h4: { fontSize: 16 },
h5: { fontSize: 14 },
h6: { fontSize: 12, bold: true },
p: { fontSize: 12 },
small: { fontSize: 10 },
sub: { fontSize: 8 },
right: { alignment: 'right' },
left: { alignment: 'left' },
topMargin1: { margin: [0, 180, 0, 10] },
topMargin2: { margin: [0, 60, 0, 5] },
topMargin3: { margin: [0, 20, 0, 3] },
topMargin4: { margin: [0, 15, 0, 3] },
topMarginRegular: { margin: [0, 3, 0, 0] },
tableMargin: { margin: [0, 5, 0, 15] },
b: { bold: true },
i: { italics: true },
primary: { color: (options.pdfPrimaryColor ? options.pdfPrimaryColor : '#b44646') },
alternate: { color: (options.pdfAlternateColor ? options.pdfAlternateColor : '#005b96') },
gray: { color: 'gray' },
lightGray: { color: '#aaaaaa' },
darkGray: { color: '#666666' },
red: { color: 'orangered' },
blue: { color: '#005b96' },
mono: { font: 'RobotoMono', fontSize: 10 },
monoSub: { font: 'RobotoMono', fontSize: 8 },
};
const allContent = [];
let infoDef = {};
let tocDef = {};
let securityDef = {};
let apiListDef = {};
let apiDef = {};
if (options.includeInfo) {
infoDef = getInfoDef(parsedSpec, options.pdfTitle, options.localize);
allContent.push(infoDef);
}
if (options.includeToc) {
tocDef = {
toc: {
title: { text: options.localize.index, style: ['b', 'h2'] },
numberStyle: { bold: true },
style: ['small'],
},
pageBreak: 'after',
};
// allContent.push({text:'', pageBreak:'after'});
allContent.push(tocDef);
}
if (options.includeSecurity) {
securityDef = getSecurityDef(parsedSpec, options.localize);
allContent.push(securityDef);
}
if (options.includeApiDetails) {
apiDef = getApiDef(parsedSpec, '', options.pdfSchemaStyle, options.localize, options.includeExample, options.includeApiList);
allContent.push(apiDef);
}
if (options.includeApiList) {
apiListDef = getApiListDef(parsedSpec, options.localize.apiList, options.localize);
allContent.push(apiListDef);
}
const finalDocDef = {
footer(currentPage, pageCount) {
return {
margin: 10,
columns: [
{ text: options.pdfFooterText, style: ['sub', 'gray', 'left'] },
{ text: `${currentPage} of ${pageCount}`, style: ['sub', 'gray', 'right'] },
],
};
},
content: allContent,
styles: pdfStyles,
};
pdfMake.fonts = {
Roboto: {
normal: 'Roboto-Regular.ttf',
bold: 'Roboto-Medium.ttf',
italics: 'Roboto-Italic.ttf',
bolditalics: 'Roboto-Medium.ttf',
},
RobotoMono: {
normal: 'RobotoMono-Regular.ttf',
bold: 'RobotoMono-Regular.ttf',
italics: 'RobotoMono-Regular.ttf',
bolditalics: 'RobotoMono-Regular.ttf',
},
};
// pdfMake.vfs = pdfFonts.pdfMake.vfs;
pdfMake.vfs = pdfFonts;
pdfMake.createPdf(finalDocDef).open();
}