Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/36/37310261abfacf5bdacbc83d20871340e3b7330fca33734ca93e64f6b836cd279ef517
T
2025-11-08 10:07:13 +00:00

1 line
14 KiB
Plaintext

{"dependencies":[{"name":"@babel/runtime/helpers/classCallCheck","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"yg7e6laZwmpbIvId5jovq9ugXp8=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/createClass","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"Z6pzkVZ2fvxBLkFTgVVOy4UDj30=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/callSuper","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"378KbBHdmndC3iMXZ2Ix8oB3LeE=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/superPropGet","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"b4Lel0pEiTM8mvZZX/d05uR+OmU=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/inherits","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"y0uNg4LxF1CLscQChxzgo5dfjvA=","exportNames":["*"],"imports":1}},{"name":"./Animation","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0},"end":{"line":15,"column":36}}],"key":"IpfQWRKePvRqyvs8Q+vGFqyieVw=","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 function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return DecayAnimation;\n }\n });\n var _babelRuntimeHelpersClassCallCheck = require(_dependencyMap[0], \"@babel/runtime/helpers/classCallCheck\");\n var _classCallCheck = _interopDefault(_babelRuntimeHelpersClassCallCheck);\n var _babelRuntimeHelpersCreateClass = require(_dependencyMap[1], \"@babel/runtime/helpers/createClass\");\n var _createClass = _interopDefault(_babelRuntimeHelpersCreateClass);\n var _babelRuntimeHelpersCallSuper = require(_dependencyMap[2], \"@babel/runtime/helpers/callSuper\");\n var _callSuper = _interopDefault(_babelRuntimeHelpersCallSuper);\n var _babelRuntimeHelpersSuperPropGet = require(_dependencyMap[3], \"@babel/runtime/helpers/superPropGet\");\n var _superPropGet = _interopDefault(_babelRuntimeHelpersSuperPropGet);\n var _babelRuntimeHelpersInherits = require(_dependencyMap[4], \"@babel/runtime/helpers/inherits\");\n var _inherits = _interopDefault(_babelRuntimeHelpersInherits);\n var _Animation2 = require(_dependencyMap[5], \"./Animation\");\n var Animation = _interopDefault(_Animation2);\n var DecayAnimation = /*#__PURE__*/function (_Animation) {\n function DecayAnimation(config) {\n var _config$deceleration;\n var _this;\n (0, _classCallCheck.default)(this, DecayAnimation);\n _this = (0, _callSuper.default)(this, DecayAnimation, [config]);\n _this._deceleration = (_config$deceleration = config.deceleration) != null ? _config$deceleration : 0.998;\n _this._velocity = config.velocity;\n _this._platformConfig = config.platformConfig;\n return _this;\n }\n (0, _inherits.default)(DecayAnimation, _Animation);\n return (0, _createClass.default)(DecayAnimation, [{\n key: \"__getNativeAnimationConfig\",\n value: function __getNativeAnimationConfig() {\n return {\n type: 'decay',\n deceleration: this._deceleration,\n velocity: this._velocity,\n iterations: this.__iterations,\n platformConfig: this._platformConfig,\n debugID: this.__getDebugID()\n };\n }\n }, {\n key: \"start\",\n value: function start(fromValue, onUpdate, onEnd, previousAnimation, animatedValue) {\n var _this2 = this;\n (0, _superPropGet.default)(DecayAnimation, \"start\", this, 3)([fromValue, onUpdate, onEnd, previousAnimation, animatedValue]);\n this._lastValue = fromValue;\n this._fromValue = fromValue;\n this._onUpdate = onUpdate;\n this._startTime = Date.now();\n var useNativeDriver = this.__startAnimationIfNative(animatedValue);\n if (!useNativeDriver) {\n this._animationFrame = requestAnimationFrame(function () {\n return _this2.onUpdate();\n });\n }\n }\n }, {\n key: \"onUpdate\",\n value: function onUpdate() {\n var now = Date.now();\n var value = this._fromValue + this._velocity / (1 - this._deceleration) * (1 - Math.exp(-(1 - this._deceleration) * (now - this._startTime)));\n this._onUpdate(value);\n if (Math.abs(this._lastValue - value) < 0.1) {\n this.__notifyAnimationEnd({\n finished: true\n });\n return;\n }\n this._lastValue = value;\n if (this.__active) {\n this._animationFrame = requestAnimationFrame(this.onUpdate.bind(this));\n }\n }\n }, {\n key: \"stop\",\n value: function stop() {\n (0, _superPropGet.default)(DecayAnimation, \"stop\", this, 3)([]);\n if (this._animationFrame != null) {\n global.cancelAnimationFrame(this._animationFrame);\n }\n this.__notifyAnimationEnd({\n finished: false\n });\n }\n }]);\n }(Animation.default);\n});","lineCount":100,"map":[[15,13,37,21,"DecayAnimation"],[15,27,37,35],[16,4,37,35],[17,2,37,35],[18,2,37,35],[18,6,37,35,"_babelRuntimeHelpersClassCallCheck"],[18,40,37,35],[18,43,37,35,"require"],[18,50,37,35],[18,51,37,35,"_dependencyMap"],[18,65,37,35],[19,2,37,35],[19,6,37,35,"_classCallCheck"],[19,21,37,35],[19,24,37,35,"_interopDefault"],[19,39,37,35],[19,40,37,35,"_babelRuntimeHelpersClassCallCheck"],[19,74,37,35],[20,2,37,35],[20,6,37,35,"_babelRuntimeHelpersCreateClass"],[20,37,37,35],[20,40,37,35,"require"],[20,47,37,35],[20,48,37,35,"_dependencyMap"],[20,62,37,35],[21,2,37,35],[21,6,37,35,"_createClass"],[21,18,37,35],[21,21,37,35,"_interopDefault"],[21,36,37,35],[21,37,37,35,"_babelRuntimeHelpersCreateClass"],[21,68,37,35],[22,2,37,35],[22,6,37,35,"_babelRuntimeHelpersCallSuper"],[22,35,37,35],[22,38,37,35,"require"],[22,45,37,35],[22,46,37,35,"_dependencyMap"],[22,60,37,35],[23,2,37,35],[23,6,37,35,"_callSuper"],[23,16,37,35],[23,19,37,35,"_interopDefault"],[23,34,37,35],[23,35,37,35,"_babelRuntimeHelpersCallSuper"],[23,64,37,35],[24,2,37,35],[24,6,37,35,"_babelRuntimeHelpersSuperPropGet"],[24,38,37,35],[24,41,37,35,"require"],[24,48,37,35],[24,49,37,35,"_dependencyMap"],[24,63,37,35],[25,2,37,35],[25,6,37,35,"_superPropGet"],[25,19,37,35],[25,22,37,35,"_interopDefault"],[25,37,37,35],[25,38,37,35,"_babelRuntimeHelpersSuperPropGet"],[25,70,37,35],[26,2,37,35],[26,6,37,35,"_babelRuntimeHelpersInherits"],[26,34,37,35],[26,37,37,35,"require"],[26,44,37,35],[26,45,37,35,"_dependencyMap"],[26,59,37,35],[27,2,37,35],[27,6,37,35,"_inherits"],[27,15,37,35],[27,18,37,35,"_interopDefault"],[27,33,37,35],[27,34,37,35,"_babelRuntimeHelpersInherits"],[27,62,37,35],[28,2,15,0],[28,6,15,0,"_Animation2"],[28,17,15,0],[28,20,15,0,"require"],[28,27,15,0],[28,28,15,0,"_dependencyMap"],[28,42,15,0],[29,2,15,0],[29,6,15,0,"Animation"],[29,15,15,0],[29,18,15,0,"_interopDefault"],[29,33,15,0],[29,34,15,0,"_Animation2"],[29,45,15,0],[30,2,15,36],[30,6,37,21,"DecayAnimation"],[30,20,37,35],[30,46,37,35,"_Animation"],[30,56,37,35],[31,4,47,2],[31,13,47,2,"DecayAnimation"],[31,28,47,14,"config"],[31,34,47,48],[31,36,47,50],[32,6,47,50],[32,10,47,50,"_config$deceleration"],[32,30,47,50],[33,6,47,50],[33,10,47,50,"_this"],[33,15,47,50],[34,6,47,50],[34,10,47,50,"_classCallCheck"],[34,25,47,50],[34,26,47,50,"default"],[34,33,47,50],[34,41,47,50,"DecayAnimation"],[34,55,47,50],[35,6,48,4,"_this"],[35,11,48,4],[35,18,48,4,"_callSuper"],[35,28,48,4],[35,29,48,4,"default"],[35,36,48,4],[35,44,48,4,"DecayAnimation"],[35,58,48,4],[35,61,48,10,"config"],[35,67,48,16],[36,6,50,4,"_this"],[36,11,50,4],[36,12,50,9,"_deceleration"],[36,25,50,22],[36,29,50,22,"_config$deceleration"],[36,49,50,22],[36,52,50,25,"config"],[36,58,50,31],[36,59,50,32,"deceleration"],[36,71,50,44],[36,83,50,44,"_config$deceleration"],[36,103,50,44],[36,106,50,48],[36,111,50,53],[37,6,51,4,"_this"],[37,11,51,4],[37,12,51,9,"_velocity"],[37,21,51,18],[37,24,51,21,"config"],[37,30,51,27],[37,31,51,28,"velocity"],[37,39,51,36],[38,6,52,4,"_this"],[38,11,52,4],[38,12,52,9,"_platformConfig"],[38,27,52,24],[38,30,52,27,"config"],[38,36,52,33],[38,37,52,34,"platformConfig"],[38,51,52,48],[39,6,52,49],[39,13,52,49,"_this"],[39,18,52,49],[40,4,53,2],[41,4,53,3],[41,8,53,3,"_inherits"],[41,17,53,3],[41,18,53,3,"default"],[41,25,53,3],[41,27,53,3,"DecayAnimation"],[41,41,53,3],[41,43,53,3,"_Animation"],[41,53,53,3],[42,4,53,3],[42,15,53,3,"_createClass"],[42,27,53,3],[42,28,53,3,"default"],[42,35,53,3],[42,37,53,3,"DecayAnimation"],[42,51,53,3],[43,6,53,3,"key"],[43,9,53,3],[44,6,53,3,"value"],[44,11,53,3],[44,13,55,2],[44,22,55,2,"__getNativeAnimationConfig"],[44,48,55,28,"__getNativeAnimationConfig"],[44,49,55,28],[44,51,62,5],[45,8,63,4],[45,15,63,11],[46,10,64,6,"type"],[46,14,64,10],[46,16,64,12],[46,23,64,19],[47,10,65,6,"deceleration"],[47,22,65,18],[47,24,65,20],[47,28,65,24],[47,29,65,25,"_deceleration"],[47,42,65,38],[48,10,66,6,"velocity"],[48,18,66,14],[48,20,66,16],[48,24,66,20],[48,25,66,21,"_velocity"],[48,34,66,30],[49,10,67,6,"iterations"],[49,20,67,16],[49,22,67,18],[49,26,67,22],[49,27,67,23,"__iterations"],[49,39,67,35],[50,10,68,6,"platformConfig"],[50,24,68,20],[50,26,68,22],[50,30,68,26],[50,31,68,27,"_platformConfig"],[50,46,68,42],[51,10,69,6,"debugID"],[51,17,69,13],[51,19,69,15],[51,23,69,19],[51,24,69,20,"__getDebugID"],[51,36,69,32],[51,37,69,33],[52,8,70,4],[52,9,70,5],[53,6,71,2],[54,4,71,3],[55,6,71,3,"key"],[55,9,71,3],[56,6,71,3,"value"],[56,11,71,3],[56,13,73,2],[56,22,73,2,"start"],[56,27,73,7,"start"],[56,28,74,4,"fromValue"],[56,37,74,21],[56,39,75,4,"onUpdate"],[56,47,75,37],[56,49,76,4,"onEnd"],[56,54,76,23],[56,56,77,4,"previousAnimation"],[56,73,77,33],[56,75,78,4,"animatedValue"],[56,88,78,32],[56,90,79,10],[57,8,79,10],[57,12,79,10,"_this2"],[57,18,79,10],[58,8,80,4],[58,12,80,4,"_superPropGet"],[58,25,80,4],[58,26,80,4,"default"],[58,33,80,4],[58,35,80,4,"DecayAnimation"],[58,49,80,4],[58,70,80,16,"fromValue"],[58,79,80,25],[58,81,80,27,"onUpdate"],[58,89,80,35],[58,91,80,37,"onEnd"],[58,96,80,42],[58,98,80,44,"previousAnimation"],[58,115,80,61],[58,117,80,63,"animatedValue"],[58,130,80,76],[59,8,82,4],[59,12,82,8],[59,13,82,9,"_lastValue"],[59,23,82,19],[59,26,82,22,"fromValue"],[59,35,82,31],[60,8,83,4],[60,12,83,8],[60,13,83,9,"_fromValue"],[60,23,83,19],[60,26,83,22,"fromValue"],[60,35,83,31],[61,8,84,4],[61,12,84,8],[61,13,84,9,"_onUpdate"],[61,22,84,18],[61,25,84,21,"onUpdate"],[61,33,84,29],[62,8,85,4],[62,12,85,8],[62,13,85,9,"_startTime"],[62,23,85,19],[62,26,85,22,"Date"],[62,30,85,26],[62,31,85,27,"now"],[62,34,85,30],[62,35,85,31],[62,36,85,32],[63,8,87,4],[63,12,87,10,"useNativeDriver"],[63,27,87,25],[63,30,87,28],[63,34,87,32],[63,35,87,33,"__startAnimationIfNative"],[63,59,87,57],[63,60,87,58,"animatedValue"],[63,73,87,71],[63,74,87,72],[64,8,88,4],[64,12,88,8],[64,13,88,9,"useNativeDriver"],[64,28,88,24],[64,30,88,26],[65,10,89,6],[65,14,89,10],[65,15,89,11,"_animationFrame"],[65,30,89,26],[65,33,89,29,"requestAnimationFrame"],[65,54,89,50],[65,55,89,51],[66,12,89,51],[66,19,89,57,"_this2"],[66,25,89,61],[66,26,89,62,"onUpdate"],[66,34,89,70],[66,35,89,71],[66,36,89,72],[67,10,89,72],[67,12,89,73],[68,8,90,4],[69,6,91,2],[70,4,91,3],[71,6,91,3,"key"],[71,9,91,3],[72,6,91,3,"value"],[72,11,91,3],[72,13,93,2],[72,22,93,2,"onUpdate"],[72,30,93,10,"onUpdate"],[72,31,93,10],[72,33,93,19],[73,8,94,4],[73,12,94,10,"now"],[73,15,94,13],[73,18,94,16,"Date"],[73,22,94,20],[73,23,94,21,"now"],[73,26,94,24],[73,27,94,25],[73,28,94,26],[74,8,96,4],[74,12,96,10,"value"],[74,17,96,15],[74,20,97,6],[74,24,97,10],[74,25,97,11,"_fromValue"],[74,35,97,21],[74,38,98,7],[74,42,98,11],[74,43,98,12,"_velocity"],[74,52,98,21],[74,56,98,25],[74,57,98,26],[74,60,98,29],[74,64,98,33],[74,65,98,34,"_deceleration"],[74,78,98,47],[74,79,98,48],[74,83,99,9],[74,84,99,10],[74,87,99,13,"Math"],[74,91,99,17],[74,92,99,18,"exp"],[74,95,99,21],[74,96,99,22],[74,98,99,24],[74,99,99,25],[74,102,99,28],[74,106,99,32],[74,107,99,33,"_deceleration"],[74,120,99,46],[74,121,99,47],[74,125,99,51,"now"],[74,128,99,54],[74,131,99,57],[74,135,99,61],[74,136,99,62,"_startTime"],[74,146,99,72],[74,147,99,73],[74,148,99,74],[74,149,99,75],[75,8,101,4],[75,12,101,8],[75,13,101,9,"_onUpdate"],[75,22,101,18],[75,23,101,19,"value"],[75,28,101,24],[75,29,101,25],[76,8,103,4],[76,12,103,8,"Math"],[76,16,103,12],[76,17,103,13,"abs"],[76,20,103,16],[76,21,103,17],[76,25,103,21],[76,26,103,22,"_lastValue"],[76,36,103,32],[76,39,103,35,"value"],[76,44,103,40],[76,45,103,41],[76,48,103,44],[76,51,103,47],[76,53,103,49],[77,10,104,6],[77,14,104,10],[77,15,104,11,"__notifyAnimationEnd"],[77,35,104,31],[77,36,104,32],[78,12,104,33,"finished"],[78,20,104,41],[78,22,104,43],[79,10,104,47],[79,11,104,48],[79,12,104,49],[80,10,105,6],[81,8,106,4],[82,8,108,4],[82,12,108,8],[82,13,108,9,"_lastValue"],[82,23,108,19],[82,26,108,22,"value"],[82,31,108,27],[83,8,109,4],[83,12,109,8],[83,16,109,12],[83,17,109,13,"__active"],[83,25,109,21],[83,27,109,23],[84,10,111,6],[84,14,111,10],[84,15,111,11,"_animationFrame"],[84,30,111,26],[84,33,111,29,"requestAnimationFrame"],[84,54,111,50],[84,55,111,51],[84,59,111,55],[84,60,111,56,"onUpdate"],[84,68,111,64],[84,69,111,65,"bind"],[84,73,111,69],[84,74,111,70],[84,78,111,74],[84,79,111,75],[84,80,111,76],[85,8,112,4],[86,6,113,2],[87,4,113,3],[88,6,113,3,"key"],[88,9,113,3],[89,6,113,3,"value"],[89,11,113,3],[89,13,115,2],[89,22,115,2,"stop"],[89,26,115,6,"stop"],[89,27,115,6],[89,29,115,15],[90,8,116,4],[90,12,116,4,"_superPropGet"],[90,25,116,4],[90,26,116,4,"default"],[90,33,116,4],[90,35,116,4,"DecayAnimation"],[90,49,116,4],[91,8,117,4],[91,12,117,8],[91,16,117,12],[91,17,117,13,"_animationFrame"],[91,32,117,28],[91,36,117,32],[91,40,117,36],[91,42,117,38],[92,10,118,6,"global"],[92,16,118,12],[92,17,118,13,"cancelAnimationFrame"],[92,37,118,33],[92,38,118,34],[92,42,118,38],[92,43,118,39,"_animationFrame"],[92,58,118,54],[92,59,118,55],[93,8,119,4],[94,8,120,4],[94,12,120,8],[94,13,120,9,"__notifyAnimationEnd"],[94,33,120,29],[94,34,120,30],[95,10,120,31,"finished"],[95,18,120,39],[95,20,120,41],[96,8,120,46],[96,9,120,47],[96,10,120,48],[97,6,121,2],[98,4,121,3],[99,2,121,3],[99,4,37,44,"Animation"],[99,13,37,53],[99,14,37,53,"default"],[99,21,37,53],[100,0,37,53],[100,3]],"functionMap":{"names":["<global>","DecayAnimation","constructor","__getNativeAnimationConfig","start","requestAnimationFrame$argument_0","onUpdate","stop"],"mappings":"AAA;eCoC;ECU;GDM;EEE;GFgB;EGE;mDCgB,qBD;GHE;EKE;GLoB;EME;GNM"},"hasCjsExports":false},"type":"js/module"}]}