mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 16:51:02 +00:00
1 line
26 KiB
Plaintext
1 line
26 KiB
Plaintext
{"dependencies":[{"name":"./ResponderEventTypes","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":199},"end":{"line":10,"column":72,"index":271}}],"key":"vBlYL6aBF9Cu7j4MJjDSbmFqyNY=","exportNames":["*"]}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.ResponderTouchHistoryStore = void 0;\n var _ResponderEventTypes = require(_dependencyMap[0], \"./ResponderEventTypes\");\n /**\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\n\n /**\n * Tracks the position and time of each active touch by `touch.identifier`. We\n * should typically only see IDs in the range of 1-20 because IDs get recycled\n * when touches end and start again.\n */\n\n var __DEV__ = process.env.NODE_ENV !== 'production';\n var MAX_TOUCH_BANK = 20;\n function timestampForTouch(touch) {\n // The legacy internal implementation provides \"timeStamp\", which has been\n // renamed to \"timestamp\".\n return touch.timeStamp || touch.timestamp;\n }\n\n /**\n * TODO: Instead of making gestures recompute filtered velocity, we could\n * include a built in velocity computation that can be reused globally.\n */\n function createTouchRecord(touch) {\n return {\n touchActive: true,\n startPageX: touch.pageX,\n startPageY: touch.pageY,\n startTimeStamp: timestampForTouch(touch),\n currentPageX: touch.pageX,\n currentPageY: touch.pageY,\n currentTimeStamp: timestampForTouch(touch),\n previousPageX: touch.pageX,\n previousPageY: touch.pageY,\n previousTimeStamp: timestampForTouch(touch)\n };\n }\n function resetTouchRecord(touchRecord, touch) {\n touchRecord.touchActive = true;\n touchRecord.startPageX = touch.pageX;\n touchRecord.startPageY = touch.pageY;\n touchRecord.startTimeStamp = timestampForTouch(touch);\n touchRecord.currentPageX = touch.pageX;\n touchRecord.currentPageY = touch.pageY;\n touchRecord.currentTimeStamp = timestampForTouch(touch);\n touchRecord.previousPageX = touch.pageX;\n touchRecord.previousPageY = touch.pageY;\n touchRecord.previousTimeStamp = timestampForTouch(touch);\n }\n function getTouchIdentifier(_ref) {\n var identifier = _ref.identifier;\n if (identifier == null) {\n console.error('Touch object is missing identifier.');\n }\n if (__DEV__) {\n if (identifier > MAX_TOUCH_BANK) {\n console.error('Touch identifier %s is greater than maximum supported %s which causes ' + 'performance issues backfilling array locations for all of the indices.', identifier, MAX_TOUCH_BANK);\n }\n }\n return identifier;\n }\n function recordTouchStart(touch, touchHistory) {\n var identifier = getTouchIdentifier(touch);\n var touchRecord = touchHistory.touchBank[identifier];\n if (touchRecord) {\n resetTouchRecord(touchRecord, touch);\n } else {\n touchHistory.touchBank[identifier] = createTouchRecord(touch);\n }\n touchHistory.mostRecentTimeStamp = timestampForTouch(touch);\n }\n function recordTouchMove(touch, touchHistory) {\n var touchRecord = touchHistory.touchBank[getTouchIdentifier(touch)];\n if (touchRecord) {\n touchRecord.touchActive = true;\n touchRecord.previousPageX = touchRecord.currentPageX;\n touchRecord.previousPageY = touchRecord.currentPageY;\n touchRecord.previousTimeStamp = touchRecord.currentTimeStamp;\n touchRecord.currentPageX = touch.pageX;\n touchRecord.currentPageY = touch.pageY;\n touchRecord.currentTimeStamp = timestampForTouch(touch);\n touchHistory.mostRecentTimeStamp = timestampForTouch(touch);\n } else {\n console.warn('Cannot record touch move without a touch start.\\n', \"Touch Move: \" + printTouch(touch) + \"\\n\", \"Touch Bank: \" + printTouchBank(touchHistory));\n }\n }\n function recordTouchEnd(touch, touchHistory) {\n var touchRecord = touchHistory.touchBank[getTouchIdentifier(touch)];\n if (touchRecord) {\n touchRecord.touchActive = false;\n touchRecord.previousPageX = touchRecord.currentPageX;\n touchRecord.previousPageY = touchRecord.currentPageY;\n touchRecord.previousTimeStamp = touchRecord.currentTimeStamp;\n touchRecord.currentPageX = touch.pageX;\n touchRecord.currentPageY = touch.pageY;\n touchRecord.currentTimeStamp = timestampForTouch(touch);\n touchHistory.mostRecentTimeStamp = timestampForTouch(touch);\n } else {\n console.warn('Cannot record touch end without a touch start.\\n', \"Touch End: \" + printTouch(touch) + \"\\n\", \"Touch Bank: \" + printTouchBank(touchHistory));\n }\n }\n function printTouch(touch) {\n return JSON.stringify({\n identifier: touch.identifier,\n pageX: touch.pageX,\n pageY: touch.pageY,\n timestamp: timestampForTouch(touch)\n });\n }\n function printTouchBank(touchHistory) {\n var touchBank = touchHistory.touchBank;\n var printed = JSON.stringify(touchBank.slice(0, MAX_TOUCH_BANK));\n if (touchBank.length > MAX_TOUCH_BANK) {\n printed += ' (original size: ' + touchBank.length + ')';\n }\n return printed;\n }\n class ResponderTouchHistoryStore {\n constructor() {\n this._touchHistory = {\n touchBank: [],\n //Array<TouchRecord>\n numberActiveTouches: 0,\n // If there is only one active touch, we remember its location. This prevents\n // us having to loop through all of the touches all the time in the most\n // common case.\n indexOfSingleActiveTouch: -1,\n mostRecentTimeStamp: 0\n };\n }\n recordTouchTrack(topLevelType, nativeEvent) {\n var touchHistory = this._touchHistory;\n if ((0, _ResponderEventTypes.isMoveish)(topLevelType)) {\n nativeEvent.changedTouches.forEach(touch => recordTouchMove(touch, touchHistory));\n } else if ((0, _ResponderEventTypes.isStartish)(topLevelType)) {\n nativeEvent.changedTouches.forEach(touch => recordTouchStart(touch, touchHistory));\n touchHistory.numberActiveTouches = nativeEvent.touches.length;\n if (touchHistory.numberActiveTouches === 1) {\n touchHistory.indexOfSingleActiveTouch = nativeEvent.touches[0].identifier;\n }\n } else if ((0, _ResponderEventTypes.isEndish)(topLevelType)) {\n nativeEvent.changedTouches.forEach(touch => recordTouchEnd(touch, touchHistory));\n touchHistory.numberActiveTouches = nativeEvent.touches.length;\n if (touchHistory.numberActiveTouches === 1) {\n var touchBank = touchHistory.touchBank;\n for (var i = 0; i < touchBank.length; i++) {\n var touchTrackToCheck = touchBank[i];\n if (touchTrackToCheck != null && touchTrackToCheck.touchActive) {\n touchHistory.indexOfSingleActiveTouch = i;\n break;\n }\n }\n if (__DEV__) {\n var activeRecord = touchBank[touchHistory.indexOfSingleActiveTouch];\n if (!(activeRecord != null && activeRecord.touchActive)) {\n console.error('Cannot find single active touch.');\n }\n }\n }\n }\n }\n get touchHistory() {\n return this._touchHistory;\n }\n }\n exports.ResponderTouchHistoryStore = ResponderTouchHistoryStore;\n});","lineCount":177,"map":[[6,2,10,0],[6,6,10,0,"_ResponderEventTypes"],[6,26,10,0],[6,29,10,0,"require"],[6,36,10,0],[6,37,10,0,"_dependencyMap"],[6,51,10,0],[7,2,1,0],[8,0,2,0],[9,0,3,0],[10,0,4,0],[11,0,5,0],[12,0,6,0],[13,0,7,0],[14,0,8,0],[16,2,11,0],[17,0,12,0],[18,0,13,0],[19,0,14,0],[20,0,15,0],[22,2,17,0],[22,6,17,4,"__DEV__"],[22,13,17,11],[22,16,17,14,"process"],[22,23,17,21],[22,24,17,22,"env"],[22,27,17,25],[22,28,17,26,"NODE_ENV"],[22,36,17,34],[22,41,17,39],[22,53,17,51],[23,2,18,0],[23,6,18,4,"MAX_TOUCH_BANK"],[23,20,18,18],[23,23,18,21],[23,25,18,23],[24,2,19,0],[24,11,19,9,"timestampForTouch"],[24,28,19,26,"timestampForTouch"],[24,29,19,27,"touch"],[24,34,19,32],[24,36,19,34],[25,4,20,2],[26,4,21,2],[27,4,22,2],[27,11,22,9,"touch"],[27,16,22,14],[27,17,22,15,"timeStamp"],[27,26,22,24],[27,30,22,28,"touch"],[27,35,22,33],[27,36,22,34,"timestamp"],[27,45,22,43],[28,2,23,0],[30,2,25,0],[31,0,26,0],[32,0,27,0],[33,0,28,0],[34,2,29,0],[34,11,29,9,"createTouchRecord"],[34,28,29,26,"createTouchRecord"],[34,29,29,27,"touch"],[34,34,29,32],[34,36,29,34],[35,4,30,2],[35,11,30,9],[36,6,31,4,"touchActive"],[36,17,31,15],[36,19,31,17],[36,23,31,21],[37,6,32,4,"startPageX"],[37,16,32,14],[37,18,32,16,"touch"],[37,23,32,21],[37,24,32,22,"pageX"],[37,29,32,27],[38,6,33,4,"startPageY"],[38,16,33,14],[38,18,33,16,"touch"],[38,23,33,21],[38,24,33,22,"pageY"],[38,29,33,27],[39,6,34,4,"startTimeStamp"],[39,20,34,18],[39,22,34,20,"timestampForTouch"],[39,39,34,37],[39,40,34,38,"touch"],[39,45,34,43],[39,46,34,44],[40,6,35,4,"currentPageX"],[40,18,35,16],[40,20,35,18,"touch"],[40,25,35,23],[40,26,35,24,"pageX"],[40,31,35,29],[41,6,36,4,"currentPageY"],[41,18,36,16],[41,20,36,18,"touch"],[41,25,36,23],[41,26,36,24,"pageY"],[41,31,36,29],[42,6,37,4,"currentTimeStamp"],[42,22,37,20],[42,24,37,22,"timestampForTouch"],[42,41,37,39],[42,42,37,40,"touch"],[42,47,37,45],[42,48,37,46],[43,6,38,4,"previousPageX"],[43,19,38,17],[43,21,38,19,"touch"],[43,26,38,24],[43,27,38,25,"pageX"],[43,32,38,30],[44,6,39,4,"previousPageY"],[44,19,39,17],[44,21,39,19,"touch"],[44,26,39,24],[44,27,39,25,"pageY"],[44,32,39,30],[45,6,40,4,"previousTimeStamp"],[45,23,40,21],[45,25,40,23,"timestampForTouch"],[45,42,40,40],[45,43,40,41,"touch"],[45,48,40,46],[46,4,41,2],[46,5,41,3],[47,2,42,0],[48,2,43,0],[48,11,43,9,"resetTouchRecord"],[48,27,43,25,"resetTouchRecord"],[48,28,43,26,"touchRecord"],[48,39,43,37],[48,41,43,39,"touch"],[48,46,43,44],[48,48,43,46],[49,4,44,2,"touchRecord"],[49,15,44,13],[49,16,44,14,"touchActive"],[49,27,44,25],[49,30,44,28],[49,34,44,32],[50,4,45,2,"touchRecord"],[50,15,45,13],[50,16,45,14,"startPageX"],[50,26,45,24],[50,29,45,27,"touch"],[50,34,45,32],[50,35,45,33,"pageX"],[50,40,45,38],[51,4,46,2,"touchRecord"],[51,15,46,13],[51,16,46,14,"startPageY"],[51,26,46,24],[51,29,46,27,"touch"],[51,34,46,32],[51,35,46,33,"pageY"],[51,40,46,38],[52,4,47,2,"touchRecord"],[52,15,47,13],[52,16,47,14,"startTimeStamp"],[52,30,47,28],[52,33,47,31,"timestampForTouch"],[52,50,47,48],[52,51,47,49,"touch"],[52,56,47,54],[52,57,47,55],[53,4,48,2,"touchRecord"],[53,15,48,13],[53,16,48,14,"currentPageX"],[53,28,48,26],[53,31,48,29,"touch"],[53,36,48,34],[53,37,48,35,"pageX"],[53,42,48,40],[54,4,49,2,"touchRecord"],[54,15,49,13],[54,16,49,14,"currentPageY"],[54,28,49,26],[54,31,49,29,"touch"],[54,36,49,34],[54,37,49,35,"pageY"],[54,42,49,40],[55,4,50,2,"touchRecord"],[55,15,50,13],[55,16,50,14,"currentTimeStamp"],[55,32,50,30],[55,35,50,33,"timestampForTouch"],[55,52,50,50],[55,53,50,51,"touch"],[55,58,50,56],[55,59,50,57],[56,4,51,2,"touchRecord"],[56,15,51,13],[56,16,51,14,"previousPageX"],[56,29,51,27],[56,32,51,30,"touch"],[56,37,51,35],[56,38,51,36,"pageX"],[56,43,51,41],[57,4,52,2,"touchRecord"],[57,15,52,13],[57,16,52,14,"previousPageY"],[57,29,52,27],[57,32,52,30,"touch"],[57,37,52,35],[57,38,52,36,"pageY"],[57,43,52,41],[58,4,53,2,"touchRecord"],[58,15,53,13],[58,16,53,14,"previousTimeStamp"],[58,33,53,31],[58,36,53,34,"timestampForTouch"],[58,53,53,51],[58,54,53,52,"touch"],[58,59,53,57],[58,60,53,58],[59,2,54,0],[60,2,55,0],[60,11,55,9,"getTouchIdentifier"],[60,29,55,27,"getTouchIdentifier"],[60,30,55,28,"_ref"],[60,34,55,32],[60,36,55,34],[61,4,56,2],[61,8,56,6,"identifier"],[61,18,56,16],[61,21,56,19,"_ref"],[61,25,56,23],[61,26,56,24,"identifier"],[61,36,56,34],[62,4,57,2],[62,8,57,6,"identifier"],[62,18,57,16],[62,22,57,20],[62,26,57,24],[62,28,57,26],[63,6,58,4,"console"],[63,13,58,11],[63,14,58,12,"error"],[63,19,58,17],[63,20,58,18],[63,57,58,55],[63,58,58,56],[64,4,59,2],[65,4,60,2],[65,8,60,6,"__DEV__"],[65,15,60,13],[65,17,60,15],[66,6,61,4],[66,10,61,8,"identifier"],[66,20,61,18],[66,23,61,21,"MAX_TOUCH_BANK"],[66,37,61,35],[66,39,61,37],[67,8,62,6,"console"],[67,15,62,13],[67,16,62,14,"error"],[67,21,62,19],[67,22,62,20],[67,94,62,92],[67,97,62,95],[67,169,62,167],[67,171,62,169,"identifier"],[67,181,62,179],[67,183,62,181,"MAX_TOUCH_BANK"],[67,197,62,195],[67,198,62,196],[68,6,63,4],[69,4,64,2],[70,4,65,2],[70,11,65,9,"identifier"],[70,21,65,19],[71,2,66,0],[72,2,67,0],[72,11,67,9,"recordTouchStart"],[72,27,67,25,"recordTouchStart"],[72,28,67,26,"touch"],[72,33,67,31],[72,35,67,33,"touchHistory"],[72,47,67,45],[72,49,67,47],[73,4,68,2],[73,8,68,6,"identifier"],[73,18,68,16],[73,21,68,19,"getTouchIdentifier"],[73,39,68,37],[73,40,68,38,"touch"],[73,45,68,43],[73,46,68,44],[74,4,69,2],[74,8,69,6,"touchRecord"],[74,19,69,17],[74,22,69,20,"touchHistory"],[74,34,69,32],[74,35,69,33,"touchBank"],[74,44,69,42],[74,45,69,43,"identifier"],[74,55,69,53],[74,56,69,54],[75,4,70,2],[75,8,70,6,"touchRecord"],[75,19,70,17],[75,21,70,19],[76,6,71,4,"resetTouchRecord"],[76,22,71,20],[76,23,71,21,"touchRecord"],[76,34,71,32],[76,36,71,34,"touch"],[76,41,71,39],[76,42,71,40],[77,4,72,2],[77,5,72,3],[77,11,72,9],[78,6,73,4,"touchHistory"],[78,18,73,16],[78,19,73,17,"touchBank"],[78,28,73,26],[78,29,73,27,"identifier"],[78,39,73,37],[78,40,73,38],[78,43,73,41,"createTouchRecord"],[78,60,73,58],[78,61,73,59,"touch"],[78,66,73,64],[78,67,73,65],[79,4,74,2],[80,4,75,2,"touchHistory"],[80,16,75,14],[80,17,75,15,"mostRecentTimeStamp"],[80,36,75,34],[80,39,75,37,"timestampForTouch"],[80,56,75,54],[80,57,75,55,"touch"],[80,62,75,60],[80,63,75,61],[81,2,76,0],[82,2,77,0],[82,11,77,9,"recordTouchMove"],[82,26,77,24,"recordTouchMove"],[82,27,77,25,"touch"],[82,32,77,30],[82,34,77,32,"touchHistory"],[82,46,77,44],[82,48,77,46],[83,4,78,2],[83,8,78,6,"touchRecord"],[83,19,78,17],[83,22,78,20,"touchHistory"],[83,34,78,32],[83,35,78,33,"touchBank"],[83,44,78,42],[83,45,78,43,"getTouchIdentifier"],[83,63,78,61],[83,64,78,62,"touch"],[83,69,78,67],[83,70,78,68],[83,71,78,69],[84,4,79,2],[84,8,79,6,"touchRecord"],[84,19,79,17],[84,21,79,19],[85,6,80,4,"touchRecord"],[85,17,80,15],[85,18,80,16,"touchActive"],[85,29,80,27],[85,32,80,30],[85,36,80,34],[86,6,81,4,"touchRecord"],[86,17,81,15],[86,18,81,16,"previousPageX"],[86,31,81,29],[86,34,81,32,"touchRecord"],[86,45,81,43],[86,46,81,44,"currentPageX"],[86,58,81,56],[87,6,82,4,"touchRecord"],[87,17,82,15],[87,18,82,16,"previousPageY"],[87,31,82,29],[87,34,82,32,"touchRecord"],[87,45,82,43],[87,46,82,44,"currentPageY"],[87,58,82,56],[88,6,83,4,"touchRecord"],[88,17,83,15],[88,18,83,16,"previousTimeStamp"],[88,35,83,33],[88,38,83,36,"touchRecord"],[88,49,83,47],[88,50,83,48,"currentTimeStamp"],[88,66,83,64],[89,6,84,4,"touchRecord"],[89,17,84,15],[89,18,84,16,"currentPageX"],[89,30,84,28],[89,33,84,31,"touch"],[89,38,84,36],[89,39,84,37,"pageX"],[89,44,84,42],[90,6,85,4,"touchRecord"],[90,17,85,15],[90,18,85,16,"currentPageY"],[90,30,85,28],[90,33,85,31,"touch"],[90,38,85,36],[90,39,85,37,"pageY"],[90,44,85,42],[91,6,86,4,"touchRecord"],[91,17,86,15],[91,18,86,16,"currentTimeStamp"],[91,34,86,32],[91,37,86,35,"timestampForTouch"],[91,54,86,52],[91,55,86,53,"touch"],[91,60,86,58],[91,61,86,59],[92,6,87,4,"touchHistory"],[92,18,87,16],[92,19,87,17,"mostRecentTimeStamp"],[92,38,87,36],[92,41,87,39,"timestampForTouch"],[92,58,87,56],[92,59,87,57,"touch"],[92,64,87,62],[92,65,87,63],[93,4,88,2],[93,5,88,3],[93,11,88,9],[94,6,89,4,"console"],[94,13,89,11],[94,14,89,12,"warn"],[94,18,89,16],[94,19,89,17],[94,70,89,68],[94,72,89,70],[94,86,89,84],[94,89,89,87,"printTouch"],[94,99,89,97],[94,100,89,98,"touch"],[94,105,89,103],[94,106,89,104],[94,109,89,107],[94,113,89,111],[94,115,89,113],[94,129,89,127],[94,132,89,130,"printTouchBank"],[94,146,89,144],[94,147,89,145,"touchHistory"],[94,159,89,157],[94,160,89,158],[94,161,89,159],[95,4,90,2],[96,2,91,0],[97,2,92,0],[97,11,92,9,"recordTouchEnd"],[97,25,92,23,"recordTouchEnd"],[97,26,92,24,"touch"],[97,31,92,29],[97,33,92,31,"touchHistory"],[97,45,92,43],[97,47,92,45],[98,4,93,2],[98,8,93,6,"touchRecord"],[98,19,93,17],[98,22,93,20,"touchHistory"],[98,34,93,32],[98,35,93,33,"touchBank"],[98,44,93,42],[98,45,93,43,"getTouchIdentifier"],[98,63,93,61],[98,64,93,62,"touch"],[98,69,93,67],[98,70,93,68],[98,71,93,69],[99,4,94,2],[99,8,94,6,"touchRecord"],[99,19,94,17],[99,21,94,19],[100,6,95,4,"touchRecord"],[100,17,95,15],[100,18,95,16,"touchActive"],[100,29,95,27],[100,32,95,30],[100,37,95,35],[101,6,96,4,"touchRecord"],[101,17,96,15],[101,18,96,16,"previousPageX"],[101,31,96,29],[101,34,96,32,"touchRecord"],[101,45,96,43],[101,46,96,44,"currentPageX"],[101,58,96,56],[102,6,97,4,"touchRecord"],[102,17,97,15],[102,18,97,16,"previousPageY"],[102,31,97,29],[102,34,97,32,"touchRecord"],[102,45,97,43],[102,46,97,44,"currentPageY"],[102,58,97,56],[103,6,98,4,"touchRecord"],[103,17,98,15],[103,18,98,16,"previousTimeStamp"],[103,35,98,33],[103,38,98,36,"touchRecord"],[103,49,98,47],[103,50,98,48,"currentTimeStamp"],[103,66,98,64],[104,6,99,4,"touchRecord"],[104,17,99,15],[104,18,99,16,"currentPageX"],[104,30,99,28],[104,33,99,31,"touch"],[104,38,99,36],[104,39,99,37,"pageX"],[104,44,99,42],[105,6,100,4,"touchRecord"],[105,17,100,15],[105,18,100,16,"currentPageY"],[105,30,100,28],[105,33,100,31,"touch"],[105,38,100,36],[105,39,100,37,"pageY"],[105,44,100,42],[106,6,101,4,"touchRecord"],[106,17,101,15],[106,18,101,16,"currentTimeStamp"],[106,34,101,32],[106,37,101,35,"timestampForTouch"],[106,54,101,52],[106,55,101,53,"touch"],[106,60,101,58],[106,61,101,59],[107,6,102,4,"touchHistory"],[107,18,102,16],[107,19,102,17,"mostRecentTimeStamp"],[107,38,102,36],[107,41,102,39,"timestampForTouch"],[107,58,102,56],[107,59,102,57,"touch"],[107,64,102,62],[107,65,102,63],[108,4,103,2],[108,5,103,3],[108,11,103,9],[109,6,104,4,"console"],[109,13,104,11],[109,14,104,12,"warn"],[109,18,104,16],[109,19,104,17],[109,69,104,67],[109,71,104,69],[109,84,104,82],[109,87,104,85,"printTouch"],[109,97,104,95],[109,98,104,96,"touch"],[109,103,104,101],[109,104,104,102],[109,107,104,105],[109,111,104,109],[109,113,104,111],[109,127,104,125],[109,130,104,128,"printTouchBank"],[109,144,104,142],[109,145,104,143,"touchHistory"],[109,157,104,155],[109,158,104,156],[109,159,104,157],[110,4,105,2],[111,2,106,0],[112,2,107,0],[112,11,107,9,"printTouch"],[112,21,107,19,"printTouch"],[112,22,107,20,"touch"],[112,27,107,25],[112,29,107,27],[113,4,108,2],[113,11,108,9,"JSON"],[113,15,108,13],[113,16,108,14,"stringify"],[113,25,108,23],[113,26,108,24],[114,6,109,4,"identifier"],[114,16,109,14],[114,18,109,16,"touch"],[114,23,109,21],[114,24,109,22,"identifier"],[114,34,109,32],[115,6,110,4,"pageX"],[115,11,110,9],[115,13,110,11,"touch"],[115,18,110,16],[115,19,110,17,"pageX"],[115,24,110,22],[116,6,111,4,"pageY"],[116,11,111,9],[116,13,111,11,"touch"],[116,18,111,16],[116,19,111,17,"pageY"],[116,24,111,22],[117,6,112,4,"timestamp"],[117,15,112,13],[117,17,112,15,"timestampForTouch"],[117,34,112,32],[117,35,112,33,"touch"],[117,40,112,38],[118,4,113,2],[118,5,113,3],[118,6,113,4],[119,2,114,0],[120,2,115,0],[120,11,115,9,"printTouchBank"],[120,25,115,23,"printTouchBank"],[120,26,115,24,"touchHistory"],[120,38,115,36],[120,40,115,38],[121,4,116,2],[121,8,116,6,"touchBank"],[121,17,116,15],[121,20,116,18,"touchHistory"],[121,32,116,30],[121,33,116,31,"touchBank"],[121,42,116,40],[122,4,117,2],[122,8,117,6,"printed"],[122,15,117,13],[122,18,117,16,"JSON"],[122,22,117,20],[122,23,117,21,"stringify"],[122,32,117,30],[122,33,117,31,"touchBank"],[122,42,117,40],[122,43,117,41,"slice"],[122,48,117,46],[122,49,117,47],[122,50,117,48],[122,52,117,50,"MAX_TOUCH_BANK"],[122,66,117,64],[122,67,117,65],[122,68,117,66],[123,4,118,2],[123,8,118,6,"touchBank"],[123,17,118,15],[123,18,118,16,"length"],[123,24,118,22],[123,27,118,25,"MAX_TOUCH_BANK"],[123,41,118,39],[123,43,118,41],[124,6,119,4,"printed"],[124,13,119,11],[124,17,119,15],[124,36,119,34],[124,39,119,37,"touchBank"],[124,48,119,46],[124,49,119,47,"length"],[124,55,119,53],[124,58,119,56],[124,61,119,59],[125,4,120,2],[126,4,121,2],[126,11,121,9,"printed"],[126,18,121,16],[127,2,122,0],[128,2,123,7],[128,8,123,13,"ResponderTouchHistoryStore"],[128,34,123,39],[128,35,123,40],[129,4,124,2,"constructor"],[129,15,124,13,"constructor"],[129,16,124,13],[129,18,124,16],[130,6,125,4],[130,10,125,8],[130,11,125,9,"_touchHistory"],[130,24,125,22],[130,27,125,25],[131,8,126,6,"touchBank"],[131,17,126,15],[131,19,126,17],[131,21,126,19],[132,8,127,6],[133,8,128,6,"numberActiveTouches"],[133,27,128,25],[133,29,128,27],[133,30,128,28],[134,8,129,6],[135,8,130,6],[136,8,131,6],[137,8,132,6,"indexOfSingleActiveTouch"],[137,32,132,30],[137,34,132,32],[137,35,132,33],[137,36,132,34],[138,8,133,6,"mostRecentTimeStamp"],[138,27,133,25],[138,29,133,27],[139,6,134,4],[139,7,134,5],[140,4,135,2],[141,4,136,2,"recordTouchTrack"],[141,20,136,18,"recordTouchTrack"],[141,21,136,19,"topLevelType"],[141,33,136,31],[141,35,136,33,"nativeEvent"],[141,46,136,44],[141,48,136,46],[142,6,137,4],[142,10,137,8,"touchHistory"],[142,22,137,20],[142,25,137,23],[142,29,137,27],[142,30,137,28,"_touchHistory"],[142,43,137,41],[143,6,138,4],[143,10,138,8],[143,14,138,8,"isMoveish"],[143,44,138,17],[143,46,138,18,"topLevelType"],[143,58,138,30],[143,59,138,31],[143,61,138,33],[144,8,139,6,"nativeEvent"],[144,19,139,17],[144,20,139,18,"changedTouches"],[144,34,139,32],[144,35,139,33,"forEach"],[144,42,139,40],[144,43,139,41,"touch"],[144,48,139,46],[144,52,139,50,"recordTouchMove"],[144,67,139,65],[144,68,139,66,"touch"],[144,73,139,71],[144,75,139,73,"touchHistory"],[144,87,139,85],[144,88,139,86],[144,89,139,87],[145,6,140,4],[145,7,140,5],[145,13,140,11],[145,17,140,15],[145,21,140,15,"isStartish"],[145,52,140,25],[145,54,140,26,"topLevelType"],[145,66,140,38],[145,67,140,39],[145,69,140,41],[146,8,141,6,"nativeEvent"],[146,19,141,17],[146,20,141,18,"changedTouches"],[146,34,141,32],[146,35,141,33,"forEach"],[146,42,141,40],[146,43,141,41,"touch"],[146,48,141,46],[146,52,141,50,"recordTouchStart"],[146,68,141,66],[146,69,141,67,"touch"],[146,74,141,72],[146,76,141,74,"touchHistory"],[146,88,141,86],[146,89,141,87],[146,90,141,88],[147,8,142,6,"touchHistory"],[147,20,142,18],[147,21,142,19,"numberActiveTouches"],[147,40,142,38],[147,43,142,41,"nativeEvent"],[147,54,142,52],[147,55,142,53,"touches"],[147,62,142,60],[147,63,142,61,"length"],[147,69,142,67],[148,8,143,6],[148,12,143,10,"touchHistory"],[148,24,143,22],[148,25,143,23,"numberActiveTouches"],[148,44,143,42],[148,49,143,47],[148,50,143,48],[148,52,143,50],[149,10,144,8,"touchHistory"],[149,22,144,20],[149,23,144,21,"indexOfSingleActiveTouch"],[149,47,144,45],[149,50,144,48,"nativeEvent"],[149,61,144,59],[149,62,144,60,"touches"],[149,69,144,67],[149,70,144,68],[149,71,144,69],[149,72,144,70],[149,73,144,71,"identifier"],[149,83,144,81],[150,8,145,6],[151,6,146,4],[151,7,146,5],[151,13,146,11],[151,17,146,15],[151,21,146,15,"isEndish"],[151,50,146,23],[151,52,146,24,"topLevelType"],[151,64,146,36],[151,65,146,37],[151,67,146,39],[152,8,147,6,"nativeEvent"],[152,19,147,17],[152,20,147,18,"changedTouches"],[152,34,147,32],[152,35,147,33,"forEach"],[152,42,147,40],[152,43,147,41,"touch"],[152,48,147,46],[152,52,147,50,"recordTouchEnd"],[152,66,147,64],[152,67,147,65,"touch"],[152,72,147,70],[152,74,147,72,"touchHistory"],[152,86,147,84],[152,87,147,85],[152,88,147,86],[153,8,148,6,"touchHistory"],[153,20,148,18],[153,21,148,19,"numberActiveTouches"],[153,40,148,38],[153,43,148,41,"nativeEvent"],[153,54,148,52],[153,55,148,53,"touches"],[153,62,148,60],[153,63,148,61,"length"],[153,69,148,67],[154,8,149,6],[154,12,149,10,"touchHistory"],[154,24,149,22],[154,25,149,23,"numberActiveTouches"],[154,44,149,42],[154,49,149,47],[154,50,149,48],[154,52,149,50],[155,10,150,8],[155,14,150,12,"touchBank"],[155,23,150,21],[155,26,150,24,"touchHistory"],[155,38,150,36],[155,39,150,37,"touchBank"],[155,48,150,46],[156,10,151,8],[156,15,151,13],[156,19,151,17,"i"],[156,20,151,18],[156,23,151,21],[156,24,151,22],[156,26,151,24,"i"],[156,27,151,25],[156,30,151,28,"touchBank"],[156,39,151,37],[156,40,151,38,"length"],[156,46,151,44],[156,48,151,46,"i"],[156,49,151,47],[156,51,151,49],[156,53,151,51],[157,12,152,10],[157,16,152,14,"touchTrackToCheck"],[157,33,152,31],[157,36,152,34,"touchBank"],[157,45,152,43],[157,46,152,44,"i"],[157,47,152,45],[157,48,152,46],[158,12,153,10],[158,16,153,14,"touchTrackToCheck"],[158,33,153,31],[158,37,153,35],[158,41,153,39],[158,45,153,43,"touchTrackToCheck"],[158,62,153,60],[158,63,153,61,"touchActive"],[158,74,153,72],[158,76,153,74],[159,14,154,12,"touchHistory"],[159,26,154,24],[159,27,154,25,"indexOfSingleActiveTouch"],[159,51,154,49],[159,54,154,52,"i"],[159,55,154,53],[160,14,155,12],[161,12,156,10],[162,10,157,8],[163,10,158,8],[163,14,158,12,"__DEV__"],[163,21,158,19],[163,23,158,21],[164,12,159,10],[164,16,159,14,"activeRecord"],[164,28,159,26],[164,31,159,29,"touchBank"],[164,40,159,38],[164,41,159,39,"touchHistory"],[164,53,159,51],[164,54,159,52,"indexOfSingleActiveTouch"],[164,78,159,76],[164,79,159,77],[165,12,160,10],[165,16,160,14],[165,18,160,16,"activeRecord"],[165,30,160,28],[165,34,160,32],[165,38,160,36],[165,42,160,40,"activeRecord"],[165,54,160,52],[165,55,160,53,"touchActive"],[165,66,160,64],[165,67,160,65],[165,69,160,67],[166,14,161,12,"console"],[166,21,161,19],[166,22,161,20,"error"],[166,27,161,25],[166,28,161,26],[166,62,161,60],[166,63,161,61],[167,12,162,10],[168,10,163,8],[169,8,164,6],[170,6,165,4],[171,4,166,2],[172,4,167,2],[172,8,167,6,"touchHistory"],[172,20,167,18,"touchHistory"],[172,21,167,18],[172,23,167,21],[173,6,168,4],[173,13,168,11],[173,17,168,15],[173,18,168,16,"_touchHistory"],[173,31,168,29],[174,4,169,2],[175,2,170,0],[176,2,170,1,"exports"],[176,9,170,1],[176,10,170,1,"ResponderTouchHistoryStore"],[176,36,170,1],[176,39,170,1,"ResponderTouchHistoryStore"],[176,65,170,1],[177,0,170,1],[177,3]],"functionMap":{"names":["<global>","timestampForTouch","createTouchRecord","resetTouchRecord","getTouchIdentifier","recordTouchStart","recordTouchMove","recordTouchEnd","printTouch","printTouchBank","ResponderTouchHistoryStore","constructor","recordTouchTrack","nativeEvent.changedTouches.forEach$argument_0","get__touchHistory"],"mappings":"AAA;ACkB;CDI;AEM;CFa;AGC;CHW;AIC;CJW;AKC;CLS;AMC;CNc;AOC;CPc;AQC;CRO;ASC;CTO;OUC;ECC;GDW;EEC;yCCG,6CD;yCCE,8CD;yCCM,4CD;GFmB;EIC;GJE"}},"type":"js/module"}]} |