2016-01-19 22:49:40 +00:00
|
|
|
var MenuItem, methodInBrowserWindow, nextCommandId, rolesMap;
|
2016-01-12 02:40:23 +00:00
|
|
|
|
|
|
|
nextCommandId = 0;
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Maps role to methods of webContents
|
2016-01-12 02:40:23 +00:00
|
|
|
rolesMap = {
|
|
|
|
undo: 'undo',
|
|
|
|
redo: 'redo',
|
|
|
|
cut: 'cut',
|
|
|
|
copy: 'copy',
|
|
|
|
paste: 'paste',
|
|
|
|
selectall: 'selectAll',
|
|
|
|
minimize: 'minimize',
|
|
|
|
close: 'close'
|
|
|
|
};
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Maps methods that should be called directly on the BrowserWindow instance
|
2016-01-12 02:40:23 +00:00
|
|
|
methodInBrowserWindow = {
|
|
|
|
minimize: true,
|
|
|
|
close: true
|
|
|
|
};
|
|
|
|
|
|
|
|
MenuItem = (function() {
|
|
|
|
MenuItem.types = ['normal', 'separator', 'submenu', 'checkbox', 'radio'];
|
|
|
|
|
|
|
|
function MenuItem(options) {
|
2016-01-14 21:18:52 +00:00
|
|
|
var click, ref;
|
|
|
|
const Menu = require('electron').Menu;
|
2016-01-12 02:40:23 +00:00
|
|
|
click = options.click, this.selector = options.selector, this.type = options.type, this.role = options.role, this.label = options.label, this.sublabel = options.sublabel, this.accelerator = options.accelerator, this.icon = options.icon, this.enabled = options.enabled, this.visible = options.visible, this.checked = options.checked, this.submenu = options.submenu;
|
|
|
|
if ((this.submenu != null) && this.submenu.constructor !== Menu) {
|
|
|
|
this.submenu = Menu.buildFromTemplate(this.submenu);
|
|
|
|
}
|
|
|
|
if ((this.type == null) && (this.submenu != null)) {
|
|
|
|
this.type = 'submenu';
|
|
|
|
}
|
|
|
|
if (this.type === 'submenu' && ((ref = this.submenu) != null ? ref.constructor : void 0) !== Menu) {
|
|
|
|
throw new Error('Invalid submenu');
|
|
|
|
}
|
|
|
|
this.overrideReadOnlyProperty('type', 'normal');
|
|
|
|
this.overrideReadOnlyProperty('role');
|
|
|
|
this.overrideReadOnlyProperty('accelerator');
|
|
|
|
this.overrideReadOnlyProperty('icon');
|
|
|
|
this.overrideReadOnlyProperty('submenu');
|
|
|
|
this.overrideProperty('label', '');
|
|
|
|
this.overrideProperty('sublabel', '');
|
|
|
|
this.overrideProperty('enabled', true);
|
|
|
|
this.overrideProperty('visible', true);
|
|
|
|
this.overrideProperty('checked', false);
|
|
|
|
if (MenuItem.types.indexOf(this.type) === -1) {
|
|
|
|
throw new Error("Unknown menu type " + this.type);
|
|
|
|
}
|
|
|
|
this.commandId = ++nextCommandId;
|
|
|
|
this.click = (function(_this) {
|
|
|
|
return function(focusedWindow) {
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Manually flip the checked flags when clicked.
|
2016-01-12 02:40:23 +00:00
|
|
|
var methodName, ref1, ref2;
|
|
|
|
if ((ref1 = _this.type) === 'checkbox' || ref1 === 'radio') {
|
|
|
|
_this.checked = !_this.checked;
|
|
|
|
}
|
|
|
|
if (_this.role && rolesMap[_this.role] && process.platform !== 'darwin' && (focusedWindow != null)) {
|
|
|
|
methodName = rolesMap[_this.role];
|
|
|
|
if (methodInBrowserWindow[methodName]) {
|
|
|
|
return focusedWindow[methodName]();
|
|
|
|
} else {
|
|
|
|
return (ref2 = focusedWindow.webContents) != null ? ref2[methodName]() : void 0;
|
|
|
|
}
|
|
|
|
} else if (typeof click === 'function') {
|
|
|
|
return click(_this, focusedWindow);
|
2016-03-03 03:07:16 +00:00
|
|
|
} else if (typeof _this.selector === 'string' && process.platform === 'darwin') {
|
2016-01-12 02:40:23 +00:00
|
|
|
return Menu.sendActionToFirstResponder(_this.selector);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
})(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuItem.prototype.overrideProperty = function(name, defaultValue) {
|
|
|
|
if (defaultValue == null) {
|
|
|
|
defaultValue = null;
|
|
|
|
}
|
|
|
|
return this[name] != null ? this[name] : this[name] = defaultValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
MenuItem.prototype.overrideReadOnlyProperty = function(name, defaultValue) {
|
|
|
|
if (defaultValue == null) {
|
|
|
|
defaultValue = null;
|
|
|
|
}
|
|
|
|
if (this[name] == null) {
|
|
|
|
this[name] = defaultValue;
|
|
|
|
}
|
|
|
|
return Object.defineProperty(this, name, {
|
|
|
|
enumerable: true,
|
|
|
|
writable: false,
|
|
|
|
value: this[name]
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return MenuItem;
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
module.exports = MenuItem;
|