react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
36 lines (33 loc) • 1.68 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';
import { ScrollView } from 'react-native';
import { createAnimatedComponent } from '../../createAnimatedComponent';
import { useAnimatedRef, useScrollViewOffset } from '../hook';
// Since createAnimatedComponent return type is ComponentClass that has the props of the argument,
// but not things like NativeMethods, etc. we need to add them manually by extending the type.
const AnimatedScrollViewComponent = createAnimatedComponent(ScrollView);
export const AnimatedScrollView = /*#__PURE__*/forwardRef((props, ref) => {
const {
scrollViewOffset,
...restProps
} = props;
const animatedRef = ref === null ?
// eslint-disable-next-line react-hooks/rules-of-hooks
useAnimatedRef() : ref;
if (scrollViewOffset) {
// eslint-disable-next-line react-hooks/rules-of-hooks
useScrollViewOffset(animatedRef, scrollViewOffset);
}
// Set default scrollEventThrottle, because user expects
// to have continuous scroll events.
// We set it to 1 so we have peace until
// there are 960 fps screens.
if (!('scrollEventThrottle' in restProps)) {
restProps.scrollEventThrottle = 1;
}
return /*#__PURE__*/React.createElement(AnimatedScrollViewComponent, _extends({
ref: animatedRef
}, restProps));
});
//# sourceMappingURL=ScrollView.js.map