-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
118 lines (106 loc) · 3.27 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
const { app, BrowserWindow, ipcMain } = require('electron');
const fs = require('fs');
const setupKeys = require('./src/js/shortcuts');
var path = require('path');
var pathToFile = path.join(__dirname, '/src/', 'data.json');
var data;
function emitInitial() {
newScreen.webContents.send('initial', String(pathToFile));
}
function emitUpdateValues() {
newScreen.webContents.send('updateValues');
}
function emitUpdateMarkers() {
newScreen.webContents.send('updateMarkers');
}
function emitUpdateControls() {
newScreen.webContents.send('updateControls', data);
}
function emitUpdateDarkMode() {
newScreen.webContents.send('updateDarkMode', data);
emitUpdateValues();
}
function getData() {
data = JSON.parse(fs.readFileSync(pathToFile, 'utf8'));
}
function setData() {
fs.writeFileSync(pathToFile, JSON.stringify(data));
emitUpdateValues();
}
var mainWindow;
const createWindow = () => {
getData();
newScreen = new BrowserWindow({
webPreferences: {
nodeIntegration: true,
nodeIntegrationInWorker: true,
contextIsolation: false,
},
width: data.grid.width,
minWidth: data.window.minWidth,
maxWidth: data.window.maxWidth,
height: data.grid.height >= data.window.minHeight ? data.grid.height : data.window.minHeight,
minHeight: data.window.minHeight,
maxHeight: data.window.maxHeight,
opacity: data.window.opacity,
alwaysOnTop: data.window.alwaysOnTop,
frame: false,
transparent: true,
});
newScreen.setPosition(data.window.x, data.window.y);
newScreen.loadFile('./src/index.html');
/* newScreen.webContents.openDevTools(true); */
newScreen.on('ready-to-show', () => {
emitInitial();
setupKeys(data);
newScreen.setIgnoreMouseEvents(!data.window.controls);
});
mainWindow = newScreen;
};
app.whenReady().then(() => {
var mainWindow = createWindow();
ipcMain.on('resync', (event, newData) => {
getData();
newScreen.setSize(data.grid.width, data.grid.height);
});
ipcMain.on('syncControls', (event, newData) => {
getData();
emitUpdateControls();
newScreen.setIgnoreMouseEvents(!data.window.controls);
});
ipcMain.on('updateMarkers', (event, newData) => {
getData();
emitUpdateMarkers();
});
ipcMain.on('updateDarkMode', (event, newData) => {
getData();
emitUpdateDarkMode();
});
ipcMain.on('updateAlwaysOnTop', (event, newData) => {
getData();
newScreen.setAlwaysOnTop(data.window.alwaysOnTop);
});
ipcMain.on('closeRuler', (event, newData) => {
app.quit();
});
newScreen.on('resized', () => {
getData();
let size = newScreen.getSize();
if (size[1] < data.window.minHeight) {
size[1] = data.window.minHeight;
}
data.grid.width = size[0];
data.grid.height = size[1];
setData();
emitUpdateMarkers();
});
newScreen.on('moved', () => {
getData();
let position = newScreen.getPosition();
data.window.x = position[0];
data.window.y = position[1];
setData();
});
newScreen.on('focus', () => {});
newScreen.on('blur', () => {});
});