react-native-zoom-toolkit
Version:
Most complete set of pinch to zoom utilites for React Native
27 lines • 1.55 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React, { forwardRef } from 'react';
export default function withResumableValidation(Component) {
return /*#__PURE__*/forwardRef((props, ref) => {
const childrenCount = React.Children.count(props.children);
if (childrenCount !== 1) {
const message = `ResumableZoom expected one child but received ${childrenCount} children`;
throw new Error(message);
}
if (props.minScale !== undefined && props.minScale < 1) {
throw new Error('minScale must be greater than or equals one');
}
if (typeof props.maxScale === 'number' && props.maxScale < 1) {
throw new Error('maxScale must be greater than one, or a SizeVector object in order to infer the max scale');
}
if (props.minScale && typeof props.maxScale === 'number' && props.minScale > props.maxScale) {
throw new Error('minScale must not be greater maxScale');
}
if (props.longPressDuration !== undefined && props.longPressDuration <= 250) {
throw new Error('longPressDuration must be greater than 250ms');
}
return /*#__PURE__*/React.createElement(Component, _extends({}, props, {
reference: ref
}));
});
}
//# sourceMappingURL=withResumableValidation.js.map