forked from edizbaha/gemini-desktop
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
378 lines (333 loc) · 13.2 KB
/
index.js
File metadata and controls
378 lines (333 loc) · 13.2 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
(async () => {
const { app, Tray, Menu, shell, BrowserWindow, globalShortcut, screen, ipcMain, dialog } = await import('electron');
const path = await import('path');
const Store = (await import('electron-store')).default;
const store = new Store();
const { autoUpdater } = require('electron-updater');
const contextMenu = await import('electron-context-menu');
let tray, gemini, closeTimeout, visible = true;
// Setup autoUpdater
try {
autoUpdater.setFeedURL({
provider: 'github',
owner: 'ninjaeon',
repo: 'gemini-desktop-fork',
});
autoUpdater.on('error', (error) => {
dialog.showMessageBox({
type: 'error',
title: 'Update Error',
message: 'An error occurred while checking for updates.',
detail: error ? error.message : 'Unknown error'
});
});
autoUpdater.on('checking-for-update', () => {
dialog.showMessageBox({
type: 'info',
title: 'Checking for Updates',
message: 'Checking for new version...',
buttons: ['OK']
});
});
autoUpdater.autoDownload = false;
autoUpdater.on('update-available', () => {
dialog.showMessageBox({
type: 'info',
buttons: ['Update', 'Later'],
title: 'Update Available',
message: 'A new version is available. Would you like to update now?'
}).then(({ response }) => {
if (response === 0) {
autoUpdater.downloadUpdate();
}
});
});
autoUpdater.on('update-downloaded', () => {
dialog.showMessageBox({
type: 'info',
buttons: ['Restart'],
title: 'Update Ready',
message: 'Update has been downloaded. The application will now restart to install the update.'
}).then(() => {
autoUpdater.quitAndInstall();
});
});
autoUpdater.on('update-not-available', () => {
dialog.showMessageBox({
type: 'info',
buttons: ['OK'],
title: 'No Updates',
message: 'You are running the latest version.'
});
});
} catch (error) {
dialog.showMessageBox({
type: 'error',
title: 'Update Error',
message: 'An error occurred while setting up the auto updater.',
detail: error ? error.message : 'Unknown error'
});
}
const exec = code => gemini.webContents.executeJavaScript(code),
getValue = (key, defaultVal = false) => store.get(key, defaultVal);
const toggleVisibility = action => {
visible = action;
if (action){
clearTimeout(closeTimeout);
gemini.show();
} else closeTimeout = setTimeout(() => gemini.hide(), 400);
gemini.webContents.send('toggle-visibility', action);
};
const registerKeybindings = () => {
globalShortcut.unregisterAll();
const shortcutA = getValue('shortcutA'),
shortcutB = getValue('shortcutB');
if (shortcutA) {
globalShortcut.register(shortcutA, () => toggleVisibility(!visible));
}
if (shortcutB) {
globalShortcut.register(shortcutB, () => {
toggleVisibility(true);
gemini.webContents.send('activate-mic');
});
}
};
// Calculate a safe window position within screen bounds
const calculateSafeWindowPosition = (winWidth, winHeight) => {
const {width, height} = screen.getPrimaryDisplay().workArea;
// Add padding to ensure window is fully visible
const padding = 10;
// Calculate position to place window on right side with padding
const x = Math.max(padding, Math.min(width - winWidth - padding, width - winWidth - padding));
const y = Math.max(padding, Math.min(height - winHeight - padding, height - winHeight - padding));
return { x, y };
};
// Save window position
const saveWindowPosition = () => {
if (!gemini) return;
const position = gemini.getPosition();
const size = gemini.getSize();
store.set('windowPosition', {
x: position[0],
y: position[1],
width: size[0],
height: size[1]
});
};
// Reset window position to default
const resetWindowPosition = () => {
if (!gemini) return;
const winWidth = 400, winHeight = 700;
// Get safe default position
const { x, y } = calculateSafeWindowPosition(winWidth, winHeight);
// Set window position and size
gemini.setPosition(x, y);
gemini.setSize(winWidth, winHeight);
// Remove saved position
store.delete('windowPosition');
// Show window if hidden
if (!visible) {
toggleVisibility(true);
}
};
const createWindow = () => {
const winWidth = 400, winHeight = 700;
// Get safe default position
const defaultPosition = calculateSafeWindowPosition(winWidth, winHeight);
// Get saved position or use default
const savedPosition = store.get('windowPosition', {
x: defaultPosition.x,
y: defaultPosition.y,
width: winWidth,
height: winHeight
});
gemini = new BrowserWindow({
width: savedPosition.width || winWidth,
height: savedPosition.height || winHeight,
frame: false,
movable: true,
maximizable: false,
resizable: true,
skipTaskbar: true,
alwaysOnTop: true,
transparent: true,
x: savedPosition.x,
y: savedPosition.y,
icon: path.default.resolve(__dirname, 'icon.png'),
show: getValue('show-on-startup', true),
webPreferences: {
contextIsolation: false,
nodeIntegration: true,
webviewTag: true,
webSecurity: false,
preload: path.default.join(__dirname, 'src/preload.js')
}
});
gemini.loadFile('src/index.html').catch(error => {
dialog.showMessageBox({
type: 'error',
title: 'Error loading index.html',
message: 'Failed to load index.html.',
detail: error ? error.message : 'Unknown error'
});
});
gemini.webContents.setWindowOpenHandler(({ url }) => {
shell.openExternal(url).catch(error => {
dialog.showMessageBox({
type: 'error',
title: 'Error opening external URL',
message: 'Failed to open external URL.',
detail: error ? error.message : 'Unknown error'
});
});
return { action: 'deny' };
});
gemini.on('blur', () => {
if (!getValue('always-on-top', false)) toggleVisibility(false);
});
// Save position when window is moved
gemini.on('moved', saveWindowPosition);
// Save size when window is resized
gemini.on('resize', saveWindowPosition);
// Save position before window is closed
gemini.on('close', saveWindowPosition);
ipcMain.handle('get-local-storage', (event, key) => getValue(key));
ipcMain.on('set-local-storage', (event, key, value) => {
store.set(key, value);
registerKeybindings();
});
ipcMain.on('close', event => {
BrowserWindow.fromWebContents(event.sender).close();
});
contextMenu.default({
window: gemini,
showInspectElement: false
});
// Apply context menu to webview contents
gemini.webContents.on('did-attach-webview', (event, webContents) => {
contextMenu.default({
window: webContents,
showInspectElement: false
});
});
};
const createTray = () => {
try {
tray = new Tray(path.default.resolve(__dirname, 'icon.png'));
const contextMenu = Menu.buildFromTemplate([
{
label: 'About (GitHub)',
click: () => shell.openExternal('https://github.com/nekupaw/gemini-desktop/').catch(error => {
dialog.showMessageBox({
type: 'error',
title: 'Error opening GitHub page',
message: 'Failed to open GitHub page.',
detail: error ? error.message : 'Unknown error'
});
})
},
{
label: 'Check for Updates',
click: () => {
autoUpdater.checkForUpdates().catch(error => {
dialog.showMessageBox({
type: 'error',
title: 'Update Check Failed',
message: 'Failed to check for updates.',
detail: error ? error.message : 'Unknown error',
buttons: ['OK']
});
});
}
},
{type: 'separator'},
{
label: "Set Keybindings",
click: () => {
const dialog = new BrowserWindow({
width: 500,
height: 370,
frame: false,
maximizable: false,
resizable: false,
skipTaskbar: true,
webPreferences: {
contextIsolation: true,
preload: path.default.join(__dirname, 'components/setKeybindingsOverlay/preload.js')
}
});
dialog.loadFile('components/setKeybindingsOverlay/index.html').catch(error => {
dialog.showMessageBox({
type: 'error',
title: 'Error loading setKeybindingsOverlay',
message: 'Failed to load setKeybindingsOverlay.',
detail: error ? error.message : 'Unknown error'
});
});
dialog.show();
}
},
{
label: 'Reset Window Position',
click: () => resetWindowPosition()
},
{
label: 'Always on Top',
type: 'checkbox',
checked: getValue('always-on-top', false),
click: menuItem => store.set('always-on-top', menuItem.checked)
},
{
label: 'Show on Startup',
type: 'checkbox',
checked: getValue('show-on-startup', true),
click: menuItem => store.set('show-on-startup', menuItem.checked)
},
{type: 'separator'},
{
label: 'Quit Gemini',
click: () => gemini.close()
}
]);
tray.setContextMenu(contextMenu);
// Update tray click behavior
tray.on('click', () => {
if (gemini.isVisible()) {
// If window is already visible, close it (regardless of always-on-top setting)
toggleVisibility(false);
} else {
// If window is hidden, show it
toggleVisibility(true);
}
});
} catch (error) {
dialog.showMessageBox({
type: 'error',
title: 'Error creating tray',
message: 'Failed to create tray.',
detail: error ? error.message : 'Unknown error'
});
}
};
app.whenReady().then(() => {
try {
createTray();
createWindow();
registerKeybindings();
} catch (error) {
dialog.showMessageBox({
type: 'error',
title: 'Error during app initialization',
message: 'Failed to initialize the application.',
detail: error ? error.message : 'Unknown error'
});
}
}).catch(error => {
dialog.showMessageBox({
type: 'error',
title: 'Error during app initialization',
message: 'Failed to initialize the application.',
detail: error ? error.message : 'Unknown error'
});
});
})();