UNPKG

mana-syringe

Version:

IoC library for mana, easily to use.

79 lines (57 loc) 4.71 kB
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(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } 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, 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; } export var DefaultContributionProvider = /*#__PURE__*/function () { function DefaultContributionProvider(serviceIdentifier, container, option) { _classCallCheck(this, DefaultContributionProvider); this.option = { recursive: false, cache: true }; this.services = void 0; this.serviceIdentifier = void 0; this.container = void 0; this.container = container; this.serviceIdentifier = serviceIdentifier; if (option) { this.option = _objectSpread(_objectSpread({}, this.option), option); } } _createClass(DefaultContributionProvider, [{ 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; }();