update to ES6
This commit is contained in:
parent
87802b2c17
commit
577c0042b0
1 changed files with 218 additions and 273 deletions
|
@ -1,302 +1,247 @@
|
||||||
'use strict'
|
const {BrowserWindow, MenuItem} = require('electron')
|
||||||
|
const {EventEmitter} = require('events')
|
||||||
|
//const _ = require('lodash')
|
||||||
|
|
||||||
const {BrowserWindow, MenuItem, webContents} = require('electron')
|
|
||||||
const EventEmitter = require('events').EventEmitter
|
|
||||||
const v8Util = process.atomBinding('v8_util')
|
const v8Util = process.atomBinding('v8_util')
|
||||||
const bindings = process.atomBinding('menu')
|
const bindings = process.atomBinding('menu')
|
||||||
|
|
||||||
// Automatically generated radio menu item's group id.
|
// Automatically generated radio menu item's group id.
|
||||||
let nextGroupId = 0
|
let nextGroupId = 0
|
||||||
let applicationMenu = null
|
|
||||||
|
|
||||||
const Menu = bindings.Menu
|
/* Search between seperators to find a radio menu item and return its group id */
|
||||||
|
const generateGroupId = function(items, pos) {
|
||||||
class Menu extends EventEmitter {
|
let i, item
|
||||||
constructor () {
|
|
||||||
this.commandsMap = {}
|
|
||||||
this.groupsMap = {}
|
|
||||||
this.items = []
|
|
||||||
this.delegate = {
|
|
||||||
isCommandIdChecked: (commandId) => {
|
|
||||||
const command = this.commandsMap[commandId]
|
|
||||||
return command != null ? command.checked : undefined
|
|
||||||
},
|
|
||||||
isCommandIdEnabled: (commandId) => {
|
|
||||||
const command = this.commandsMap[commandId]
|
|
||||||
return command != null ? command.enabled : undefined
|
|
||||||
},
|
|
||||||
isCommandIdVisible: (commandId) => {
|
|
||||||
const command = this.commandsMap[commandId]
|
|
||||||
return command != null ? command.visible : undefined
|
|
||||||
},
|
|
||||||
getAcceleratorForCommandId: (commandId, useDefaultAccelerator) => {
|
|
||||||
const command = this.commandsMap[commandId]
|
|
||||||
if (command == null) return
|
|
||||||
if (command.accelerator != null) return command.accelerator
|
|
||||||
if (useDefaultAccelerator) return command.getDefaultRoleAccelerator()
|
|
||||||
},
|
|
||||||
getIconForCommandId: (commandId) => {
|
|
||||||
const command = this.commandsMap[commandId]
|
|
||||||
return command != null ? command.icon : undefined
|
|
||||||
},
|
|
||||||
executeCommand: (event, commandId) => {
|
|
||||||
const command = this.commandsMap[commandId]
|
|
||||||
if (command == null) return
|
|
||||||
command.click(event, BrowserWindow.getFocusedWindow(), webContents.getFocusedWebContents())
|
|
||||||
},
|
|
||||||
menuWillShow: () => {
|
|
||||||
// Make sure radio groups have at least one menu item selected
|
|
||||||
for (let id in this.groupsMap) {
|
|
||||||
const group = this.groupsMap[id]
|
|
||||||
const checked = false
|
|
||||||
for (let idx = 0; idx < group.length; idx++) {
|
|
||||||
const radioItem = group[idx]
|
|
||||||
if (!radioItem.checked) continue
|
|
||||||
checked = true
|
|
||||||
break
|
|
||||||
}
|
|
||||||
if (!checked) v8Util.setHiddenValue(group[0], 'checked', true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
popup (window, x, y, positioningItem) {
|
|
||||||
let [newX, newY, newPositioningItem] = [x, y, positioningItem]
|
|
||||||
let asyncPopup
|
|
||||||
|
|
||||||
// menu.popup(x, y, positioningItem)
|
|
||||||
if (window != null) {
|
|
||||||
if (typeof window !== 'object' || window.constructor !== BrowserWindow) {
|
|
||||||
[newPositioningItem, newY, newX] = [y, x, window]
|
|
||||||
window = null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// menu.popup(window, {})
|
|
||||||
if (x != null && typeof x === 'object') {
|
|
||||||
[newX, newY, newPositioningItem] = [x.x, x.y, x.positioningItem]
|
|
||||||
asyncPopup = x.async
|
|
||||||
}
|
|
||||||
|
|
||||||
// set up defaults
|
|
||||||
if (window == null) window = BrowserWindow.getFocusedWindow()
|
|
||||||
if (typeof x !== 'number') newX = -1
|
|
||||||
if (typeof y !== 'number') newY = -1
|
|
||||||
if (typeof positioningItem !== 'number') newPositioningItem = -1
|
|
||||||
if (typeof asyncPopup !== 'boolean') asyncPopup = false
|
|
||||||
|
|
||||||
this.popupAt(window, newX, newY, newPositioningItem, asyncPopup)
|
|
||||||
}
|
|
||||||
closePopup (window) {
|
|
||||||
if (window == null || window.constructor !== BrowserWindow) {
|
|
||||||
window = BrowserWindow.getFocusedWindow()
|
|
||||||
}
|
|
||||||
|
|
||||||
if (window != null) this.closePopupAt(window.id)
|
|
||||||
}
|
|
||||||
getMenuItemById (id) {
|
|
||||||
const items = this.items
|
|
||||||
|
|
||||||
let found = items.find(item => item.id === id) || null
|
|
||||||
for (let i = 0, length = items.length; !found && i < length; i++) {
|
|
||||||
if (items[i].submenu) {
|
|
||||||
found = items[i].submenu.getMenuItemById(id)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return found
|
|
||||||
}
|
|
||||||
append (item) {
|
|
||||||
return this.insert(this.getItemCount(), item)
|
|
||||||
}
|
|
||||||
insert (pos, item) {
|
|
||||||
var base, name
|
|
||||||
if ((item != null ? item.constructor : void 0) !== MenuItem) {
|
|
||||||
throw new TypeError('Invalid item')
|
|
||||||
}
|
|
||||||
switch (item.type) {
|
|
||||||
case 'normal':
|
|
||||||
this.insertItem(pos, item.commandId, item.label)
|
|
||||||
break
|
|
||||||
case 'checkbox':
|
|
||||||
this.insertCheckItem(pos, item.commandId, item.label)
|
|
||||||
break
|
|
||||||
case 'separator':
|
|
||||||
this.insertSeparator(pos)
|
|
||||||
break
|
|
||||||
case 'submenu':
|
|
||||||
this.insertSubMenu(pos, item.commandId, item.label, item.submenu)
|
|
||||||
break
|
|
||||||
case 'radio':
|
|
||||||
// Grouping radio menu items.
|
|
||||||
item.overrideReadOnlyProperty('groupId', generateGroupId(this.items, pos))
|
|
||||||
if ((base = this.groupsMap)[name = item.groupId] == null) {
|
|
||||||
base[name] = []
|
|
||||||
}
|
|
||||||
this.groupsMap[item.groupId].push(item)
|
|
||||||
|
|
||||||
// Setting a radio menu item should flip other items in the group.
|
|
||||||
v8Util.setHiddenValue(item, 'checked', item.checked)
|
|
||||||
Object.defineProperty(item, 'checked', {
|
|
||||||
enumerable: true,
|
|
||||||
get: function () {
|
|
||||||
return v8Util.getHiddenValue(item, 'checked')
|
|
||||||
},
|
|
||||||
set: () => {
|
|
||||||
var j, len, otherItem, ref1
|
|
||||||
ref1 = this.groupsMap[item.groupId]
|
|
||||||
for (j = 0, len = ref1.length; j < len; j++) {
|
|
||||||
otherItem = ref1[j]
|
|
||||||
if (otherItem !== item) {
|
|
||||||
v8Util.setHiddenValue(otherItem, 'checked', false)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return v8Util.setHiddenValue(item, 'checked', true)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
this.insertRadioItem(pos, item.commandId, item.label, item.groupId)
|
|
||||||
}
|
|
||||||
if (item.sublabel != null) {
|
|
||||||
this.setSublabel(pos, item.sublabel)
|
|
||||||
}
|
|
||||||
if (item.icon != null) {
|
|
||||||
this.setIcon(pos, item.icon)
|
|
||||||
}
|
|
||||||
if (item.role != null) {
|
|
||||||
this.setRole(pos, item.role)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make menu accessable to items.
|
|
||||||
item.overrideReadOnlyProperty('menu', this)
|
|
||||||
|
|
||||||
// Remember the items.
|
|
||||||
this.items.splice(pos, 0, item)
|
|
||||||
this.commandsMap[item.commandId] = item
|
|
||||||
}
|
|
||||||
_callMenuWillShow () {
|
|
||||||
if (this.delegate != null) {
|
|
||||||
this.delegate.menuWillShow()
|
|
||||||
}
|
|
||||||
this.items.forEach(function (item) {
|
|
||||||
if (item.submenu != null) {
|
|
||||||
item.submenu._callMenuWillShow()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
static setApplicationMenu (menu) {
|
|
||||||
if (!(menu === null || menu.constructor === Menu)) {
|
|
||||||
throw new TypeError('Invalid menu')
|
|
||||||
}
|
|
||||||
|
|
||||||
// Keep a reference.
|
|
||||||
applicationMenu = menu
|
|
||||||
if (process.platform === 'darwin') {
|
|
||||||
if (menu === null) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
menu._callMenuWillShow()
|
|
||||||
bindings.setApplicationMenu(menu)
|
|
||||||
} else {
|
|
||||||
BrowserWindow.getAllWindows().forEach(function (window) {
|
|
||||||
window.setMenu(menu)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
static getApplicationMenu () {
|
|
||||||
return applicationMenu
|
|
||||||
}
|
|
||||||
static buildFromTemplate (template) {
|
|
||||||
if (!Array.isArray(template)) throw new TypeError('Invalid template for Menu')
|
|
||||||
|
|
||||||
const menu = new Menu()
|
|
||||||
let positioned = []
|
|
||||||
let idx = 0
|
|
||||||
|
|
||||||
template.forEach((item) => {
|
|
||||||
idx = (item.position) ? indexToInsertByPosition(positioned, item.position) : idx += 1
|
|
||||||
positioned.splice(idx, 0, item)
|
|
||||||
})
|
|
||||||
|
|
||||||
positioned.forEach((item) => {
|
|
||||||
if (typeof item !== 'object') {
|
|
||||||
throw new TypeError('Invalid template for MenuItem')
|
|
||||||
}
|
|
||||||
menu.append(new MenuItem(item))
|
|
||||||
})
|
|
||||||
|
|
||||||
return menu
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Menu.sendActionToFirstResponder = bindings.sendActionToFirstResponder
|
|
||||||
|
|
||||||
/* HELPER METHODS */
|
|
||||||
|
|
||||||
// Search between separators to find a radio menu item and return its group id,
|
|
||||||
function generateGroupId (items, pos) {
|
|
||||||
var i, item, j, k, ref1, ref2, ref3
|
|
||||||
if (pos > 0) {
|
if (pos > 0) {
|
||||||
for (i = j = ref1 = pos - 1; ref1 <= 0 ? j <= 0 : j >= 0; i = ref1 <= 0 ? ++j : --j) {
|
let asc, start
|
||||||
|
for (start = pos - 1, i = start, asc = start <= 0; asc ? i <= 0 : i >= 0; asc ? i++ : i--) {
|
||||||
item = items[i]
|
item = items[i]
|
||||||
if (item.type === 'radio') {
|
if (item.type === 'radio') { return item.groupId }
|
||||||
return item.groupId
|
if (item.type === 'separator') { break }
|
||||||
}
|
|
||||||
if (item.type === 'separator') {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else if (pos < items.length) {
|
} else if (pos < items.length) {
|
||||||
for (i = k = ref2 = pos, ref3 = items.length - 1; ref2 <= ref3 ? k <= ref3 : k >= ref3; i = ref2 <= ref3 ? ++k : --k) {
|
let asc1, end
|
||||||
|
for (i = pos, end = items.length - 1, asc1 = pos <= end; asc1 ? i <= end : i >= end; asc1 ? i++ : i--) {
|
||||||
item = items[i]
|
item = items[i]
|
||||||
if (item.type === 'radio') {
|
if (item.type === 'radio') { return item.groupId }
|
||||||
return item.groupId
|
if (item.type === 'separator') { break }
|
||||||
}
|
|
||||||
if (item.type === 'separator') {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ++nextGroupId
|
return ++nextGroupId
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the index of item according to |id|.
|
/* Returns the index of item according to |id|. */
|
||||||
function indexOfItemById (items, id) {
|
const indexOfItemById = function(items, id) {
|
||||||
for (let idx = 0; idx < items.length; idx += 1) {
|
for (let i = 0; i < items.length; i++) {
|
||||||
const item = items[idx]
|
const item = items[i]
|
||||||
if (item.id === id) return idx
|
if (item.id === id) return i
|
||||||
}
|
}
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the index of where to insert the item according to |position|.
|
/* Returns the index of where to insert the item according to |position|. */
|
||||||
function indexToInsertByPosition (items, pos) {
|
const indexToInsertByPosition = function(items, position) {
|
||||||
if (!pos) return items.length
|
if (!position) { return items.length }
|
||||||
|
|
||||||
const [query, id] = pos.split('=')
|
const [query, id] = Array.from(position.split('='))
|
||||||
let idx = indexOfItemById(items, id)
|
let insertIndex = indexOfItemById(items, id)
|
||||||
|
if ((insertIndex === -1) && (query !== 'endof')) {
|
||||||
if (idx === -1 && query !== 'endof') {
|
console.warn(`Item with id '${id}' is not found`)
|
||||||
console.warn("Item with id '" + id + "' is not found")
|
|
||||||
return items.length
|
return items.length
|
||||||
}
|
}
|
||||||
|
|
||||||
if (query === 'after') {
|
switch (query) {
|
||||||
idx += 1
|
case 'after':
|
||||||
} else if (query === 'endof') {
|
insertIndex++
|
||||||
// create new group with id if none exists
|
break
|
||||||
if (idx === -1) {
|
case 'endof':
|
||||||
items.push({
|
/* If the |id| doesn't exist, then create a new group with the |id|. */
|
||||||
id,
|
if (insertIndex === -1) {
|
||||||
type: 'separator'
|
items.push({id, type: 'separator'})
|
||||||
})
|
insertIndex = items.length - 1
|
||||||
idx = items.length - 1
|
}
|
||||||
}
|
|
||||||
idx += 1
|
|
||||||
|
|
||||||
// search for end of group
|
/* Find the end of the group. */
|
||||||
while (idx < items.length && items[idx].type !== 'separator') {
|
insertIndex++
|
||||||
idx += 1
|
while ((insertIndex < items.length) && (items[insertIndex].type !== 'separator')) {
|
||||||
}
|
insertIndex++
|
||||||
|
}
|
||||||
|
break
|
||||||
}
|
}
|
||||||
return idx
|
|
||||||
|
return insertIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Menu
|
const { Menu } = bindings
|
||||||
|
|
||||||
|
Menu.prototype.__proto__ = EventEmitter.prototype
|
||||||
|
|
||||||
|
Menu.prototype._init = function() {
|
||||||
|
this.commandsMap = {}
|
||||||
|
this.groupsMap = {}
|
||||||
|
this.items = []
|
||||||
|
return this.delegate = {
|
||||||
|
isCommandIdChecked: commandId => (this.commandsMap[commandId] != null ? this.commandsMap[commandId].checked : undefined),
|
||||||
|
isCommandIdEnabled: commandId => (this.commandsMap[commandId] != null ? this.commandsMap[commandId].enabled : undefined),
|
||||||
|
isCommandIdVisible: commandId => (this.commandsMap[commandId] != null ? this.commandsMap[commandId].visible : undefined),
|
||||||
|
getAcceleratorForCommandId: commandId => (this.commandsMap[commandId] != null ? this.commandsMap[commandId].accelerator : undefined),
|
||||||
|
getIconForCommandId: commandId => (this.commandsMap[commandId] != null ? this.commandsMap[commandId].icon : undefined),
|
||||||
|
executeCommand: commandId => {
|
||||||
|
return (this.commandsMap[commandId] != null ? this.commandsMap[commandId].click(BrowserWindow.getFocusedWindow()) : undefined)
|
||||||
|
},
|
||||||
|
menuWillShow: () => {
|
||||||
|
for (let id in this.groupsMap) {
|
||||||
|
const group = this.groupsMap[id]
|
||||||
|
let checked = false
|
||||||
|
for (let radioItem in group) {
|
||||||
|
if (radioItem.checked) {
|
||||||
|
checked = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!checked) v8Util.setHiddenValue(group[0], 'checked', true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Menu.prototype.popup = function(window, x, y) {
|
||||||
|
if ((window != null ? window.constructor : undefined) !== BrowserWindow) {
|
||||||
|
/* Shift. */
|
||||||
|
y = x
|
||||||
|
x = window
|
||||||
|
window = BrowserWindow.getFocusedWindow()
|
||||||
|
}
|
||||||
|
if (x !== null && y !== null) {
|
||||||
|
return this._popupAt(window, x, y)
|
||||||
|
} else {
|
||||||
|
return this._popup(window)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Menu.prototype.append = function(item) {
|
||||||
|
return this.insert(this.getItemCount(), item)
|
||||||
|
}
|
||||||
|
|
||||||
|
Menu.prototype.insert = function(pos, item) {
|
||||||
|
if ((item != null ? item.constructor : undefined) !== MenuItem) {
|
||||||
|
throw new TypeError('Invalid item')
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (item.type) {
|
||||||
|
case 'normal':
|
||||||
|
this.insertItem(pos, item.commandId, item.label)
|
||||||
|
break
|
||||||
|
case 'checkbox':
|
||||||
|
this.insertCheckItem(pos, item.commandId, item.label)
|
||||||
|
break
|
||||||
|
case 'separator':
|
||||||
|
this.insertSeparator(pos)
|
||||||
|
break
|
||||||
|
case 'submenu':
|
||||||
|
this.insertSubMenu(pos, item.commandId, item.label, item.submenu)
|
||||||
|
break
|
||||||
|
case 'radio':
|
||||||
|
/* Grouping radio menu items. */
|
||||||
|
item.overrideReadOnlyProperty('groupId', generateGroupId(this.items, pos))
|
||||||
|
if (this.groupsMap[item.groupId] == null) this.groupsMap[item.groupId] = []
|
||||||
|
this.groupsMap[item.groupId].push(item)
|
||||||
|
|
||||||
|
/* Setting a radio menu item should flip other items in the group. */
|
||||||
|
v8Util.setHiddenValue(item, 'checked', item.checked)
|
||||||
|
Object.defineProperty(item, 'checked', {
|
||||||
|
enumerable: true,
|
||||||
|
get() { return v8Util.getHiddenValue(item, 'checked') },
|
||||||
|
set: val => {
|
||||||
|
for (let otherItem in this.groupsMap[item.groupId]) {
|
||||||
|
if (otherItem !== item) v8Util.setHiddenValue(otherItem, 'checked', false)
|
||||||
|
}
|
||||||
|
return v8Util.setHiddenValue(item, 'checked', true)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
this.insertRadioItem(pos, item.commandId, item.label, item.groupId)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
if (item.sublabel != null) this.setSublabel(pos, item.sublabel)
|
||||||
|
if (item.icon != null) this.setIcon(pos, item.icon)
|
||||||
|
if (item.role != null) this.setRole(pos, item.role)
|
||||||
|
|
||||||
|
/* Make menu accessable to items. */
|
||||||
|
item.overrideReadOnlyProperty('menu', this)
|
||||||
|
|
||||||
|
/* Remember the items. */
|
||||||
|
this.items.splice(pos, 0, item)
|
||||||
|
return this.commandsMap[item.commandId] = item
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Force menuWillShow to be called */
|
||||||
|
Menu.prototype._callMenuWillShow = function() {
|
||||||
|
if (this.delegate != null) this.delegate.menuWillShow()
|
||||||
|
|
||||||
|
return (() => {
|
||||||
|
const result = []
|
||||||
|
for (let item of Array.from(this.items)) {
|
||||||
|
if (item.submenu != null) {
|
||||||
|
result.push(item.submenu._callMenuWillShow())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
})()
|
||||||
|
}
|
||||||
|
|
||||||
|
let applicationMenu = null
|
||||||
|
Menu.setApplicationMenu = function(menu) {
|
||||||
|
if ((menu !== null) && (menu.constructor !== Menu)) { throw new TypeError('Invalid menu') }
|
||||||
|
/* Keep a reference. */
|
||||||
|
applicationMenu = menu
|
||||||
|
|
||||||
|
if (process.platform === 'darwin') {
|
||||||
|
if (menu === null) { return }
|
||||||
|
menu._callMenuWillShow()
|
||||||
|
return bindings.setApplicationMenu(menu)
|
||||||
|
} else {
|
||||||
|
const windows = BrowserWindow.getAllWindows()
|
||||||
|
return Array.from(windows).map((w) => w.setMenu(menu))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Menu.getApplicationMenu = () => applicationMenu
|
||||||
|
|
||||||
|
Menu.sendActionToFirstResponder = bindings.sendActionToFirstResponder
|
||||||
|
|
||||||
|
Menu.buildFromTemplate = function(template) {
|
||||||
|
if (!Array.isArray(template)) { throw new TypeError('Invalid template for Menu') }
|
||||||
|
|
||||||
|
const positionedTemplate = []
|
||||||
|
let insertIndex = 0
|
||||||
|
|
||||||
|
for (var item of Array.from(template)) {
|
||||||
|
if (item.position) {
|
||||||
|
insertIndex = indexToInsertByPosition(positionedTemplate, item.position)
|
||||||
|
} else {
|
||||||
|
/* If no |position| is specified, insert after last item. */
|
||||||
|
insertIndex++
|
||||||
|
}
|
||||||
|
positionedTemplate.splice(insertIndex, 0, item)
|
||||||
|
}
|
||||||
|
|
||||||
|
const menu = new Menu
|
||||||
|
|
||||||
|
for (item of Array.from(positionedTemplate)) {
|
||||||
|
if (typeof item !== 'object') { throw new TypeError('Invalid template for MenuItem') }
|
||||||
|
|
||||||
|
const menuItem = new MenuItem(item)
|
||||||
|
for (let key in item) {
|
||||||
|
const value = item[key]
|
||||||
|
if (menuItem[key] == null) {
|
||||||
|
menuItem[key] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
menu.append(menuItem)
|
||||||
|
}
|
||||||
|
|
||||||
|
return menu
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = Menu
|
Loading…
Reference in a new issue