mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 08:51:01 +00:00
1 line
15 KiB
Plaintext
1 line
15 KiB
Plaintext
{"dependencies":[{"name":"tslib","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":34,"index":34}}],"key":"8R25577gwLd3n1hFG9VYnRLV9eE=","exportNames":["*"],"imports":1}},{"name":"./Action","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":35},"end":{"line":2,"column":34,"index":69}}],"key":"/TDETNIbTixKleZnP+4p1PWCfrc=","exportNames":["*"],"imports":1}},{"name":"./intervalProvider","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":70},"end":{"line":3,"column":54,"index":124}}],"key":"Kqjdv6dBnvJ7VB1Oyfo637kTZBY=","exportNames":["*"],"imports":1}},{"name":"../util/arrRemove","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":125},"end":{"line":4,"column":46,"index":171}}],"key":"AVmnHiUkAiyZGj7E/ZN+Rjk+A84=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n Object.defineProperty(exports, \"AsyncAction\", {\n enumerable: true,\n get: function () {\n return AsyncAction;\n }\n });\n var _tslib = require(_dependencyMap[0], \"tslib\");\n var _Action = require(_dependencyMap[1], \"./Action\");\n var _intervalProvider = require(_dependencyMap[2], \"./intervalProvider\");\n var _utilArrRemove = require(_dependencyMap[3], \"../util/arrRemove\");\n var AsyncAction = function (_super) {\n (0, _tslib.__extends)(AsyncAction, _super);\n function AsyncAction(scheduler, work) {\n var _this = _super.call(this, scheduler, work) || this;\n _this.scheduler = scheduler;\n _this.work = work;\n _this.pending = false;\n return _this;\n }\n AsyncAction.prototype.schedule = function (state, delay) {\n var _a;\n if (delay === void 0) {\n delay = 0;\n }\n if (this.closed) {\n return this;\n }\n this.state = state;\n var id = this.id;\n var scheduler = this.scheduler;\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, delay);\n }\n this.pending = true;\n this.delay = delay;\n this.id = (_a = this.id) !== null && _a !== void 0 ? _a : this.requestAsyncId(scheduler, this.id, delay);\n return this;\n };\n AsyncAction.prototype.requestAsyncId = function (scheduler, _id, delay) {\n if (delay === void 0) {\n delay = 0;\n }\n return _intervalProvider.intervalProvider.setInterval(scheduler.flush.bind(scheduler, this), delay);\n };\n AsyncAction.prototype.recycleAsyncId = function (_scheduler, id, delay) {\n if (delay === void 0) {\n delay = 0;\n }\n if (delay != null && this.delay === delay && this.pending === false) {\n return id;\n }\n if (id != null) {\n _intervalProvider.intervalProvider.clearInterval(id);\n }\n return undefined;\n };\n AsyncAction.prototype.execute = function (state, delay) {\n if (this.closed) {\n return new Error('executing a cancelled action');\n }\n this.pending = false;\n var error = this._execute(state, delay);\n if (error) {\n return error;\n } else if (this.pending === false && this.id != null) {\n this.id = this.recycleAsyncId(this.scheduler, this.id, null);\n }\n };\n AsyncAction.prototype._execute = function (state, _delay) {\n var errored = false;\n var errorValue;\n try {\n this.work(state);\n } catch (e) {\n errored = true;\n errorValue = e ? e : new Error('Scheduled action threw falsy error');\n }\n if (errored) {\n this.unsubscribe();\n return errorValue;\n }\n };\n AsyncAction.prototype.unsubscribe = function () {\n if (!this.closed) {\n var _a = this,\n id = _a.id,\n scheduler = _a.scheduler;\n var actions = scheduler.actions;\n this.work = this.state = this.scheduler = null;\n this.pending = false;\n (0, _utilArrRemove.arrRemove)(actions, this);\n if (id != null) {\n this.id = this.recycleAsyncId(scheduler, id, null);\n }\n this.delay = null;\n _super.prototype.unsubscribe.call(this);\n }\n };\n return AsyncAction;\n }(_Action.Action);\n});","lineCount":107,"map":[[7,2,89,0,"Object"],[7,8,89,0],[7,9,89,0,"defineProperty"],[7,23,89,0],[7,24,89,0,"exports"],[7,31,89,0],[8,4,89,0,"enumerable"],[8,14,89,0],[9,4,89,0,"get"],[9,7,89,0],[9,18,89,0,"get"],[9,19,89,0],[10,6,89,0],[10,13,89,9,"AsyncAction"],[10,24,89,20],[11,4,89,20],[12,2,89,20],[13,2,1,0],[13,6,1,0,"_tslib"],[13,12,1,0],[13,15,1,0,"require"],[13,22,1,0],[13,23,1,0,"_dependencyMap"],[13,37,1,0],[14,2,2,0],[14,6,2,0,"_Action"],[14,13,2,0],[14,16,2,0,"require"],[14,23,2,0],[14,24,2,0,"_dependencyMap"],[14,38,2,0],[15,2,3,0],[15,6,3,0,"_intervalProvider"],[15,23,3,0],[15,26,3,0,"require"],[15,33,3,0],[15,34,3,0,"_dependencyMap"],[15,48,3,0],[16,2,4,0],[16,6,4,0,"_utilArrRemove"],[16,20,4,0],[16,23,4,0,"require"],[16,30,4,0],[16,31,4,0,"_dependencyMap"],[16,45,4,0],[17,2,5,0],[17,6,5,4,"AsyncAction"],[17,17,5,15],[17,20,5,19],[17,30,5,29,"_super"],[17,36,5,35],[17,38,5,37],[18,4,6,4],[18,8,6,4,"__extends"],[18,14,6,13],[18,15,6,13,"__extends"],[18,24,6,13],[18,26,6,14,"AsyncAction"],[18,37,6,25],[18,39,6,27,"_super"],[18,45,6,33],[18,46,6,34],[19,4,7,4],[19,13,7,13,"AsyncAction"],[19,24,7,24,"AsyncAction"],[19,25,7,25,"scheduler"],[19,34,7,34],[19,36,7,36,"work"],[19,40,7,40],[19,42,7,42],[20,6,8,8],[20,10,8,12,"_this"],[20,15,8,17],[20,18,8,20,"_super"],[20,24,8,26],[20,25,8,27,"call"],[20,29,8,31],[20,30,8,32],[20,34,8,36],[20,36,8,38,"scheduler"],[20,45,8,47],[20,47,8,49,"work"],[20,51,8,53],[20,52,8,54],[20,56,8,58],[20,60,8,62],[21,6,9,8,"_this"],[21,11,9,13],[21,12,9,14,"scheduler"],[21,21,9,23],[21,24,9,26,"scheduler"],[21,33,9,35],[22,6,10,8,"_this"],[22,11,10,13],[22,12,10,14,"work"],[22,16,10,18],[22,19,10,21,"work"],[22,23,10,25],[23,6,11,8,"_this"],[23,11,11,13],[23,12,11,14,"pending"],[23,19,11,21],[23,22,11,24],[23,27,11,29],[24,6,12,8],[24,13,12,15,"_this"],[24,18,12,20],[25,4,13,4],[26,4,14,4,"AsyncAction"],[26,15,14,15],[26,16,14,16,"prototype"],[26,25,14,25],[26,26,14,26,"schedule"],[26,34,14,34],[26,37,14,37],[26,47,14,47,"state"],[26,52,14,52],[26,54,14,54,"delay"],[26,59,14,59],[26,61,14,61],[27,6,15,8],[27,10,15,12,"_a"],[27,12,15,14],[28,6,16,8],[28,10,16,12,"delay"],[28,15,16,17],[28,20,16,22],[28,25,16,27],[28,26,16,28],[28,28,16,30],[29,8,16,32,"delay"],[29,13,16,37],[29,16,16,40],[29,17,16,41],[30,6,16,43],[31,6,17,8],[31,10,17,12],[31,14,17,16],[31,15,17,17,"closed"],[31,21,17,23],[31,23,17,25],[32,8,18,12],[32,15,18,19],[32,19,18,23],[33,6,19,8],[34,6,20,8],[34,10,20,12],[34,11,20,13,"state"],[34,16,20,18],[34,19,20,21,"state"],[34,24,20,26],[35,6,21,8],[35,10,21,12,"id"],[35,12,21,14],[35,15,21,17],[35,19,21,21],[35,20,21,22,"id"],[35,22,21,24],[36,6,22,8],[36,10,22,12,"scheduler"],[36,19,22,21],[36,22,22,24],[36,26,22,28],[36,27,22,29,"scheduler"],[36,36,22,38],[37,6,23,8],[37,10,23,12,"id"],[37,12,23,14],[37,16,23,18],[37,20,23,22],[37,22,23,24],[38,8,24,12],[38,12,24,16],[38,13,24,17,"id"],[38,15,24,19],[38,18,24,22],[38,22,24,26],[38,23,24,27,"recycleAsyncId"],[38,37,24,41],[38,38,24,42,"scheduler"],[38,47,24,51],[38,49,24,53,"id"],[38,51,24,55],[38,53,24,57,"delay"],[38,58,24,62],[38,59,24,63],[39,6,25,8],[40,6,26,8],[40,10,26,12],[40,11,26,13,"pending"],[40,18,26,20],[40,21,26,23],[40,25,26,27],[41,6,27,8],[41,10,27,12],[41,11,27,13,"delay"],[41,16,27,18],[41,19,27,21,"delay"],[41,24,27,26],[42,6,28,8],[42,10,28,12],[42,11,28,13,"id"],[42,13,28,15],[42,16,28,18],[42,17,28,19,"_a"],[42,19,28,21],[42,22,28,24],[42,26,28,28],[42,27,28,29,"id"],[42,29,28,31],[42,35,28,37],[42,39,28,41],[42,43,28,45,"_a"],[42,45,28,47],[42,50,28,52],[42,55,28,57],[42,56,28,58],[42,59,28,61,"_a"],[42,61,28,63],[42,64,28,66],[42,68,28,70],[42,69,28,71,"requestAsyncId"],[42,83,28,85],[42,84,28,86,"scheduler"],[42,93,28,95],[42,95,28,97],[42,99,28,101],[42,100,28,102,"id"],[42,102,28,104],[42,104,28,106,"delay"],[42,109,28,111],[42,110,28,112],[43,6,29,8],[43,13,29,15],[43,17,29,19],[44,4,30,4],[44,5,30,5],[45,4,31,4,"AsyncAction"],[45,15,31,15],[45,16,31,16,"prototype"],[45,25,31,25],[45,26,31,26,"requestAsyncId"],[45,40,31,40],[45,43,31,43],[45,53,31,53,"scheduler"],[45,62,31,62],[45,64,31,64,"_id"],[45,67,31,67],[45,69,31,69,"delay"],[45,74,31,74],[45,76,31,76],[46,6,32,8],[46,10,32,12,"delay"],[46,15,32,17],[46,20,32,22],[46,25,32,27],[46,26,32,28],[46,28,32,30],[47,8,32,32,"delay"],[47,13,32,37],[47,16,32,40],[47,17,32,41],[48,6,32,43],[49,6,33,8],[49,13,33,15,"intervalProvider"],[49,30,33,31],[49,31,33,31,"intervalProvider"],[49,47,33,31],[49,48,33,32,"setInterval"],[49,59,33,43],[49,60,33,44,"scheduler"],[49,69,33,53],[49,70,33,54,"flush"],[49,75,33,59],[49,76,33,60,"bind"],[49,80,33,64],[49,81,33,65,"scheduler"],[49,90,33,74],[49,92,33,76],[49,96,33,80],[49,97,33,81],[49,99,33,83,"delay"],[49,104,33,88],[49,105,33,89],[50,4,34,4],[50,5,34,5],[51,4,35,4,"AsyncAction"],[51,15,35,15],[51,16,35,16,"prototype"],[51,25,35,25],[51,26,35,26,"recycleAsyncId"],[51,40,35,40],[51,43,35,43],[51,53,35,53,"_scheduler"],[51,63,35,63],[51,65,35,65,"id"],[51,67,35,67],[51,69,35,69,"delay"],[51,74,35,74],[51,76,35,76],[52,6,36,8],[52,10,36,12,"delay"],[52,15,36,17],[52,20,36,22],[52,25,36,27],[52,26,36,28],[52,28,36,30],[53,8,36,32,"delay"],[53,13,36,37],[53,16,36,40],[53,17,36,41],[54,6,36,43],[55,6,37,8],[55,10,37,12,"delay"],[55,15,37,17],[55,19,37,21],[55,23,37,25],[55,27,37,29],[55,31,37,33],[55,32,37,34,"delay"],[55,37,37,39],[55,42,37,44,"delay"],[55,47,37,49],[55,51,37,53],[55,55,37,57],[55,56,37,58,"pending"],[55,63,37,65],[55,68,37,70],[55,73,37,75],[55,75,37,77],[56,8,38,12],[56,15,38,19,"id"],[56,17,38,21],[57,6,39,8],[58,6,40,8],[58,10,40,12,"id"],[58,12,40,14],[58,16,40,18],[58,20,40,22],[58,22,40,24],[59,8,41,12,"intervalProvider"],[59,25,41,28],[59,26,41,28,"intervalProvider"],[59,42,41,28],[59,43,41,29,"clearInterval"],[59,56,41,42],[59,57,41,43,"id"],[59,59,41,45],[59,60,41,46],[60,6,42,8],[61,6,43,8],[61,13,43,15,"undefined"],[61,22,43,24],[62,4,44,4],[62,5,44,5],[63,4,45,4,"AsyncAction"],[63,15,45,15],[63,16,45,16,"prototype"],[63,25,45,25],[63,26,45,26,"execute"],[63,33,45,33],[63,36,45,36],[63,46,45,46,"state"],[63,51,45,51],[63,53,45,53,"delay"],[63,58,45,58],[63,60,45,60],[64,6,46,8],[64,10,46,12],[64,14,46,16],[64,15,46,17,"closed"],[64,21,46,23],[64,23,46,25],[65,8,47,12],[65,15,47,19],[65,19,47,23,"Error"],[65,24,47,28],[65,25,47,29],[65,55,47,59],[65,56,47,60],[66,6,48,8],[67,6,49,8],[67,10,49,12],[67,11,49,13,"pending"],[67,18,49,20],[67,21,49,23],[67,26,49,28],[68,6,50,8],[68,10,50,12,"error"],[68,15,50,17],[68,18,50,20],[68,22,50,24],[68,23,50,25,"_execute"],[68,31,50,33],[68,32,50,34,"state"],[68,37,50,39],[68,39,50,41,"delay"],[68,44,50,46],[68,45,50,47],[69,6,51,8],[69,10,51,12,"error"],[69,15,51,17],[69,17,51,19],[70,8,52,12],[70,15,52,19,"error"],[70,20,52,24],[71,6,53,8],[71,7,53,9],[71,13,54,13],[71,17,54,17],[71,21,54,21],[71,22,54,22,"pending"],[71,29,54,29],[71,34,54,34],[71,39,54,39],[71,43,54,43],[71,47,54,47],[71,48,54,48,"id"],[71,50,54,50],[71,54,54,54],[71,58,54,58],[71,60,54,60],[72,8,55,12],[72,12,55,16],[72,13,55,17,"id"],[72,15,55,19],[72,18,55,22],[72,22,55,26],[72,23,55,27,"recycleAsyncId"],[72,37,55,41],[72,38,55,42],[72,42,55,46],[72,43,55,47,"scheduler"],[72,52,55,56],[72,54,55,58],[72,58,55,62],[72,59,55,63,"id"],[72,61,55,65],[72,63,55,67],[72,67,55,71],[72,68,55,72],[73,6,56,8],[74,4,57,4],[74,5,57,5],[75,4,58,4,"AsyncAction"],[75,15,58,15],[75,16,58,16,"prototype"],[75,25,58,25],[75,26,58,26,"_execute"],[75,34,58,34],[75,37,58,37],[75,47,58,47,"state"],[75,52,58,52],[75,54,58,54,"_delay"],[75,60,58,60],[75,62,58,62],[76,6,59,8],[76,10,59,12,"errored"],[76,17,59,19],[76,20,59,22],[76,25,59,27],[77,6,60,8],[77,10,60,12,"errorValue"],[77,20,60,22],[78,6,61,8],[78,10,61,12],[79,8,62,12],[79,12,62,16],[79,13,62,17,"work"],[79,17,62,21],[79,18,62,22,"state"],[79,23,62,27],[79,24,62,28],[80,6,63,8],[80,7,63,9],[80,8,64,8],[80,15,64,15,"e"],[80,16,64,16],[80,18,64,18],[81,8,65,12,"errored"],[81,15,65,19],[81,18,65,22],[81,22,65,26],[82,8,66,12,"errorValue"],[82,18,66,22],[82,21,66,25,"e"],[82,22,66,26],[82,25,66,29,"e"],[82,26,66,30],[82,29,66,33],[82,33,66,37,"Error"],[82,38,66,42],[82,39,66,43],[82,75,66,79],[82,76,66,80],[83,6,67,8],[84,6,68,8],[84,10,68,12,"errored"],[84,17,68,19],[84,19,68,21],[85,8,69,12],[85,12,69,16],[85,13,69,17,"unsubscribe"],[85,24,69,28],[85,25,69,29],[85,26,69,30],[86,8,70,12],[86,15,70,19,"errorValue"],[86,25,70,29],[87,6,71,8],[88,4,72,4],[88,5,72,5],[89,4,73,4,"AsyncAction"],[89,15,73,15],[89,16,73,16,"prototype"],[89,25,73,25],[89,26,73,26,"unsubscribe"],[89,37,73,37],[89,40,73,40],[89,52,73,52],[90,6,74,8],[90,10,74,12],[90,11,74,13],[90,15,74,17],[90,16,74,18,"closed"],[90,22,74,24],[90,24,74,26],[91,8,75,12],[91,12,75,16,"_a"],[91,14,75,18],[91,17,75,21],[91,21,75,25],[92,10,75,27,"id"],[92,12,75,29],[92,15,75,32,"_a"],[92,17,75,34],[92,18,75,35,"id"],[92,20,75,37],[93,10,75,39,"scheduler"],[93,19,75,48],[93,22,75,51,"_a"],[93,24,75,53],[93,25,75,54,"scheduler"],[93,34,75,63],[94,8,76,12],[94,12,76,16,"actions"],[94,19,76,23],[94,22,76,26,"scheduler"],[94,31,76,35],[94,32,76,36,"actions"],[94,39,76,43],[95,8,77,12],[95,12,77,16],[95,13,77,17,"work"],[95,17,77,21],[95,20,77,24],[95,24,77,28],[95,25,77,29,"state"],[95,30,77,34],[95,33,77,37],[95,37,77,41],[95,38,77,42,"scheduler"],[95,47,77,51],[95,50,77,54],[95,54,77,58],[96,8,78,12],[96,12,78,16],[96,13,78,17,"pending"],[96,20,78,24],[96,23,78,27],[96,28,78,32],[97,8,79,12],[97,12,79,12,"arrRemove"],[97,26,79,21],[97,27,79,21,"arrRemove"],[97,36,79,21],[97,38,79,22,"actions"],[97,45,79,29],[97,47,79,31],[97,51,79,35],[97,52,79,36],[98,8,80,12],[98,12,80,16,"id"],[98,14,80,18],[98,18,80,22],[98,22,80,26],[98,24,80,28],[99,10,81,16],[99,14,81,20],[99,15,81,21,"id"],[99,17,81,23],[99,20,81,26],[99,24,81,30],[99,25,81,31,"recycleAsyncId"],[99,39,81,45],[99,40,81,46,"scheduler"],[99,49,81,55],[99,51,81,57,"id"],[99,53,81,59],[99,55,81,61],[99,59,81,65],[99,60,81,66],[100,8,82,12],[101,8,83,12],[101,12,83,16],[101,13,83,17,"delay"],[101,18,83,22],[101,21,83,25],[101,25,83,29],[102,8,84,12,"_super"],[102,14,84,18],[102,15,84,19,"prototype"],[102,24,84,28],[102,25,84,29,"unsubscribe"],[102,36,84,40],[102,37,84,41,"call"],[102,41,84,45],[102,42,84,46],[102,46,84,50],[102,47,84,51],[103,6,85,8],[104,4,86,4],[104,5,86,5],[105,4,87,4],[105,11,87,11,"AsyncAction"],[105,22,87,22],[106,2,88,0],[106,3,88,1],[106,4,88,2,"Action"],[106,11,88,8],[106,12,88,8,"Action"],[106,18,88,8],[106,19,88,10],[107,0,88,11],[107,3]],"functionMap":{"names":["<global>","<anonymous>","AsyncAction","prototype.schedule","prototype.requestAsyncId","prototype.recycleAsyncId","prototype.execute","prototype._execute","prototype.unsubscribe"],"mappings":"AAA;mBCI;ICE;KDM;qCEC;KFgB;2CGC;KHG;2CIC;KJS;oCKC;KLY;qCMC;KNc;wCOC;KPa;CDE"},"hasCjsExports":false},"type":"js/module"}]} |