main.js 4.4 KB
Newer Older
E
.  
Eugene Pankov 已提交
1 2 3
const yaml = require('js-yaml')
const path = require('path')
const fs = require('fs')
E
.  
Eugene Pankov 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
const Config = require('electron-config')
const electron = require('electron')
const platform = require('os').platform()
require('electron-debug')({enabled: true, showDevTools: process.argv.indexOf('--debug') != -1})

let app = electron.app
let windowConfig = new Config({name: 'window'})


setupWindowManagement = () => {
    let windowCloseable

    app.window.on('close', (e) => {
        windowConfig.set('windowBoundaries', app.window.getBounds())
        if (!windowCloseable) {
E
.  
Eugene Pankov 已提交
19
            app.window.minimize()
E
.  
Eugene Pankov 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
            e.preventDefault()
        }
    })

    app.window.on('closed', () => {
        app.window = null
    })

    electron.ipcMain.on('window-closeable', (event, flag) => {
        windowCloseable = flag
    })

    electron.ipcMain.on('window-focus', () => {
        app.window.focus()
    })

E
.  
Eugene Pankov 已提交
36 37 38 39 40 41 42 43 44 45 46 47
    electron.ipcMain.on('window-focus', () => {
        app.window.focus()
    })

    electron.ipcMain.on('window-toggle-focus', () => {
        if (app.window.isFocused()) {
            app.window.minimize()
        } else {
            app.window.focus()
        }
    })

E
.  
Eugene Pankov 已提交
48 49 50 51 52 53 54 55 56 57 58 59
    electron.ipcMain.on('window-maximize', () => {
        if (app.window.isMaximized()) {
            app.window.unmaximize()
        } else {
            app.window.maximize()
        }
    })

    electron.ipcMain.on('window-minimize', () => {
        app.window.minimize()
    })

E
.  
Eugene Pankov 已提交
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
    app.on('before-quit', () => windowCloseable = true)
}


setupMenu = () => {
    var template = [{
        label: "Application",
        submenu: [
            { type: "separator" },
            { label: "Quit", accelerator: "CmdOrCtrl+Q", click: () => {
                app.window.webContents.send('host:quit-request')
            }}
        ]}, {
            label: "Edit",
            submenu: [
                { label: "Undo", accelerator: "CmdOrCtrl+Z", selector: "undo:" },
                { label: "Redo", accelerator: "Shift+CmdOrCtrl+Z", selector: "redo:" },
                { type: "separator" },
                { label: "Cut", accelerator: "CmdOrCtrl+X", selector: "cut:" },
                { label: "Copy", accelerator: "CmdOrCtrl+C", selector: "copy:" },
                { label: "Paste", accelerator: "CmdOrCtrl+V", selector: "paste:" },
                { label: "Select All", accelerator: "CmdOrCtrl+A", selector: "selectAll:" }
            ]
        }]

    electron.Menu.setApplicationMenu(electron.Menu.buildFromTemplate(template))
}


start = () => {
    let t0 = Date.now()

    let secondInstance = app.makeSingleInstance((argv) => {
        app.window.focus()
    })

    if (secondInstance) {
        app.quit()
        return
    }

E
.  
Eugene Pankov 已提交
101 102 103 104 105 106 107 108
    let configPath = path.join(electron.app.getPath('userData'), 'config.yaml')
    let configData
    if (fs.existsSync(configPath)) {
        configData = yaml.safeLoad(fs.readFileSync(configPath, 'utf8'))
    } else {
        configData = {}
    }

E
.  
Eugene Pankov 已提交
109 110 111
    let options = {
        width: 800,
        height: 400,
E
.  
Eugene Pankov 已提交
112
        //icon: `${app.getAppPath()}/assets/img/icon.png`,
E
.  
Eugene Pankov 已提交
113
        title: 'Term',
E
.  
Eugene Pankov 已提交
114 115
        minWidth: 300,
        minHeight: 100,
E
.  
Eugene Pankov 已提交
116 117 118
        'web-preferences': {'web-security': false},
        //- background to avoid the flash of unstyled window
        backgroundColor: '#1D272D',
E
.  
Eugene Pankov 已提交
119
        frame: false,
E
.  
Eugene Pankov 已提交
120 121 122 123 124 125 126
    }
    Object.assign(options, windowConfig.get('windowBoundaries'))

    if (platform == 'darwin') {
        options.titleBarStyle = 'hidden'
    }

E
.  
Eugene Pankov 已提交
127 128 129 130
    if ((configData.appearance || {}).useNativeFrame) {
        options.frame = true
    }

E
.  
Eugene Pankov 已提交
131
    app.commandLine.appendSwitch('disable-http-cache')
E
.  
Eugene Pankov 已提交
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

    app.window = new electron.BrowserWindow(options)
    app.window.loadURL(`file://${app.getAppPath()}/assets/webpack/index.html`, {extraHeaders: "pragma: no-cache\n"})

    if (platform != 'darwin') {
        app.window.setMenu(null)
    }

    app.window.show()
    app.window.focus()

    setupWindowManagement()
    setupMenu()

    console.info(`Host startup: ${Date.now() - t0}ms`)
    t0 = Date.now()
    electron.ipcMain.on('app:ready', () => {
        console.info(`App startup: ${Date.now() - t0}ms`)
    })
}

app.on('ready', start)

app.on('activate', () => {
    if (!app.window)
        start()
    else {
        app.window.show()
        app.window.focus()
    }
})

process.on('uncaughtException', function(err) {
    console.log(err)
    app.window.webContents.send('uncaughtException', err)
})