123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- const {app, dialog, shell, Menu} = require('electron')
- const fs = require('fs')
- const Module = require('module')
- const path = require('path')
- const url = require('url')
- // Parse command line options.
- const argv = process.argv.slice(1)
- const option = {
- file: null,
- help: null,
- default: null,
- version: null,
- webdriver: null,
- modules: []
- }
- for (let i = 0; i < argv.length; i++) {
- if (argv[i] === '--version' || argv[i] === '-v') {
- option.version = true
- break
- } else if (argv[i].match(/^--app=/)) {
- option.file = argv[i].split('=')[1]
- break
- } else if (argv[i] === '--default' || argv[i] === '-d') {
- option.default = true
- break
- } else if (argv[i] === '--interactive' || argv[i] === '-i' || argv[i] === '-repl') {
- option.interactive = true
- } else if (argv[i] === '--test-type=webdriver') {
- option.webdriver = true
- } else if (argv[i] === '--require' || argv[i] === '-r') {
- option.modules.push(argv[++i])
- continue
- } else if (argv[i] === '--abi' || argv[i] === '-a') {
- option.abi = true
- continue
- } else if (argv[i][0] === '-') {
- continue
- } else {
- option.file = argv[i]
- break
- }
- }
- // Quit when all windows are closed and no other one is listening to this.
- app.on('window-all-closed', () => {
- if (app.listeners('window-all-closed').length === 1 && !option.interactive) {
- app.quit()
- }
- })
- // Create default menu.
- app.once('ready', () => {
- if (Menu.getApplicationMenu()) return
- const template = [
- {
- label: 'Edit',
- submenu: [
- {
- role: 'undo'
- },
- {
- role: 'redo'
- },
- {
- type: 'separator'
- },
- {
- role: 'cut'
- },
- {
- role: 'copy'
- },
- {
- role: 'paste'
- },
- {
- role: 'pasteandmatchstyle'
- },
- {
- role: 'delete'
- },
- {
- role: 'selectall'
- }
- ]
- },
- {
- label: 'View',
- submenu: [
- {
- role: 'reload'
- },
- {
- role: 'forcereload'
- },
- {
- role: 'toggledevtools'
- },
- {
- type: 'separator'
- },
- {
- role: 'resetzoom'
- },
- {
- role: 'zoomin'
- },
- {
- role: 'zoomout'
- },
- {
- type: 'separator'
- },
- {
- role: 'togglefullscreen'
- }
- ]
- },
- {
- role: 'window',
- submenu: [
- {
- role: 'minimize'
- },
- {
- role: 'close'
- }
- ]
- },
- {
- role: 'help',
- submenu: [
- {
- label: 'Learn More',
- click () {
- shell.openExternal('https://electronjs.org')
- }
- },
- {
- label: 'Documentation',
- click () {
- shell.openExternal(
- `https://github.com/electron/electron/tree/v${process.versions.electron}/docs#readme`
- )
- }
- },
- {
- label: 'Community Discussions',
- click () {
- shell.openExternal('https://discuss.atom.io/c/electron')
- }
- },
- {
- label: 'Search Issues',
- click () {
- shell.openExternal('https://github.com/electron/electron/issues')
- }
- }
- ]
- }
- ]
- if (process.platform === 'darwin') {
- template.unshift({
- label: 'Electron',
- submenu: [
- {
- role: 'about'
- },
- {
- type: 'separator'
- },
- {
- role: 'services',
- submenu: []
- },
- {
- type: 'separator'
- },
- {
- role: 'hide'
- },
- {
- role: 'hideothers'
- },
- {
- role: 'unhide'
- },
- {
- type: 'separator'
- },
- {
- role: 'quit'
- }
- ]
- })
- template[1].submenu.push({
- type: 'separator'
- }, {
- label: 'Speech',
- submenu: [
- {
- role: 'startspeaking'
- },
- {
- role: 'stopspeaking'
- }
- ]
- })
- template[3].submenu = [
- {
- role: 'close'
- },
- {
- role: 'minimize'
- },
- {
- role: 'zoom'
- },
- {
- type: 'separator'
- },
- {
- role: 'front'
- }
- ]
- } else {
- template.unshift({
- label: 'File',
- submenu: [{
- role: 'quit'
- }]
- })
- }
- const menu = Menu.buildFromTemplate(template)
- Menu.setApplicationMenu(menu)
- })
- if (option.modules.length > 0) {
- Module._preloadModules(option.modules)
- }
- function loadApplicationPackage (packagePath) {
- // Add a flag indicating app is started from default app.
- process.defaultApp = true
- try {
- // Override app name and version.
- packagePath = path.resolve(packagePath)
- const packageJsonPath = path.join(packagePath, 'package.json')
- if (fs.existsSync(packageJsonPath)) {
- let packageJson
- try {
- packageJson = require(packageJsonPath)
- } catch (e) {
- showErrorMessage(`Unable to parse ${packageJsonPath}\n\n${e.message}`)
- return
- }
- if (packageJson.version) {
- app.setVersion(packageJson.version)
- }
- if (packageJson.productName) {
- app.setName(packageJson.productName)
- } else if (packageJson.name) {
- app.setName(packageJson.name)
- }
- app.setPath('userData', path.join(app.getPath('appData'), app.getName()))
- app.setPath('userCache', path.join(app.getPath('cache'), app.getName()))
- app.setAppPath(packagePath)
- }
- try {
- Module._resolveFilename(packagePath, module, true)
- } catch (e) {
- showErrorMessage(`Unable to find Electron app at ${packagePath}\n\n${e.message}`)
- return
- }
- // Run the app.
- Module._load(packagePath, module, true)
- } catch (e) {
- console.error('App threw an error during load')
- console.error(e.stack || e)
- throw e
- }
- }
- function showErrorMessage (message) {
- app.focus()
- dialog.showErrorBox('Error launching app', message)
- process.exit(1)
- }
- function loadApplicationByUrl (appUrl) {
- require('./default_app').load(appUrl)
- }
- function startRepl () {
- if (process.platform === 'win32') {
- console.error('Electron REPL not currently supported on Windows')
- process.exit(1)
- }
- const repl = require('repl')
- repl.start('> ').on('exit', () => {
- process.exit(0)
- })
- }
- // Start the specified app if there is one specified in command line, otherwise
- // start the default app.
- if (option.file && !option.webdriver) {
- const file = option.file
- const protocol = url.parse(file).protocol
- const extension = path.extname(file)
- if (protocol === 'http:' || protocol === 'https:' || protocol === 'file:') {
- loadApplicationByUrl(file)
- } else if (extension === '.html' || extension === '.htm') {
- loadApplicationByUrl('file://' + path.resolve(file))
- } else {
- loadApplicationPackage(file)
- }
- } else if (option.version) {
- console.log('v' + process.versions.electron)
- process.exit(0)
- } else if (option.abi) {
- console.log(process.versions.modules)
- process.exit(0)
- } else if (option.default) {
- const indexPath = path.join(__dirname, '/index.html')
- loadApplicationByUrl(`file://${indexPath}`)
- } else if (option.interactive) {
- startRepl()
- } else {
- const welcomeMessage = `
- Electron ${process.versions.electron} - Build cross platform desktop apps with JavaScript, HTML, and CSS
- Usage: electron [options] [path]
- A path to an Electron app may be specified. It must be one of the following:
- - index.js file.
- - Folder containing a package.json file.
- - Folder containing an index.js file.
- - .html/.htm file.
- - http://, https://, or file:// URL.
- Options:
- -d, --default Run the default bundled Electron app.
- -i, --interactive Open a REPL to the main process.
- -r, --require Module to preload (option can be repeated).
- -v, --version Print the version.
- -a, --abi Print the Node ABI version.`
- console.log(welcomeMessage)
- const indexPath = path.join(__dirname, '/index.html')
- loadApplicationByUrl(`file://${indexPath}`)
- }
|