forked from kleder/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
236 lines (200 loc) · 6.41 KB
/
main.ts
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
//handle setupevents as quickly as possible
const electron = require("electron")
import {SquirrelEvent} from './src/SquirrelEvent';
import { dirname } from 'path';
import { last } from '@angular/router/src/utils/collection';
import { CustomMenu } from './src/Menu'
const newMenu = new CustomMenu();
const events = new SquirrelEvent();
if (events.handleSquirrelEvent(electron.app)) {
// squirrel event handled and app will exit in 1000ms, so don't do anything else
process.exit;
}
const app = electron.app
const BrowserWindow = electron.BrowserWindow
const Tray = electron.Tray
var trayIcon = null;
const Menu = electron.Menu
const url = require('url')
const path = require('path')
const ipcMain = electron.ipcMain
const ipcRenderer = require('electron').ipcRenderer;
let mainWindow, serve;
let splash
const args = process.argv.slice(1);
serve = args.some(val => val === '--serve');
if (serve) {
require('electron-reload')(__dirname, {
});
}
function createWindow(name) {
const electronScreen = screen;
// const size = electronScreen.getPrimaryDisplay().workAreaSize;
// Create the browser window.
name = new BrowserWindow({
// x: 0,
// y: 0,
width: 400,
height: 656
});
// and load the index.html of the app.
name.loadURL(url.format({
pathname: path.join(__dirname + '/' + name + '.html'),
protocol: 'file',
slashes: true,
icon: __dirname + 'assets/img/icon.ico'
}))
// Open the DevTools.
// if (serve) {
// name.webContents.openDevTools();
// }
// Emitted when the window is closed.
name.on('closed', () => {
// Dereference the window object, usually you would store window
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
name = null;
});
}
try {
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
// app.on('ready', createWindow);
app.on('ready', () => {
let trayImage = ''
if (process.platform == 'darwin' || process.platform == 'linux') {
trayImage = './assets/tray/osx/icon_tray-normal.png';
}
else if (process.platform == 'win32') {
trayImage = './assets/tray/win/icon_tray-normal.ico';
}
const iconPath = path.join(__dirname, trayImage);
trayIcon = new Tray(iconPath);
trayIcon.setToolTip('T-Rec App');
// if (process.platform == 'darwin') {
// trayIcon.setPressedImage(path.join(__dirname, './assets/tray/osx/icon_tray-clicked.png'))
// }
// else if (process.platform == 'win32') {
// trayIcon.setPressedImage(path.join(__dirname, './assets/tray/win/icon_tray-clicked.png'))
// }
ipcMain.on('trayChange', function(ev, iconPath) {
trayIcon.setImage(iconPath);
});
mainWindow = new BrowserWindow({
width: 400,
height: 650,
minWidth:400,
minHeight: 650,
title: 'T-Rec App',
frame: false,
icon: __dirname + '/assets/trec-logo.png',
show: false
})
splash = new BrowserWindow({
width: 400,
height: 420,
minWidth:400,
minHeight: 420,
frame: false,
alwaysOnTop: true
})
splash.loadURL(url.format({
pathname: path.join(__dirname, 'splash.html'),
protocol: 'file',
slashes: true,
icon: __dirname + '/assets/trec-logo.png'
}))
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file',
slashes: true,
icon: __dirname + '/assets/trec-logo.png'
}))
mainWindow.webContents.executeJavaScript(`
var path = require('path');
module.paths.push(path.resolve('node_modules'));
module.paths.push(path.resolve('../node_modules'));
module.paths.push(path.resolve(__dirname, '..', '..', 'electron', 'node_modules'));
module.paths.push(path.resolve(__dirname, '..', '..', 'electron.asar', 'node_modules'));
module.paths.push(path.resolve(__dirname, '..', '..', 'app', 'node_modules'));
module.paths.push(path.resolve(__dirname, '..', '..', 'app.asar', 'node_modules'));
path = undefined;
`);
splash.once("ready-to-show", () => { splash.show()
})
setTimeout(() => {
splash.destroy()
mainWindow.show()
}, 3000)
mainWindow.on('closed', function() {
app.quit()
})
mainWindow.webContents.on('context-menu', (e, props) => {
const InputMenu = Menu.buildFromTemplate([
{ label: "Cut",
accelerator: "CmdOrCtrl+X",
role: "cut"
},
{ label: "Copy", accelerator: "CmdOrCtrl+C", role: "copy" },
{ label: "Paste", accelerator: "CmdOrCtrl+V", role: "paste" },
{ label: "Reload", accelerator: "CmdOrCtrl+R", role: "reload"},
{ label: 'Toggle DevTools',
click() {
mainWindow.toggleDevTools()
}},
{
label: "Quit app",
accelerator: process.platform == 'darwin' ? 'Command+Q': 'Ctrl+Q',
click() {
app.quit()
}
}
]);
const { inputFieldType } = props;
InputMenu.popup(mainWindow, props);
});
if (process.platform == 'darwin') {
var mainMenuTemplate:Array<any> = [
{
submenu: newMenu.initMenu(app, mainWindow)
}
]
mainMenuTemplate.push(
{
label: 'Edit',
submenu: [
{role: 'cut'},
{role: 'copy'},
{role: 'paste'},
{role: 'selectall'}
]
}
)
Menu.setApplicationMenu(Menu.buildFromTemplate(mainMenuTemplate))
}
trayIcon.on('click', () => {
mainWindow.isMinimized() ? mainWindow.show() : mainWindow.minimize()
})
});
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
// On OS X 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 (mainWindow === null) {
this.createWindow();
} else {
mainWindow.show()
}
});
} catch (e) {
// Catch Error
// throw e;
}