@txdfe/at
Version:
一个设计体系组件库
97 lines (96 loc) • 4.41 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _util = require("../../../util");
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(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _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(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : 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 ServiceQueue = exports["default"] = /*#__PURE__*/function () {
function ServiceQueue() {
_classCallCheck(this, ServiceQueue);
this.innerQueue = [];
this.innerSubscribers = [];
}
return _createClass(ServiceQueue, [{
key: "queue",
get: function get() {
return this.innerQueue;
},
set: function set(value) {
this.innerQueue = value;
this.publish();
}
}, {
key: "subscribers",
get: function get() {
return this.innerSubscribers;
},
set: function set(value) {
this.innerSubscribers = value;
this.publish();
}
}, {
key: "add",
value: function add(value) {
this.queue = [].concat(_toConsumableArray(this.queue), [value]);
return value;
}
}, {
key: "delete",
value: function _delete(key) {
this.queue = this.queue.filter(function (stack) {
return stack.key !== key;
});
}
}, {
key: "deleteAll",
value: function deleteAll() {
this.queue = [];
}
}, {
key: "subscribe",
value: function subscribe(next) {
var key = (0, _util.guid)();
var nextSubscriber = {
key: key,
next: next
};
this.subscribers = [].concat(_toConsumableArray(this.subscribers), [nextSubscriber]);
return key;
}
}, {
key: "unsubscribe",
value: function unsubscribe(key) {
this.subscribers = this.subscribers.filter(function (subscriber) {
return subscriber.key !== key;
});
}
}, {
key: "unsubscribeAll",
value: function unsubscribeAll() {
this.subscribers = [];
}
}, {
key: "publish",
value: function publish() {
var _this = this;
if (this.subscribers.length !== 0) {
this.subscribers.forEach(function (subscriber) {
var next = subscriber.next;
next(_this.queue);
});
}
}
}]);
}();