This repository has been archived by the owner on Dec 1, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
179 lines (144 loc) · 4.24 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
const {app, BrowserWindow, Menu, MenuItem, Tray, ipcMain, shell} = require('electron');
const fs = require("fs");
const settings = require('electron-settings');
const path = require('path');
const url = require('url');
const SETTINGS_ACCEPTED_VERSIONS = 'acceptedVersions';
let icon = path.join(__dirname, 'icon.png');
let disclaimerWindow, whatsappWindow, tray;
let menu = Menu.buildFromTemplate([
{
label: 'File',
submenu: [
{ label: 'Quit', click: quit }
]
},
{
role: 'window',
submenu: [
{role: 'minimize'},
{role: 'close'}
]
},
]);
ipcMain.on('get-license', (event) => {
var data = fs.readFileSync(path.join(__dirname, 'LICENSE'));
event.returnValue = data.toString();
});
ipcMain.on('determine-version', (event) => {
event.returnValue = app.getVersion();
});
function createWindow() {
if (whatsappWindow) {
return whatsappWindow;
}
if (disclaimerWindow) {
return disclaimerWindow;
}
let acceptedVersions = settings.get(SETTINGS_ACCEPTED_VERSIONS);
if (!(acceptedVersions instanceof Array)) {
acceptedVersions = [];
}
let version = app.getVersion();
if (-1 !== acceptedVersions.indexOf(version)) {
createWhatsAppWindow();
return whatsappWindow;
}
createDisclaimerWindow();
return disclaimerWindow;
}
function createDisclaimerWindow() {
disclaimerWindow = new BrowserWindow({
width: 800,
height: 680,
resizable: false,
autoHideMenuBar: true,
icon: icon
});
disclaimerWindow.setMenu(menu);
disclaimerWindow.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}));
// Open the DevTools.
//disclaimerWindow.webContents.openDevTools()
disclaimerWindow.webContents.on('new-window', (event, url) => {
event.preventDefault();
shell.openExternal(url);
});
ipcMain.on('accept', () => {
let acceptedVersions = settings.get(SETTINGS_ACCEPTED_VERSIONS);
if (!(acceptedVersions instanceof Array)) {
acceptedVersions = [];
}
acceptedVersions.push(app.getVersion());
settings.set(SETTINGS_ACCEPTED_VERSIONS, acceptedVersions);
createWhatsAppWindow();
disclaimerWindow.close();
});
disclaimerWindow.on('closed', () => {
disclaimerWindow = null;
});
}
function createWhatsAppWindow() {
whatsappWindow = new BrowserWindow({
width: 930,
height: 630,
autoHideMenuBar: true,
icon: icon
});
whatsappWindow.setMenu(menu);
whatsappWindow.loadURL('https://web.whatsapp.com/');
// Open the DevTools.
//whatsappWindow.webContents.openDevTools()
whatsappWindow.webContents.on('new-window', (event, url) => {
event.preventDefault();
shell.openExternal(url);
});
whatsappWindow.on('minimize',function(event){
event.preventDefault()
mainWindow.hide();
});
whatsappWindow.on('close', function (event) {
if (!app.isQuiting) {
event.preventDefault()
whatsappWindow.hide();
}
return false;
});
whatsappWindow.on('closed', () => {
whatsappWindow = null;
});
}
function createTray() {
let contextMenu = new Menu();
contextMenu.append(new MenuItem({ label: 'Show window', click: show }));
contextMenu.append(new MenuItem({ type: 'separator' }));
contextMenu.append(new MenuItem({ label: 'Quit', click: quit }));
tray = new Tray(icon);
tray.setTitle("WhatsApp");
tray.setToolTip("WhatsApp");
tray.setContextMenu(contextMenu);
tray.on('click', show);
}
function show() {
let window = createWindow();
window.show();
window.focus();
}
function quit() {
app.isQuiting = true;
app.quit();
}
app.on('ready', () => {
createTray();
createWindow();
});
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (whatsappWindow === null) {
createWindow();
}
})