UNPKG

react-native-reanimated

Version:

More powerful alternative to Animated library for React Native.

121 lines 3.33 kB
/* eslint-disable node/no-callback-literal */ // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-nocheck const NOOP = () => { // noop }; const ID = t => t; const IMMEDIATE_CB_INVOCATION = cb => cb(); class BaseAnimationMock { duration(_) { return this; } delay(_) { return this; } springify(_) { return this; } damping(_) { return this; } stiffness(_) { return this; } withCallback(_) { return this; } randomDelay() { return this; } withInitialValues() { return this; } build() { return () => ({ initialValues: {}, animations: {} }); } } const ReanimatedV2 = { useSharedValue: v => ({ value: v }), useDerivedValue: a => ({ value: a() }), useAnimatedScrollHandler: () => NOOP, useAnimatedGestureHandler: () => NOOP, useAnimatedStyle: IMMEDIATE_CB_INVOCATION, useAnimatedRef: () => ({ current: null }), useAnimatedReaction: NOOP, useAnimatedProps: IMMEDIATE_CB_INVOCATION, withTiming: (toValue, _, cb) => { cb && cb(true); return toValue; }, withSpring: (toValue, _, cb) => { cb && cb(true); return toValue; }, withDecay: (_, cb) => { cb && cb(true); return 0; }, withDelay: (_, animationValue) => { return animationValue; }, withSequence: function () { return 0; }, withRepeat: animation => { return animation; }, cancelAnimation: NOOP, measure: () => ({ x: 0, y: 0, width: 0, height: 0, pageX: 0, pageY: 0 }), Easing: { linear: ID, ease: ID, quad: ID, cubic: ID, poly: ID, sin: ID, circle: ID, exp: ID, elastic: ID, back: ID, bounce: ID, bezier: () => ({ factory: ID }), bezierFn: ID, steps: ID, in: ID, out: ID, inOut: ID }, Extrapolation: { EXTEND: 'extend', CLAMP: 'clamp', IDENTITY: 'identity' }, runOnJS: fn => fn, runOnUI: fn => fn }; ['FadeIn', 'FadeInRight', 'FadeInLeft', 'FadeInUp', 'FadeInDown', 'FadeOut', 'FadeOutRight', 'FadeOutLeft', 'FadeOutUp', 'FadeOutDown', 'FlipInYLeft', 'FlipInXDown', 'FlipInYRight', 'FlipInEasyX', 'FlipInEasyY', 'FlipOutXUp', 'FlipOutYLeft', 'FlipOutXDown', 'FlipOutYRight', 'FlipOutEasyX', 'FlipOutEasyY', 'StretchInY', 'StretchOutX', 'StretchOutY', 'SlideInLeft', 'SlideOutRight', 'SlideOutLeft', 'SlideInUp', 'SlideInDown', 'SlideOutUp', 'ZoomInRotate', 'ZoomInLeft', 'ZoomInRight', 'ZoomInUp', 'ZoomInDown', 'ZoomInEasyUp', 'ZoomInEasyDown', 'ZoomOut', 'ZoomOutRotate', 'ZoomOutLeft', 'ZoomOutRight', 'ZoomOutUp', 'ZoomOutDown', 'ZoomOutEasyUp', 'ZoomOutEasyDown', 'BounceIn', 'BounceInDown', 'BounceInUp', 'BounceInLeft', 'BounceInRight', 'BounceOut', 'BounceOutDown', 'BounceOutUp', 'BounceOutLeft', 'BounceOutRight', 'LightSpeedInLeft', 'LightSpeedOutRight', 'LightSpeedOutLeft', 'PinwheelOut', 'RotateInDownRight', 'RotateInUpLeft', 'RotateInUpRight', 'RotateOutDownLeft', 'RotateOutDownRight', 'RotateOutUpLeft', 'RotateOutUpRight', 'RollInRight', 'RollOutLeft', 'RollOutRight', 'Layout', 'CurvedTransition', 'JumpingTransition', 'SequencedTransition', 'FadingTransition', 'EntryExitTransition'].forEach(k => Object.assign(ReanimatedV2, { [k]: new BaseAnimationMock() })); module.exports = { ...ReanimatedV2 }; //# sourceMappingURL=mock.js.map