mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
8f2023d961
Summary: fix 4 lint warnings under Libraries/Components/Touchable directory Closes https://github.com/facebook/react-native/pull/4449 Reviewed By: svcscm Differential Revision: D2705537 Pulled By: spicyj fb-gh-sync-id: 0c573d846a2263819c2a0bffe0a178eee1fe3fca
43 lines
991 B
JavaScript
43 lines
991 B
JavaScript
/**
|
|
* @providesModule BoundingDimensions
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var PooledClass = require('PooledClass');
|
|
|
|
var twoArgumentPooler = PooledClass.twoArgumentPooler;
|
|
|
|
/**
|
|
* PooledClass representing the bounding rectangle of a region.
|
|
*
|
|
* @param {number} width Width of bounding rectangle.
|
|
* @param {number} height Height of bounding rectangle.
|
|
* @constructor BoundingDimensions
|
|
*/
|
|
function BoundingDimensions(width, height) {
|
|
this.width = width;
|
|
this.height = height;
|
|
}
|
|
|
|
BoundingDimensions.prototype.destructor = function() {
|
|
this.width = null;
|
|
this.height = null;
|
|
};
|
|
|
|
/**
|
|
* @param {HTMLElement} element Element to return `BoundingDimensions` for.
|
|
* @return {BoundingDimensions} Bounding dimensions of `element`.
|
|
*/
|
|
BoundingDimensions.getPooledFromElement = function(element) {
|
|
return BoundingDimensions.getPooled(
|
|
element.offsetWidth,
|
|
element.offsetHeight
|
|
);
|
|
};
|
|
|
|
PooledClass.addPoolingTo(BoundingDimensions, twoArgumentPooler);
|
|
|
|
module.exports = BoundingDimensions;
|
|
|