-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
152 lines (136 loc) · 3.55 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
const { app, BrowserWindow, Menu, dialog, shell, ipcMain, nativeTheme } = require('electron');
const path = require('path');
let win;
let splash;
function createSplash() {
splash = new BrowserWindow({
width: 400,
height: 300,
frame: false,
transparent: true,
alwaysOnTop: true,
icon: path.join(__dirname, 'assets/icon.png'),
webPreferences: {
nodeIntegration: false,
contextIsolation: true,
}
});
splash.loadFile('assets/splash.html');
}
function createWindow() {
splash.close();
win = new BrowserWindow({
width: 850,
height: 650,
icon: path.join(__dirname, 'assets/icon.png'),
webPreferences: {
nodeIntegration: false,
contextIsolation: true,
preload: path.join(__dirname, 'preload.js'),
devTools: false
},
});
win.maximize();
win.loadURL('https://chat.deepseek.com');
win.webContents.setWindowOpenHandler(({ url }) => {
shell.openExternal(url);
return { action: 'deny' };
});
const menuTemplate = [
{
label: 'DeepSeek',
submenu: [
{
label: 'Home',
click: () => win.loadURL('https://chat.deepseek.com')
},
{ type: 'separator' },
{ role: 'quit' }
]
},
{
label: 'Edit',
submenu: [
{ role: 'undo' },
{ role: 'redo' },
{ type: 'separator' },
{ role: 'cut' },
{ role: 'copy' },
{ role: 'paste' }
]
},
{
label: 'View',
submenu: [
{ role: 'reload' },
{ role: 'forceReload' },
{ type: 'separator' },
{ role: 'resetZoom' },
{ role: 'zoomIn' },
{ role: 'zoomOut' },
{ type: 'separator' },
{ role: 'togglefullscreen' }
]
},
{
label: 'Help',
submenu: [
{
label: 'About',
click: () => {
dialog.showMessageBox(win, {
type: 'info',
title: 'About DeepSeek',
message: `DeepSeek Artificial Intelligence Co., Ltd. (referred to as "DeepSeek" or "深度求索") , founded in 2023, is a Chinese company dedicated to making AGI a reality.\nVersion: 1.8.0`,
buttons: ['OK'],
});
}
},
{ type: 'separator' },
{
label: 'Contact Developer',
enabled: false
},
{
label: 'Telegram',
click: () => shell.openExternal('https://t.me/h3dev')
},
{
label: 'Instagram',
click: () => shell.openExternal('https://instagram.com/h3dev.pira')
},
{
label: 'Email',
click: () => shell.openExternal('mailto:[email protected]')
}
]
}
];
const menu = Menu.buildFromTemplate(menuTemplate);
Menu.setApplicationMenu(menu);
const contextMenu = Menu.buildFromTemplate([
{ role: 'cut', label: 'Cut' },
{ role: 'copy', label: 'Copy' },
{ role: 'paste', label: 'Paste' },
{ type: 'separator' },
{ role: 'selectAll', label: 'Select All' },
{ role: 'togglefullscreen' }
]);
win.webContents.on('context-menu', (event, params) => {
contextMenu.popup(win, params.x, params.y);
});
}
app.whenReady().then(() => {
createSplash();
setTimeout(createWindow, 2000);
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) createWindow();
});
nativeTheme.themeSource = 'dark';
});
ipcMain.on('open-external', (event, url) => {
shell.openExternal(url);
});
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit();
});