@difizen/mana-syringe
Version:
85 lines • 6.38 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); }
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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 _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
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); }
import { Emitter } from '@difizen/mana-common';
import { DisposableCollection } from '@difizen/mana-common';
import { ContributionOptionConfig } from "./contribution-protocol";
export var DefaultContributionProvider = /*#__PURE__*/function () {
function DefaultContributionProvider(serviceIdentifier, container, option) {
var _this = this;
_classCallCheck(this, DefaultContributionProvider);
_defineProperty(this, "onChangedEmitter", new Emitter());
_defineProperty(this, "option", {
recursive: ContributionOptionConfig.recursive,
cache: ContributionOptionConfig.cache
});
_defineProperty(this, "services", void 0);
_defineProperty(this, "serviceIdentifier", void 0);
_defineProperty(this, "container", void 0);
_defineProperty(this, "toDispose", new DisposableCollection());
_defineProperty(this, "disposed", void 0);
_defineProperty(this, "onCtxChanged", function () {
_this.services = undefined;
_this.onChangedEmitter.fire();
});
this.container = container;
this.serviceIdentifier = serviceIdentifier;
if (option) {
this.option = _objectSpread(_objectSpread({}, this.option), option);
}
this.toDispose.push(this.onChangedEmitter);
this.toDispose.push(this.container.onModuleChanged(this.onCtxChanged));
this.toDispose.push(this.container.onRegistered(this.onCtxChanged));
}
_createClass(DefaultContributionProvider, [{
key: "onChanged",
get: function get() {
return this.onChangedEmitter.event;
}
}, {
key: "dispose",
value: function dispose() {
this.toDispose.dispose();
this.disposed = true;
}
}, {
key: "setServices",
value: function setServices(recursive) {
var currentServices = [];
var currentContainer = this.container;
while (currentContainer) {
if (currentContainer.isBound(this.serviceIdentifier)) {
var list = currentContainer.getAll(this.serviceIdentifier);
currentServices.push.apply(currentServices, _toConsumableArray(list));
}
currentContainer = recursive ? currentContainer.parent : undefined;
}
return currentServices;
}
}, {
key: "getContributions",
value: function getContributions() {
var option = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var _this$option$option = _objectSpread(_objectSpread({}, this.option), option),
cache = _this$option$option.cache,
recursive = _this$option$option.recursive;
if (!cache || this.services === undefined) {
this.services = this.setServices(!!recursive);
}
return this.services;
}
}]);
return DefaultContributionProvider;
}();