react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
210 lines (193 loc) • 6.35 kB
text/typescript
'use strict';
import type {
EntryExitAnimationFunction,
EntryExitAnimationsValues,
IEntryExitAnimationBuilder,
} from '../../commonTypes';
import type { BaseAnimationBuilder } from '../animationBuilder';
import { ComplexAnimationBuilder } from '../animationBuilder';
/**
* Roll from left animation. You can modify the behavior by chaining methods
* like `.springify()` or `.duration(500)`.
*
* You pass it to the `entering` prop on [an Animated
* component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
*
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
*/
export class RollInLeft
extends ComplexAnimationBuilder
implements IEntryExitAnimationBuilder
{
static presetName = 'RollInLeft';
static createInstance<T extends typeof BaseAnimationBuilder>(
this: T
): InstanceType<T> {
return new RollInLeft() as InstanceType<T>;
}
build = (): EntryExitAnimationFunction => {
const delayFunction = this.getDelayFunction();
const [animation, config] = this.getAnimationAndConfig();
const delay = this.getDelay();
const callback = this.callbackV;
const initialValues = this.initialValues;
return (values: EntryExitAnimationsValues) => {
'worklet';
return {
animations: {
transform: [
{ translateX: delayFunction(delay, animation(0, config)) },
{ rotate: delayFunction(delay, animation('0deg', config)) },
],
},
initialValues: {
transform: [
{ translateX: -values.windowWidth },
{ rotate: '-180deg' },
],
...initialValues,
},
callback,
};
};
};
}
/**
* Roll from right animation. You can modify the behavior by chaining methods
* like `.springify()` or `.duration(500)`.
*
* You pass it to the `entering` prop on [an Animated
* component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
*
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
*/
export class RollInRight
extends ComplexAnimationBuilder
implements IEntryExitAnimationBuilder
{
static presetName = 'RollInRight';
static createInstance<T extends typeof BaseAnimationBuilder>(
this: T
): InstanceType<T> {
return new RollInRight() as InstanceType<T>;
}
build = (): EntryExitAnimationFunction => {
const delayFunction = this.getDelayFunction();
const [animation, config] = this.getAnimationAndConfig();
const delay = this.getDelay();
const callback = this.callbackV;
const initialValues = this.initialValues;
return (values: EntryExitAnimationsValues) => {
'worklet';
return {
animations: {
transform: [
{ translateX: delayFunction(delay, animation(0, config)) },
{ rotate: delayFunction(delay, animation('0deg', config)) },
],
},
initialValues: {
transform: [{ translateX: values.windowWidth }, { rotate: '180deg' }],
...initialValues,
},
callback,
};
};
};
}
/**
* Roll to left animation. You can modify the behavior by chaining methods like
* `.springify()` or `.duration(500)`.
*
* You pass it to the `exiting` prop on [an Animated
* component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
*
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
*/
export class RollOutLeft
extends ComplexAnimationBuilder
implements IEntryExitAnimationBuilder
{
static presetName = 'RollOutLeft';
static createInstance<T extends typeof BaseAnimationBuilder>(
this: T
): InstanceType<T> {
return new RollOutLeft() as InstanceType<T>;
}
build = (): EntryExitAnimationFunction => {
const delayFunction = this.getDelayFunction();
const [animation, config] = this.getAnimationAndConfig();
const delay = this.getDelay();
const callback = this.callbackV;
const initialValues = this.initialValues;
return (values: EntryExitAnimationsValues) => {
'worklet';
return {
animations: {
transform: [
{
translateX: delayFunction(
delay,
animation(-values.windowWidth, config)
),
},
{ rotate: delayFunction(delay, animation('-180deg', config)) },
],
},
initialValues: {
transform: [{ translateX: 0 }, { rotate: '0deg' }],
...initialValues,
},
callback,
};
};
};
}
/**
* Roll to right animation. You can modify the behavior by chaining methods like
* `.springify()` or `.duration(500)`.
*
* You pass it to the `exiting` prop on [an Animated
* component](https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/glossary#animated-component).
*
* @see https://docs.swmansion.com/react-native-reanimated/docs/layout-animations/entering-exiting-animations#roll
*/
export class RollOutRight
extends ComplexAnimationBuilder
implements IEntryExitAnimationBuilder
{
static presetName = 'RollOutRight';
static createInstance<T extends typeof BaseAnimationBuilder>(
this: T
): InstanceType<T> {
return new RollOutRight() as InstanceType<T>;
}
build = (): EntryExitAnimationFunction => {
const delayFunction = this.getDelayFunction();
const [animation, config] = this.getAnimationAndConfig();
const delay = this.getDelay();
const callback = this.callbackV;
const initialValues = this.initialValues;
return (values: EntryExitAnimationsValues) => {
'worklet';
return {
animations: {
transform: [
{
translateX: delayFunction(
delay,
animation(values.windowWidth, config)
),
},
{ rotate: delayFunction(delay, animation('180deg', config)) },
],
},
initialValues: {
transform: [{ translateX: 0 }, { rotate: '0deg' }],
...initialValues,
},
callback,
};
};
};
}