process.on('uncaughtException', function (err) { console.log(err) process.exit() }) var electron = require('electron') var openWindow = require('./lib/window') var Path = require('path') var defaultMenu = require('electron-default-menu') var WindowState = require('electron-window-state') var Menu = electron.Menu var extend = require('xtend') var ssbKeys = require('ssb-keys') var windows = { dialogs: new Set() } var ssbConfig = null var quitting = false /** * It's not possible to run two instances of patchwork as it would create two * scuttlebot instances that conflict on the same port. Before opening patchwork, * we check if it's already running and if it is we focus the existing window * rather than opening a new instance. */ function quitIfAlreadyRunning () { var shouldQuit = electron.app.makeSingleInstance(function (commandLine, workingDirectory) { // Someone tried to run a second instance, we should focus our window. if (windows.main) { if (windows.main.isMinimized()) windows.main.restore() windows.main.focus() } }) if (shouldQuit) { electron.app.quit() } } quitIfAlreadyRunning() electron.app.on('ready', () => { setupContext('ssb', { server: !(process.argv.includes('-g') || process.argv.includes('--use-global-ssb')) }, () => { var browserWindow = openMainWindow() var menu = defaultMenu(electron.app, electron.shell) menu.splice(4, 0, { label: 'History', submenu: [ { label: 'Back', accelerator: 'CmdOrCtrl+[', click: () => { browserWindow.webContents.send('goBack') } }, { label: 'Forward', accelerator: 'CmdOrCtrl+]', click: () => { browserWindow.webContents.send('goForward') } } ] }) var view = menu.find(x => x.label === 'View') view.submenu = [ { role: 'reload' }, { role: 'toggledevtools' }, { type: 'separator' }, { role: 'resetzoom' }, { role: 'zoomin' }, { role: 'zoomout' }, { type: 'separator' }, { role: 'togglefullscreen' } ] var help = menu.find(x => x.label === 'Help') help.submenu = [ { label: 'Learn More', click () { require('electron').shell.openExternal('https://scuttlebutt.nz') } } ] if (process.platform === 'darwin') { var win = menu.find(x => x.label === 'Window') win.submenu = [ { role: 'minimize' }, { role: 'zoom' }, { role: 'close', label: 'Close' }, { type: 'separator' }, { role: 'front' } ] } Menu.setApplicationMenu(Menu.buildFromTemplate(menu)) }) electron.app.on('activate', function (e) { if (windows.main) { windows.main.show() } }) electron.app.on('before-quit', function () { quitting = true }) electron.ipcMain.on('open-background-devtools', function (ev, config) { if (windows.background) { windows.background.webContents.openDevTools({mode: 'detach'}) } }) }) function openMainWindow () { if (!windows.main) { var windowState = WindowState({ defaultWidth: 1024, defaultHeight: 768 }) windows.main = openWindow(ssbConfig, Path.join(__dirname, 'main-window.js'), { minWidth: 800, x: windowState.x, y: windowState.y, width: windowState.width, height: windowState.height, titleBarStyle: 'hiddenInset', autoHideMenuBar: true, title: 'Patchwork', show: true, backgroundColor: '#EEE', icon: Path.join(__dirname, 'assets/icon.png') }) windowState.manage(windows.main) windows.main.setSheetOffset(40) windows.main.on('close', function (e) { if (!quitting && process.platform === 'darwin') { e.preventDefault() windows.main.hide() } }) windows.main.on('closed', function () { windows.main = null if (process.platform !== 'darwin') electron.app.quit() }) } return windows.main } function setupContext (appName, opts, cb) { ssbConfig = require('ssb-config/inject')(appName, extend({ port: 8008, blobsPort: 8989, // matches ssb-ws friends: { dunbar: 150, hops: 2 // down from 3 } }, opts)) console.log(ssbConfig) ssbConfig.keys = ssbKeys.loadOrCreateSync(Path.join(ssbConfig.path, 'secret')) // fix offline on windows by specifying 127.0.0.1 instead of localhost (default) var id = ssbConfig.keys.id ssbConfig.remote = `net:127.0.0.1:${ssbConfig.port}~shs:${id.slice(1).replace('.ed25519', '')}` if (opts.server === false) { cb && cb() } else { electron.ipcMain.once('server-started', function (ev, config) { ssbConfig = config cb && cb() }) windows.background = openWindow(ssbConfig, Path.join(__dirname, 'server-process.js'), { connect: false, center: true, fullscreen: false, fullscreenable: false, height: 150, maximizable: false, minimizable: false, resizable: false, show: false, skipTaskbar: true, title: 'patchwork-server', useContentSize: true, width: 150 }) // windows.background.on('close', (ev) => { // ev.preventDefault() // windows.background.hide() // }) } }