-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
456 lines (413 loc) · 12 KB
/
main.js
File metadata and controls
456 lines (413 loc) · 12 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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
const { app, BrowserWindow, ipcMain, dialog, Menu } = require('electron');
const fs = require('fs');
const path = require('path');
const { webUtils } = require('electron');
// Handle creating/removing shortcuts on Windows when installing/uninstalling.
if (require('electron-squirrel-startup')) {
app.quit();
return;
}
let mainWindow;
// Window settings storage
const settingsPath = path.join(app.getPath('userData'), 'window-settings.json');
function loadWindowSettings() {
try {
if (fs.existsSync(settingsPath)) {
const settings = JSON.parse(fs.readFileSync(settingsPath, 'utf8'));
return settings;
}
} catch (error) {
console.error('Error loading window settings:', error);
}
// Default settings
return {
width: 1200,
height: 800,
x: undefined,
y: undefined,
isMaximized: false
};
}
function saveWindowSettings() {
try {
if (mainWindow) {
const bounds = mainWindow.getBounds();
const settings = {
width: bounds.width,
height: bounds.height,
x: bounds.x,
y: bounds.y,
isMaximized: mainWindow.isMaximized()
};
fs.writeFileSync(settingsPath, JSON.stringify(settings, null, 2));
}
} catch (error) {
console.error('Error saving window settings:', error);
}
}
const createWindow = function() {
// Load window settings
const windowSettings = loadWindowSettings();
// Create the browser window.
mainWindow = new BrowserWindow({
width: windowSettings.width,
height: windowSettings.height,
x: windowSettings.x,
y: windowSettings.y,
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
enableRemoteModule: true,
// Enable clipboard access
webSecurity: false,
allowRunningInsecureContent: true
},
icon: path.join(__dirname, 'assets', 'icon.png'), // Add icon support
// Use custom title bar
frame: false, // Remove default frame
titleBarStyle: 'hidden',
backgroundColor: '#1e1e1e', // Set initial background color to standard dark
show: false // Hide window initially to prevent theme flashing
});
// Restore maximized state
// Note: This is now handled after window.show() to prevent flashing
// if (windowSettings.isMaximized) {
// mainWindow.maximize();
// }
// Save window settings when moved or resized
mainWindow.on('moved', saveWindowSettings);
mainWindow.on('resized', saveWindowSettings);
mainWindow.on('maximize', saveWindowSettings);
mainWindow.on('unmaximize', saveWindowSettings);
// Handle file drops
mainWindow.webContents.on('will-navigate', (event, url) => {
// Prevent navigation when dropping files
if (url.startsWith('file://')) {
event.preventDefault();
const filePath = decodeURIComponent(url.replace('file:///', ''));
if (filePath.endsWith('.md') || filePath.endsWith('.markdown')) {
mainWindow.webContents.send('open-file-path', filePath);
}
}
});
// and load the index.html of the app.
mainWindow.loadFile(path.join(__dirname, 'index.html'));
// Show window after content is loaded and theme is applied
mainWindow.webContents.once('did-finish-load', () => {
// Small delay to ensure theme is fully applied
setTimeout(() => {
mainWindow.show();
// Restore maximized state after showing
if (windowSettings.isMaximized) {
mainWindow.maximize();
}
}, 100); // 100ms delay should be enough for theme application
});
// Enable F12 for DevTools
mainWindow.webContents.on('before-input-event', (event, input) => {
if (input.key === 'F12') {
mainWindow.webContents.toggleDevTools();
}
});
// Create the application menu
createMenu();
};
// Create the application menu
function createMenu() {
const template = [
{
label: 'File',
submenu: [
{
label: 'New Tab',
accelerator: 'CmdOrCtrl+T',
click() {
// This will be handled in renderer
}
},
{
label: 'Close Tab',
accelerator: 'CmdOrCtrl+W',
click() {
// This will be handled in renderer
}
},
{ type: 'separator' },
{
label: 'Open',
accelerator: 'CmdOrCtrl+O',
click() {
mainWindow.webContents.send('open-file');
}
},
{
label: 'Save',
accelerator: 'CmdOrCtrl+S',
click() {
mainWindow.webContents.send('save-file');
}
},
{
label: 'Save As',
accelerator: 'CmdOrCtrl+Shift+S',
click() {
mainWindow.webContents.send('save-file-as');
}
},
{ type: 'separator' },
{
label: 'Exit',
click() {
app.quit();
}
}
]
},
{
label: 'View',
submenu: [
{
label: 'Toggle Theme',
click() {
mainWindow.webContents.send('toggle-theme');
}
},
{ type: 'separator' },
{ role: 'reload' },
{ role: 'forcereload' },
{ role: 'toggledevtools' },
{ type: 'separator' },
{ role: 'resetzoom' },
{ role: 'zoomin' },
{ role: 'zoomout' },
{ type: 'separator' },
{ role: 'togglefullscreen' }
]
},
{
label: 'Window',
submenu: [
{ role: 'minimize' },
{ role: 'zoom' },
{ role: 'close' }
]
},
{
label: 'Help',
submenu: [
{
label: 'Learn More',
click() {
require('electron').shell.openExternal('https://github.com');
}
}
]
}
];
const menu = Menu.buildFromTemplate(template);
Menu.setApplicationMenu(menu);
}
// 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();
// Handle file opening from command line arguments or file associations
if (process.argv.length >= 2) {
const argv = process.argv.slice(1);
argv.forEach((arg) => {
if (arg.endsWith('.md') || arg.endsWith('.markdown')) {
// Send file path to renderer when window is ready
if (mainWindow) {
mainWindow.webContents.once('dom-ready', () => {
// Add a small delay to ensure the editor is fully initialized
setTimeout(() => {
mainWindow.webContents.send('open-file-path', arg);
}, 500);
});
}
}
});
}
});
// Handle file opening from file associations (Windows)
app.on('open-file', (event, filePath) => {
event.preventDefault();
if (filePath.endsWith('.md') || filePath.endsWith('.markdown')) {
if (mainWindow) {
mainWindow.webContents.send('open-file-path', filePath);
}
}
});
// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on('window-all-closed', () => {
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 (BrowserWindow.getAllWindows().length === 0) {
createWindow();
}
});
// IPC handlers for window controls
ipcMain.handle('minimize-window', () => {
if (mainWindow) {
mainWindow.minimize();
}
});
ipcMain.handle('maximize-window', () => {
if (mainWindow) {
if (mainWindow.isMaximized()) {
mainWindow.unmaximize();
} else {
mainWindow.maximize();
}
}
});
ipcMain.handle('close-window', () => {
if (mainWindow) {
mainWindow.close();
}
});
// IPC handlers for file operations
ipcMain.handle('open-file-dialog', async () => {
const result = await dialog.showOpenDialog({
properties: ['openFile', 'multiSelections'],
filters: [
{ name: 'Markdown Files', extensions: ['md', 'markdown'] },
{ name: 'All Files', extensions: ['*'] }
]
});
if (!result.canceled && result.filePaths.length > 0) {
try {
// Handle multiple files
const files = [];
for (const filePath of result.filePaths) {
const content = fs.readFileSync(filePath, 'utf8');
files.push({ filePath, content });
}
return { files, multiple: files.length > 1 };
} catch (err) {
console.error('Error reading file:', err);
return { error: 'Failed to read file' };
}
}
return { canceled: true };
});
// Handle getting file path from File object
ipcMain.handle('get-file-path', async (event, filePath) => {
try {
// If we already have a path, return it
if (filePath && typeof filePath === 'string' && filePath !== 'undefined') {
return filePath;
}
// For modern Electron, we would use webUtils.getPathForFile()
// but since we're dealing with drag and drop, the file.path should be available
// This is a fallback for when file.path is undefined
return null;
} catch (error) {
console.error('Error getting file path:', error);
return null;
}
});
// Handle creating temporary file for drag and drop
ipcMain.handle('create-temp-file', async (event, fileName, content) => {
try {
const os = require('os');
const tempDir = os.tmpdir();
const tempFilePath = path.join(tempDir, 'mdreader_' + Date.now() + '_' + fileName);
fs.writeFileSync(tempFilePath, content, 'utf8');
return tempFilePath;
} catch (error) {
console.error('Error creating temporary file:', error);
return null;
}
});
ipcMain.handle('read-file', async (event, filePath) => {
try {
const content = fs.readFileSync(filePath, 'utf8');
return { content };
} catch (err) {
console.error('Error reading file:', err);
return { error: 'Failed to read file' };
}
});
ipcMain.handle('check-file-exists', async (event, filePath) => {
try {
const exists = fs.existsSync(filePath);
return { exists };
} catch (err) {
console.error('Error checking file existence:', err);
return { exists: false };
}
});
ipcMain.handle('save-file', async (event, filePath, content) => {
try {
fs.writeFileSync(filePath, content, 'utf8');
return { success: true };
} catch (err) {
console.error('Error saving file:', err);
return { error: 'Failed to save file' };
}
});
ipcMain.handle('save-file-as', async (event, content) => {
const result = await dialog.showSaveDialog({
filters: [
{ name: 'Markdown Files', extensions: ['md'] },
{ name: 'All Files', extensions: ['*'] }
]
});
if (!result.canceled && result.filePath) {
try {
fs.writeFileSync(result.filePath, content, 'utf8');
return { filePath: result.filePath, success: true };
} catch (err) {
console.error('Error saving file:', err);
return { error: 'Failed to save file' };
}
}
return { canceled: true };
});
// Handle theme changes
ipcMain.handle('set-theme', async (event, theme) => {
if (mainWindow) {
if (theme === 'dark') {
mainWindow.setBackgroundColor('#1e1e1e');
} else {
mainWindow.setBackgroundColor('#ffffff');
}
}
});
// Handle HTML export
ipcMain.handle('export-html', async (event, htmlContent, fileName) => {
const result = await dialog.showSaveDialog({
defaultPath: fileName.replace(/\.md$/, '.html'),
filters: [
{ name: 'HTML Files', extensions: ['html'] },
{ name: 'All Files', extensions: ['*'] }
]
});
if (!result.canceled && result.filePath) {
try {
fs.writeFileSync(result.filePath, htmlContent, 'utf8');
return { success: true, filePath: result.filePath };
} catch (err) {
console.error('Error exporting HTML:', err);
return { error: 'Failed to export HTML' };
}
}
return { canceled: true };
});
// Handle window settings
ipcMain.handle('load-window-settings', async () => {
return loadWindowSettings();
});
ipcMain.handle('save-window-settings', async () => {
saveWindowSettings();
return { success: true };
});