2017-10-21 11:43:20 +08:00
|
|
|
'use strict';
|
2018-01-29 11:18:14 +08:00
|
|
|
|
2017-10-21 11:43:20 +08:00
|
|
|
const electron = require('electron');
|
2017-10-21 12:19:13 +08:00
|
|
|
const path = require('path');
|
2018-01-31 21:03:25 +08:00
|
|
|
const config = require('./src/services/config');
|
2018-02-16 11:17:18 +08:00
|
|
|
const log = require('./src/services/log');
|
2018-01-13 09:05:17 +08:00
|
|
|
const url = require("url");
|
2017-10-21 11:43:20 +08:00
|
|
|
|
|
|
|
const app = electron.app;
|
2018-02-13 12:53:00 +08:00
|
|
|
const globalShortcut = electron.globalShortcut;
|
2017-10-21 11:43:20 +08:00
|
|
|
|
|
|
|
// Adds debug features like hotkeys for triggering dev tools and reload
|
|
|
|
require('electron-debug')();
|
|
|
|
|
|
|
|
// Prevent window being garbage collected
|
|
|
|
let mainWindow;
|
|
|
|
|
2018-02-19 11:19:07 +08:00
|
|
|
require('electron-dl')({ saveAs: true });
|
|
|
|
|
2017-10-21 11:43:20 +08:00
|
|
|
function onClosed() {
|
|
|
|
// Dereference the window
|
|
|
|
// For multiple windows store them in an array
|
|
|
|
mainWindow = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function createMainWindow() {
|
|
|
|
const win = new electron.BrowserWindow({
|
|
|
|
width: 1200,
|
2017-10-21 12:19:13 +08:00
|
|
|
height: 900,
|
2017-12-28 06:39:41 +08:00
|
|
|
title: 'Trilium Notes',
|
2018-02-01 11:39:30 +08:00
|
|
|
icon: path.join(__dirname, 'src/public/images/app-icons/png/256x256.png')
|
2017-10-21 11:43:20 +08:00
|
|
|
});
|
|
|
|
|
2017-11-21 08:59:42 +08:00
|
|
|
const port = config['Network']['port'] || '3000';
|
|
|
|
|
2017-10-21 11:43:20 +08:00
|
|
|
win.setMenu(null);
|
2017-11-21 08:59:42 +08:00
|
|
|
win.loadURL('http://localhost:' + port);
|
2017-10-21 11:43:20 +08:00
|
|
|
win.on('closed', onClosed);
|
|
|
|
|
|
|
|
win.webContents.on('new-window', (e, url) => {
|
|
|
|
if (url !== mainWindow.webContents.getURL()) {
|
|
|
|
e.preventDefault();
|
|
|
|
require('electron').shell.openExternal(url);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-01-13 07:42:00 +08:00
|
|
|
// prevent drag & drop to navigate away from trilium
|
2018-01-13 09:05:17 +08:00
|
|
|
win.webContents.on('will-navigate', (ev, targetUrl) => {
|
|
|
|
const parsedUrl = url.parse(targetUrl);
|
|
|
|
|
|
|
|
// we still need to allow internal redirects from setup and migration pages
|
|
|
|
if (parsedUrl.hostname !== 'localhost' || (parsedUrl.path && parsedUrl.path !== '/')) {
|
|
|
|
ev.preventDefault();
|
|
|
|
}
|
2018-01-13 07:42:00 +08:00
|
|
|
});
|
|
|
|
|
2017-10-21 11:43:20 +08:00
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
|
|
|
app.on('window-all-closed', () => {
|
|
|
|
if (process.platform !== 'darwin') {
|
|
|
|
app.quit();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
app.on('activate', () => {
|
|
|
|
if (!mainWindow) {
|
|
|
|
mainWindow = createMainWindow();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
app.on('ready', () => {
|
|
|
|
mainWindow = createMainWindow();
|
2018-02-13 12:53:00 +08:00
|
|
|
|
2018-02-16 11:17:18 +08:00
|
|
|
const result = globalShortcut.register('CommandOrControl+Alt+P', async () => {
|
2018-02-14 08:55:04 +08:00
|
|
|
const date_notes = require('./src/services/date_notes');
|
|
|
|
const utils = require('./src/services/utils');
|
2018-02-13 12:53:00 +08:00
|
|
|
|
|
|
|
const parentNoteId = await date_notes.getDateNoteId(utils.nowDate());
|
|
|
|
|
|
|
|
// window may be hidden / not in focus
|
|
|
|
mainWindow.focus();
|
|
|
|
|
2018-02-14 08:55:04 +08:00
|
|
|
mainWindow.webContents.send('create-day-sub-note', parentNoteId);
|
2018-02-13 12:53:00 +08:00
|
|
|
});
|
2018-02-16 11:17:18 +08:00
|
|
|
|
|
|
|
if (!result) {
|
|
|
|
log.error("Could not register global shortcut CTRL+ALT+P");
|
|
|
|
}
|
2018-02-13 12:53:00 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
app.on('will-quit', () => {
|
|
|
|
globalShortcut.unregisterAll();
|
2017-10-21 11:43:20 +08:00
|
|
|
});
|
|
|
|
|
2018-01-31 21:03:25 +08:00
|
|
|
require('./src/www');
|