-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
153 lines (135 loc) · 3.29 KB
/
index.js
File metadata and controls
153 lines (135 loc) · 3.29 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
require("update-electron-app")();
const { menubar } = require("menubar");
const Sentry = require("@sentry/electron");
const path = require("path");
const {
app,
Tray,
Menu,
globalShortcut,
shell,
nativeImage,
} = require("electron");
const contextMenu = require("electron-context-menu");
Sentry.init({ dsn: "https://eb6fb57c831b4fef9b55b9322c1df056@o249226.ingest.sentry.io/4504459919818752" });
const image = nativeImage.createFromPath(path.join(__dirname, "assets", "robot-16.png"));
app.on("ready", () => {
const tray = new Tray(image);
const menuBar = menubar({
browserWindow: {
icon: image,
webPreferences: {
webviewTag: true,
nativeWindowOpen: true,
},
width: 400,
height: 600,
},
tray,
showOnAllWorkspaces: true,
preloadWindow: true,
showDockIcon: true,
icon: image,
});
menuBar.on("ready", () => {
const { window } = menuBar;
if (process.platform !== "darwin") {
window.setSkipTaskbar(true);
} else {
app.dock.hide();
}
const contextMenuTemplate = [
{
label: "Quit",
accelerator: "Command+Q",
click: () => { app.quit(); },
},
{
label: "Reload",
accelerator: "Command+R",
click: () => {
window.reload();
},
},
{
label: "Open in browser",
click: () => {
shell.openExternal("https://chat.openai.com/chat");
},
},
{
type: "separator",
},
];
tray.on("right-click", () => {
menuBar.tray.popUpContextMenu(Menu.buildFromTemplate(contextMenuTemplate));
});
globalShortcut.register("CommandOrControl+Shift+g", () => {
if (window.isVisible()) {
menuBar.hideWindow();
} else {
menuBar.showWindow();
if (process.platform == "darwin") {
menuBar.app.show();
}
menuBar.app.focus();
}
});
const menu = new Menu();
Menu.setApplicationMenu(menu);
console.log("ready")
});
app.on("web-contents-created", (e, contents) => {
if (contents.getType() == "webview") {
contents.on("new-window", (e, url) => {
e.preventDefault();
shell.openExternal(url);
});
contextMenu({
window: contents,
});
contents.on("before-input-event", (_, input) => {
const { control, meta, key } = input;
if (!control && !meta) return;
// convert upper lines to switch case
switch (key) {
case "c":
contents.copy();
break;
case "v":
contents.paste();
break;
case "a":
contents.selectAll();
break;
case "z":
contents.undo();
break;
case "y":
contents.redo();
break;
case "q":
app.quit();
break;
case "r":
contents.reload();
break;
}
});
}
});
if (process.platform == "darwin") {
menuBar.on("after-hide", () => {
menuBar.app.hide();
});
}
app.commandLine.appendSwitch(
"disable-backgrounding-occluded-windows",
"true"
);
});
app.on("window-all-closed", () => {
if (process.platform !== "darwin") {
app.quit();
}
});