-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
executable file
·51 lines (41 loc) · 1.5 KB
/
index.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
'use strict';
const path = require('path');
const electron = require('electron');
const PDFJS = require('pdfjs-dist');
module.exports = function () {
const BrowserWindow = electron.BrowserWindow || electron.remote.BrowserView;
let printWindow;
const open = (window, { data }) => {
// TODO: check window is valid
// TODO: check data is a String or Uint8Array
console.log('Opening Print Dialog...');
printWindow = new BrowserWindow({
width: 900,
height: 600,
modal: true,
frame: false,
resizable: false,
parent: window,
webPreferences: { plugins: true, nodeIntegration: true }
});
printWindow.removeMenu();
printWindow.webContents.openDevTools();
printWindow.loadURL(`file://${path.join(__dirname, '../dist/index.html')}`);
printWindow.on('closed', () => (printWindow = null));
// use data to create a pdf file in the temp dir
// send url to the window when the dom is ready
// TODO: move this to react app and use electron.remote
// const printers = printWindow.webContents.getPrinters();
};
const createPDF = (data) => {
// check if data is Uint8array | url
// if its a url make request and read content-type from headers
// if its a Uint8Array or pdf document type create a pdf
PDFJS.getDocument(data);
// TODO: if its a image type open hidden browser window and printToPDF
// TODO: if its html open hidden browser window and get outerHTML of the webcontents
}
return {
open
};
}();