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-02-16 11:17:18 +08:00
|
|
|
const log = require('./src/services/log');
|
2018-10-16 05:45:37 +08:00
|
|
|
const cls = require('./src/services/cls');
|
2018-01-13 09:05:17 +08:00
|
|
|
const url = require("url");
|
2018-08-01 01:50:18 +08:00
|
|
|
const port = require('./src/services/port');
|
2018-11-21 18:01:03 +08:00
|
|
|
const appIconService = require('./src/services/app_icon');
|
2019-02-13 05:42:40 +08:00
|
|
|
const windowStateKeeper = require('electron-window-state');
|
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')();
|
|
|
|
|
2018-11-21 18:01:03 +08:00
|
|
|
appIconService.installLocalAppIcon();
|
|
|
|
|
2017-10-21 11:43:20 +08:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2018-08-01 01:50:18 +08:00
|
|
|
async function createMainWindow() {
|
2019-02-13 05:42:40 +08:00
|
|
|
let mainWindowState = windowStateKeeper({
|
|
|
|
// default window width & height so it's usable on 1600 * 900 display (including some extra panels etc.)
|
|
|
|
defaultWidth: 1200,
|
|
|
|
defaultHeight: 800
|
|
|
|
});
|
|
|
|
|
2017-10-21 11:43:20 +08:00
|
|
|
const win = new electron.BrowserWindow({
|
2019-02-13 05:42:40 +08:00
|
|
|
x: mainWindowState.x,
|
|
|
|
y: mainWindowState.y,
|
|
|
|
width: mainWindowState.width,
|
|
|
|
height: mainWindowState.height,
|
2017-12-28 06:39:41 +08:00
|
|
|
title: 'Trilium Notes',
|
2019-03-30 16:39:58 +08:00
|
|
|
icon: path.join(__dirname, 'images/app-icons/png/256x256.png')
|
2017-10-21 11:43:20 +08:00
|
|
|
});
|
|
|
|
|
2019-02-13 05:42:40 +08:00
|
|
|
mainWindowState.manage(win);
|
|
|
|
|
2017-10-21 11:43:20 +08:00
|
|
|
win.setMenu(null);
|
2018-08-01 01:50:18 +08:00
|
|
|
win.loadURL('http://localhost:' + await port);
|
2017-10-21 11:43:20 +08:00
|
|
|
win.on('closed', onClosed);
|
|
|
|
|
|
|
|
win.webContents.on('new-window', (e, url) => {
|
2018-08-15 05:07:50 +08:00
|
|
|
if (url !== win.webContents.getURL()) {
|
2017-10-21 11:43:20 +08:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-10-16 05:45:37 +08:00
|
|
|
app.on('ready', async () => {
|
2018-11-20 00:16:22 +08:00
|
|
|
app.setAppUserModelId('com.github.zadam.trilium');
|
|
|
|
|
2018-10-16 05:45:37 +08:00
|
|
|
mainWindow = await createMainWindow();
|
2018-02-13 12:53:00 +08:00
|
|
|
|
2018-10-16 05:45:37 +08:00
|
|
|
const result = globalShortcut.register('CommandOrControl+Alt+P', cls.wrap(async () => {
|
2018-04-03 08:46:46 +08:00
|
|
|
const dateNoteService = require('./src/services/date_notes');
|
|
|
|
const dateUtils = require('./src/services/date_utils');
|
2018-02-13 12:53:00 +08:00
|
|
|
|
2019-03-14 05:43:59 +08:00
|
|
|
const parentNote = await dateNoteService.getDateNote(dateUtils.localNowDate());
|
2018-02-13 12:53:00 +08:00
|
|
|
|
|
|
|
// window may be hidden / not in focus
|
|
|
|
mainWindow.focus();
|
|
|
|
|
2018-04-08 03:56:46 +08:00
|
|
|
mainWindow.webContents.send('create-day-sub-note', parentNote.noteId);
|
2018-10-16 05:45:37 +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');
|