-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
149 lines (135 loc) · 3.99 KB
/
main.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
const electron = require('electron');
const url = require('url');
const path = require('path');
const { app, BrowserWindow, Menu, ipcMain } = electron;
const { isMainThread, parentPort, workerData, threadId, MessageChannel, MessagePort, Worker } = require('worker_threads');
// import 'materialize-css';
//SET ENV --set enviroment so you can build exe file
// process.env.NODE_ENV = 'production';
let mainWindow;
let addwindow;
let workerWindow;
//listen for app ready
app.on('ready', function () {
mainWindow = new BrowserWindow({
width: 800,
height: 700,
resizable: true,
show: false,
backgroundColor: '#2e2c29',
// The lines below solved the issue
webPreferences: {
preload: path.join(__dirname, 'logicOfMainWindow.js')
}
});
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'mainWindow.html'),
protocol: 'file:',
slashes: true
}))
mainWindow.on('close', function () {
app.quit();
})
mainWindow.once('ready-to-show', () => {
mainWindow.show()
})
//build menu from template
const mainMenu = Menu.buildFromTemplate(mainmenuTemplate)
//Insert menu
Menu.setApplicationMenu(mainMenu);
//hidden window for printing
workerWindow = new BrowserWindow();
workerWindow.loadURL("file://" + __dirname + "/printerWindow.html");
workerWindow.hide();
})
ipcMain.on("startStreaming", function (event, url) {
console.log(url)
tester(url)
})
async function tester(url)
{
const { createFFmpeg, fetchFile } = require('@ffmpeg/ffmpeg');
const ffmpeg = createFFmpeg({ log: true });
await ffmpeg.load();
await ffmpeg.run('-re', '-i', url, '-vcodec', 'libx264', '-acodec', 'copy', '-f', 'hls', '-hls_list_size', '3', '-hls_wrap', '5', 'playlist.m3u8');
// ffmpeg.exit(0);
}
// retransmit it to workerWindow
ipcMain.on("printPDF", function (event, content) {
workerWindow.webContents.send("printPDF", content);
});
// when worker window is ready
ipcMain.on("readyToPrintPDF", (event) => {
workerWindow.webContents.print({ silent: true });
})
//catch global data sending from all windows theough ipcrenderer
ipcMain.on('item:add', function (e, item) {
console.log(item)
mainWindow.webContents.send('item:add', item);
addwindow.close();
})
//create menu template
const mainmenuTemplate =
[
{
label: "Hoang",
submenu: [
{
label: "Thêm item",
click() {
createAddWindow();
}
},
{
label: "Xóa item",
click() {
mainWindow.webContents.send('item:clear');
}
},
{
label: "Thoát",
accelerator: process.platform == 'win32' ? 'Ctrl+Q' : 'Command+Q',
click() {
app.quit();
}
}
]
}
];
//create sub windows
function createAddWindow() {
addwindow = new BrowserWindow({
width: 300,
height: 200
});
addwindow.loadURL(url.format({
pathname: path.join(__dirname, 'addWindow.html'),
protocol: 'file:',
slashes: true
}))
//clear garbage
addwindow.on('close', function () {
addwindow = null
}
);
}
//add developer tools item if not in production
if (process.env.NODE_ENV !== 'production') {
mainmenuTemplate.push(
{
label: 'Debug Phát triển',
accelerator: process.platform == 'win32' ? 'F12' : 'F12',
submenu: [
{
label: "Mở tool",
click(item, focusedWindow) {
focusedWindow.toggleDevTools();
}
},
{
role: 'reload'
}
]
}
)
}