mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b589123a3d
Summary: Restructured the JS implementation of AnimatedInterpolation to make it clearer how colors and other string-based interpolatables are supported. We're then able to use a very similar structure to implement this interpolation on the native driver as well, which simplifies implementation, and improves support for different color types. Changelog: [General][Fixed] Improved support for AnimatedInterpolation of color props. Reviewed By: mdvacca Differential Revision: D40571890 fbshipit-source-id: 7c204a7b736722732dc5f9e0d158ef5af81b4bb1
353 lines
10 KiB
JavaScript
353 lines
10 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import Easing from '../Easing';
|
|
import AnimatedInterpolation from '../nodes/AnimatedInterpolation';
|
|
|
|
function createInterpolation(config) {
|
|
let parentValue = null;
|
|
const interpolation = new AnimatedInterpolation(
|
|
{__getValue: () => parentValue},
|
|
config,
|
|
);
|
|
return input => {
|
|
parentValue = input;
|
|
return interpolation.__getValue();
|
|
};
|
|
}
|
|
|
|
describe('Interpolation', () => {
|
|
it('should work with defaults', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: [0, 1],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe(0);
|
|
expect(interpolation(0.5)).toBe(0.5);
|
|
expect(interpolation(0.8)).toBe(0.8);
|
|
expect(interpolation(1)).toBe(1);
|
|
});
|
|
|
|
it('should work with output range', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: [100, 200],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe(100);
|
|
expect(interpolation(0.5)).toBe(150);
|
|
expect(interpolation(0.8)).toBe(180);
|
|
expect(interpolation(1)).toBe(200);
|
|
});
|
|
|
|
it('should work with input range', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [100, 200],
|
|
outputRange: [0, 1],
|
|
});
|
|
|
|
expect(interpolation(100)).toBe(0);
|
|
expect(interpolation(150)).toBe(0.5);
|
|
expect(interpolation(180)).toBe(0.8);
|
|
expect(interpolation(200)).toBe(1);
|
|
});
|
|
|
|
it('should throw for non monotonic input ranges', () => {
|
|
expect(
|
|
() =>
|
|
new AnimatedInterpolation(null, {
|
|
inputRange: [0, 2, 1],
|
|
outputRange: [0, 1, 2],
|
|
}),
|
|
).toThrow();
|
|
|
|
expect(
|
|
() =>
|
|
new AnimatedInterpolation(null, {
|
|
inputRange: [0, 1, 2],
|
|
outputRange: [0, 3, 1],
|
|
}),
|
|
).not.toThrow();
|
|
});
|
|
|
|
it('should work with empty input range', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 10, 10],
|
|
outputRange: [1, 2, 3],
|
|
extrapolate: 'extend',
|
|
});
|
|
|
|
expect(interpolation(0)).toBe(1);
|
|
expect(interpolation(5)).toBe(1.5);
|
|
expect(interpolation(10)).toBe(2);
|
|
expect(interpolation(10.1)).toBe(3);
|
|
expect(interpolation(15)).toBe(3);
|
|
});
|
|
|
|
it('should work with empty output range', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [1, 2, 3],
|
|
outputRange: [0, 10, 10],
|
|
extrapolate: 'extend',
|
|
});
|
|
|
|
expect(interpolation(0)).toBe(-10);
|
|
expect(interpolation(1.5)).toBe(5);
|
|
expect(interpolation(2)).toBe(10);
|
|
expect(interpolation(2.5)).toBe(10);
|
|
expect(interpolation(3)).toBe(10);
|
|
expect(interpolation(4)).toBe(10);
|
|
});
|
|
|
|
it('should work with easing', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: [0, 1],
|
|
easing: Easing.quad,
|
|
});
|
|
|
|
expect(interpolation(0)).toBe(0);
|
|
expect(interpolation(0.5)).toBe(0.25);
|
|
expect(interpolation(0.9)).toBe(0.81);
|
|
expect(interpolation(1)).toBe(1);
|
|
});
|
|
|
|
it('should work with extrapolate', () => {
|
|
let interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: [0, 1],
|
|
extrapolate: 'extend',
|
|
easing: Easing.quad,
|
|
});
|
|
|
|
expect(interpolation(-2)).toBe(4);
|
|
expect(interpolation(2)).toBe(4);
|
|
|
|
interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: [0, 1],
|
|
extrapolate: 'clamp',
|
|
easing: Easing.quad,
|
|
});
|
|
|
|
expect(interpolation(-2)).toBe(0);
|
|
expect(interpolation(2)).toBe(1);
|
|
|
|
interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: [0, 1],
|
|
extrapolate: 'identity',
|
|
easing: Easing.quad,
|
|
});
|
|
|
|
expect(interpolation(-2)).toBe(-2);
|
|
expect(interpolation(2)).toBe(2);
|
|
});
|
|
|
|
it('should work with keyframes with extrapolate', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 10, 100, 1000],
|
|
outputRange: [0, 5, 50, 500],
|
|
extrapolate: true,
|
|
});
|
|
|
|
expect(interpolation(-5)).toBe(-2.5);
|
|
expect(interpolation(0)).toBe(0);
|
|
expect(interpolation(5)).toBe(2.5);
|
|
expect(interpolation(10)).toBe(5);
|
|
expect(interpolation(50)).toBe(25);
|
|
expect(interpolation(100)).toBe(50);
|
|
expect(interpolation(500)).toBe(250);
|
|
expect(interpolation(1000)).toBe(500);
|
|
expect(interpolation(2000)).toBe(1000);
|
|
});
|
|
|
|
it('should work with keyframes without extrapolate', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1, 2],
|
|
outputRange: [0.2, 1, 0.2],
|
|
extrapolate: 'clamp',
|
|
});
|
|
|
|
expect(interpolation(5)).toBeCloseTo(0.2);
|
|
});
|
|
|
|
it('should throw for an infinite input range', () => {
|
|
expect(
|
|
() =>
|
|
new AnimatedInterpolation(null, {
|
|
inputRange: [-Infinity, Infinity],
|
|
outputRange: [0, 1],
|
|
}),
|
|
).toThrow();
|
|
|
|
expect(
|
|
() =>
|
|
new AnimatedInterpolation(null, {
|
|
inputRange: [-Infinity, 0, Infinity],
|
|
outputRange: [1, 2, 3],
|
|
}),
|
|
).not.toThrow();
|
|
});
|
|
|
|
it('should work with negative infinite', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [-Infinity, 0],
|
|
outputRange: [-Infinity, 0],
|
|
easing: Easing.quad,
|
|
extrapolate: 'identity',
|
|
});
|
|
|
|
expect(interpolation(-Infinity)).toBe(-Infinity);
|
|
expect(interpolation(-100)).toBeCloseTo(-10000);
|
|
expect(interpolation(-10)).toBeCloseTo(-100);
|
|
expect(interpolation(0)).toBeCloseTo(0);
|
|
expect(interpolation(1)).toBeCloseTo(1);
|
|
expect(interpolation(100)).toBeCloseTo(100);
|
|
});
|
|
|
|
it('should work with positive infinite', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [5, Infinity],
|
|
outputRange: [5, Infinity],
|
|
easing: Easing.quad,
|
|
extrapolate: 'identity',
|
|
});
|
|
|
|
expect(interpolation(-100)).toBeCloseTo(-100);
|
|
expect(interpolation(-10)).toBeCloseTo(-10);
|
|
expect(interpolation(0)).toBeCloseTo(0);
|
|
expect(interpolation(5)).toBeCloseTo(5);
|
|
expect(interpolation(6)).toBeCloseTo(5 + 1);
|
|
expect(interpolation(10)).toBeCloseTo(5 + 25);
|
|
expect(interpolation(100)).toBeCloseTo(5 + 95 * 95);
|
|
expect(interpolation(Infinity)).toBe(Infinity);
|
|
});
|
|
|
|
it('should work with output ranges as string', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['rgba(0, 100, 200, 0)', 'rgba(50, 150, 250, 0.4)'],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe('rgba(0, 100, 200, 0)');
|
|
expect(interpolation(0.5)).toBe('rgba(25, 125, 225, 0.2)');
|
|
expect(interpolation(1)).toBe('rgba(50, 150, 250, 0.4)');
|
|
});
|
|
|
|
it('should work with output ranges as short hex string', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['#024', '#9BF'],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe('rgba(0, 34, 68, 1)');
|
|
expect(interpolation(0.5)).toBe('rgba(77, 111, 162, 1)');
|
|
expect(interpolation(1)).toBe('rgba(153, 187, 255, 1)');
|
|
});
|
|
|
|
it('should work with output ranges as long hex string', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['#FF9500', '#87FC70'],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe('rgba(255, 149, 0, 1)');
|
|
expect(interpolation(0.5)).toBe('rgba(195, 201, 56, 1)');
|
|
expect(interpolation(1)).toBe('rgba(135, 252, 112, 1)');
|
|
});
|
|
|
|
it('should work with output ranges with mixed hex and rgba strings', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['rgba(100, 120, 140, .4)', '#87FC70'],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe('rgba(100, 120, 140, 0.4)');
|
|
expect(interpolation(0.5)).toBe('rgba(118, 186, 126, 0.7)');
|
|
expect(interpolation(1)).toBe('rgba(135, 252, 112, 1)');
|
|
});
|
|
|
|
it('should work with negative and decimal values in string ranges', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['-100.5deg', '100deg'],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe('-100.5deg');
|
|
expect(interpolation(0.5)).toBe('-0.25deg');
|
|
expect(interpolation(1)).toBe('100deg');
|
|
});
|
|
|
|
it('should crash when chaining an interpolation that returns a string', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: [0, 1],
|
|
});
|
|
expect(() => {
|
|
interpolation('45rad');
|
|
}).toThrow();
|
|
});
|
|
|
|
it('should support a mix of color patterns', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1, 2],
|
|
outputRange: ['rgba(0, 100, 200, 0)', 'rgb(50, 150, 250)', 'red'],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe('rgba(0, 100, 200, 0)');
|
|
expect(interpolation(0.5)).toBe('rgba(25, 125, 225, 0.5)');
|
|
expect(interpolation(1.5)).toBe('rgba(153, 75, 125, 1)');
|
|
expect(interpolation(2)).toBe('rgba(255, 0, 0, 1)');
|
|
});
|
|
|
|
it('should crash when defining output range with different pattern', () => {
|
|
expect(() =>
|
|
createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['20deg', '30rad'],
|
|
}),
|
|
).toThrow();
|
|
});
|
|
|
|
it('should interpolate values with arbitrary suffixes', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['-10foo', '10foo'],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe('-10foo');
|
|
expect(interpolation(0.5)).toBe('0foo');
|
|
});
|
|
|
|
it('should interpolate numeric values of arbitrary format', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['M20,20L20,80L80,80L80,20Z', 'M40,40L33,60L60,60L65,40Z'],
|
|
});
|
|
|
|
expect(interpolation(0)).toBe('M20,20L20,80L80,80L80,20Z');
|
|
expect(interpolation(0.5)).toBe('M30,30L26.5,70L70,70L72.5,30Z');
|
|
});
|
|
|
|
it('should round the alpha channel of a color to the nearest thousandth', () => {
|
|
const interpolation = createInterpolation({
|
|
inputRange: [0, 1],
|
|
outputRange: ['rgba(0, 0, 0, 0)', 'rgba(0, 0, 0, 1)'],
|
|
});
|
|
|
|
expect(interpolation(1e-12)).toBe('rgba(0, 0, 0, 0)');
|
|
expect(interpolation(2 / 3)).toBe('rgba(0, 0, 0, 0.667)');
|
|
});
|
|
});
|