trilium/electron.js

73 lines
1.8 KiB
JavaScript
Raw Normal View History

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');
const url = require("url");
2017-10-21 11:43:20 +08:00
const app = electron.app;
// Adds debug features like hotkeys for triggering dev tools and reload
require('electron-debug')();
// Prevent window being garbage collected
let mainWindow;
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
});
const port = config['Network']['port'] || '3000';
2017-10-21 11:43:20 +08:00
win.setMenu(null);
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);
}
});
// prevent drag & drop to navigate away from trilium
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();
}
});
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-01-31 21:03:25 +08:00
require('./src/www');