forked from UnchartedBull/OctoDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
154 lines (133 loc) · 3.9 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
150
151
152
153
154
/* eslint-disable @typescript-eslint/no-var-requires */
const {
app,
BrowserWindow,
ipcMain,
session
} = require('electron');
const url = require('url');
const path = require('path');
const fs = require('fs');
const Store = require('electron-store');
const store = new Store();
const exec = require('child_process').exec;
const args = process.argv.slice(1);
const dev = args.some(val => val === '--serve');
const big = args.some(val => val === '--big');
app.commandLine.appendSwitch('touch-events', 'enabled');
app.allowRendererProcessReuse = true;
let window;
function createWindow() {
config = store.get('config');
store.onDidChange('config', newValue => {
config = newValue;
});
const {
screen,
session
} = require('electron');
if (!dev) {
session.defaultSession.webRequest.onHeadersReceived((details, callback) => {
callback({
responseHeaders: {
...details.responseHeaders,
'Content-Security-Policy': ['script-src \'self\'']
}
})
})
}
const mainScreen = screen.getPrimaryDisplay();
window = new BrowserWindow({
width: dev ? (big ? 1400 : 1080) : mainScreen.size.width,
height: dev ? (big ? 502 : 342) : mainScreen.size.height,
frame: dev ? true : false,
backgroundColor: '#353b48',
webPreferences: {
nodeIntegration: true,
},
icon: path.join(__dirname, 'src/assets/icon.png'),
});
if (dev) {
require('electron-reload')(__dirname, {
electron: require(`${__dirname}/node_modules/electron`),
});
window.loadURL('http://localhost:4200');
window.webContents.openDevTools();
} else {
window.loadURL(
url.format({
pathname: path.join(__dirname, 'dist/index.html'),
protocol: 'file:',
slashes: true,
}),
);
window.setFullScreen(true);
}
// setTimeout(sendVersionInfo, 30 * 1000);
activateAppInfoListener();
activateScreenSleepListener();
activateReloadListener();
window.on('closed', () => {
window = null;
});
}
function activateScreenSleepListener() {
ipcMain.on('screenSleep', () => {
exec('xset dpms force standby');
});
ipcMain.on('screenWakeup', () => {
exec('xset s off');
exec('xset -dpms');
exec('xset s noblank');
});
}
function activateReloadListener() {
ipcMain.on('reload', () => {
window.loadURL(
url.format({
pathname: path.join(__dirname, 'dist/index.html'),
protocol: 'file:',
slashes: true,
}),
);
});
}
function activateAppInfoListener() {
ipcMain.on('appInfo', () => {
sendCustomStyles();
sendVersionInfo();
})
}
function sendCustomStyles() {
fs.readFile(path.join(app.getPath('userData'), 'custom-styles.css'), 'utf-8', (err, data) => {
if (err) {
if (err.code === 'ENOENT') {
fs.writeFile(path.join(app.getPath('userData'), 'custom-styles.css'), '', (err) => {
if (err) {
window.webContents.send('customStylesError', err)
} else {
window.webContents.send('customStyles', '')
}
})
} else {
window.webContents.send('customStylesError', err)
}
} else {
window.webContents.send('customStyles', data)
}
})
}
function sendVersionInfo() {
window.webContents.send('versionInformation', {
version: app.getVersion(),
});
}
app.on('ready', createWindow);
app.on('window-all-closed', () => {
app.quit();
});
app.on('activate', () => {
if (window === null) {
createWindow();
}
});