-
Notifications
You must be signed in to change notification settings - Fork 0
/
JsonToPDF.js
80 lines (66 loc) · 2.32 KB
/
JsonToPDF.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
const fs = require("fs");
const path = require("path");
const puppeteer = require("puppeteer");
const handlebars = require("handlebars");
const dataSource = require("./dataChecker.js");
const GeneratePDF = async (data, fileName) => {
try {
const startTime = new Date().getTime();
console.log("[LOG] Template dosyası yükleniyor.");
const templateHtml = fs.readFileSync(
path.join(process.cwd(), "template.html"),
"utf8"
);
console.log("[LOG] Template dosyası yüklendi.");
console.log("[LOG] Handlebars modülü yükleniyor.");
handlebars.registerHelper(
"math",
function (lvalue, operator, rvalue, options) {
lvalue = parseFloat(lvalue);
rvalue = parseFloat(rvalue);
return {
"+": lvalue + rvalue,
"-": lvalue - rvalue,
"*": (lvalue * rvalue).toFixed(2),
"/": lvalue / rvalue,
"%": lvalue % rvalue,
}[operator];
}
);
console.log("[LOG] Handlebars modülü yüklendi.");
console.log("[LOG] PDF Dosyası ayarları yapılıyor.");
const template = handlebars.compile(templateHtml);
const finalHtml = encodeURIComponent(template(data));
const options = {
format: "A4",
headerTemplate: "<p></p>",
footerTemplate: "<p></p>",
displayHeaderFooter: false,
printBackground: true,
margin: { top: 20, right: 20, bottom: 20, left: 20 },
path: fileName,
};
console.log("[LOG] PDF Dosyası ayarları yapıldı.");
console.log("[LOG] Puppeteer modülü çalıştırılıyor.");
const browser = await puppeteer.launch({
headless: "new",
defaultViewport: null
});
const page = await browser.newPage();
await page.setViewport({ width: 794, height: 1123 });
await page.goto(`data:text/html;charset=UTF-8,${finalHtml}`, {
waitUntil: "networkidle0",
});
await page.pdf(options);
await browser.close();
console.log("[LOG] Puppeteer modülü başarıyla çalıştırıldı.");
const endTime = new Date().getTime();
const elapsedTime = (endTime - startTime) / 1000;
console.log("Katalog başarıyla oluşturuldu. (" + elapsedTime + " saniye)");
} catch (err) {
console.log("Bir hata meydana geldi:", err);
}
};
(async () => {
await GeneratePDF(await dataSource(), "catalog.pdf");
})();