@difizen/mana-app
Version:
41 lines (40 loc) • 2.67 kB
JavaScript
;
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CommonCommand = exports.CLOSE_TAB = void 0;
var _manaCore = require("@difizen/mana-core");
var _manaL10n = require("@difizen/mana-l10n");
var _manaSyringe = require("@difizen/mana-syringe");
var _dec, _class;
/* eslint-disable max-len, @typescript-eslint/indent */
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
var CLOSE_TAB = exports.CLOSE_TAB = {
id: 'tab.close',
label: _manaL10n.l10n.t('关闭')
};
var CommonCommand = exports.CommonCommand = (_dec = (0, _manaSyringe.singleton)({
contrib: [_manaCore.CommandContribution]
}), _dec(_class = /*#__PURE__*/function () {
function CommonCommand(commandRegistry) {
_classCallCheck(this, CommonCommand);
this.commandRegistry = commandRegistry;
}
CommonCommand = (0, _manaSyringe.inject)(_manaCore.CommandRegistry)(CommonCommand, undefined, 0) || CommonCommand;
_createClass(CommonCommand, [{
key: "registerCommands",
value: function registerCommands(command) {
command.registerCommand(CLOSE_TAB, {
execute: function execute() {
//
}
});
}
}]);
return CommonCommand;
}()) || _class);