react-native-macos/Libraries/LayoutAnimation/LayoutAnimation.js

141 строка
3.2 KiB
JavaScript
Исходник Обычный вид История

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
2015-03-25 05:34:12 +03:00
* @flow
* @format
*/
'use strict';
import Platform from 'Platform';
const UIManager = require('UIManager');
type Type =
| 'spring'
| 'linear'
| 'easeInEaseOut'
| 'easeIn'
| 'easeOut'
| 'keyboard';
type Property = 'opacity' | 'scaleX' | 'scaleY' | 'scaleXY';
type AnimationConfig = $ReadOnly<{|
duration?: number,
delay?: number,
springDamping?: number,
initialVelocity?: number,
type?: Type,
property?: Property,
|}>;
type LayoutAnimationConfig = $ReadOnly<{|
duration: number,
create?: AnimationConfig,
update?: AnimationConfig,
delete?: AnimationConfig,
|}>;
2015-03-25 05:34:12 +03:00
function configureNext(
config: LayoutAnimationConfig,
onAnimationDidEnd?: Function,
) {
if (!Platform.isTesting) {
UIManager.configureNextLayoutAnimation(
config,
onAnimationDidEnd ?? function() {},
function() {} /* unused onError */,
);
}
2015-03-25 05:34:12 +03:00
}
function create(
duration: number,
type: Type,
property: Property,
): LayoutAnimationConfig {
2015-03-25 05:34:12 +03:00
return {
duration,
create: {type, property},
update: {type},
delete: {type, property},
2015-03-25 05:34:12 +03:00
};
}
const Presets = {
easeInEaseOut: create(300, 'easeInEaseOut', 'opacity'),
linear: create(500, 'linear', 'opacity'),
[ReactNative] Animated infra - ValueXY, addListener, fixes, etc Summary: This is most of the infra necessary for the gratuitous animation demo app. I originally had things more split up, but it was just confusing because everything is so interlinked and dependent, so lower diffs would have code that wasn't even going to survive (and thus not useful to review), so I merged it all here. - `Animated.event` now supports mapping to multiple arguments (needed for `onPanResponderMove` events which provide the `gestureState` as the second arg. - Vectors: new `Animated.ValueXY` class which composes two `Animated.Value`s for convenience/brevity - Listeners: values and events can be listened to in order to trigger state updates based on their values. Intended to work as async updates from native that might lag behind truth. - Offsets: a common pattern with pan and other gestures is to track where you left off. This is easily encoded in the Value directly with `setOffset(offset)`, typically used on grant, and can be flattened back into the base value and reset with `flattenOffset()`, typically called on release. - Tracking: supports `Animated.Value/ValueXY` for `toValue` with all animations, enabling linking multiple values together with some curve or physics. `Animated.timing` can be used with `duration: 0` to rigidly link the values with no lag, or `Animated.spring` can be used to link them like chat heads. - `Animated.Image` as a default export. - Various cleanup, bug, flow and lint fixes.
2015-07-07 23:33:51 +03:00
spring: {
duration: 700,
create: {
type: 'linear',
property: 'opacity',
[ReactNative] Animated infra - ValueXY, addListener, fixes, etc Summary: This is most of the infra necessary for the gratuitous animation demo app. I originally had things more split up, but it was just confusing because everything is so interlinked and dependent, so lower diffs would have code that wasn't even going to survive (and thus not useful to review), so I merged it all here. - `Animated.event` now supports mapping to multiple arguments (needed for `onPanResponderMove` events which provide the `gestureState` as the second arg. - Vectors: new `Animated.ValueXY` class which composes two `Animated.Value`s for convenience/brevity - Listeners: values and events can be listened to in order to trigger state updates based on their values. Intended to work as async updates from native that might lag behind truth. - Offsets: a common pattern with pan and other gestures is to track where you left off. This is easily encoded in the Value directly with `setOffset(offset)`, typically used on grant, and can be flattened back into the base value and reset with `flattenOffset()`, typically called on release. - Tracking: supports `Animated.Value/ValueXY` for `toValue` with all animations, enabling linking multiple values together with some curve or physics. `Animated.timing` can be used with `duration: 0` to rigidly link the values with no lag, or `Animated.spring` can be used to link them like chat heads. - `Animated.Image` as a default export. - Various cleanup, bug, flow and lint fixes.
2015-07-07 23:33:51 +03:00
},
update: {
type: 'spring',
[ReactNative] Animated infra - ValueXY, addListener, fixes, etc Summary: This is most of the infra necessary for the gratuitous animation demo app. I originally had things more split up, but it was just confusing because everything is so interlinked and dependent, so lower diffs would have code that wasn't even going to survive (and thus not useful to review), so I merged it all here. - `Animated.event` now supports mapping to multiple arguments (needed for `onPanResponderMove` events which provide the `gestureState` as the second arg. - Vectors: new `Animated.ValueXY` class which composes two `Animated.Value`s for convenience/brevity - Listeners: values and events can be listened to in order to trigger state updates based on their values. Intended to work as async updates from native that might lag behind truth. - Offsets: a common pattern with pan and other gestures is to track where you left off. This is easily encoded in the Value directly with `setOffset(offset)`, typically used on grant, and can be flattened back into the base value and reset with `flattenOffset()`, typically called on release. - Tracking: supports `Animated.Value/ValueXY` for `toValue` with all animations, enabling linking multiple values together with some curve or physics. `Animated.timing` can be used with `duration: 0` to rigidly link the values with no lag, or `Animated.spring` can be used to link them like chat heads. - `Animated.Image` as a default export. - Various cleanup, bug, flow and lint fixes.
2015-07-07 23:33:51 +03:00
springDamping: 0.4,
},
delete: {
type: 'linear',
property: 'opacity',
},
[ReactNative] Animated infra - ValueXY, addListener, fixes, etc Summary: This is most of the infra necessary for the gratuitous animation demo app. I originally had things more split up, but it was just confusing because everything is so interlinked and dependent, so lower diffs would have code that wasn't even going to survive (and thus not useful to review), so I merged it all here. - `Animated.event` now supports mapping to multiple arguments (needed for `onPanResponderMove` events which provide the `gestureState` as the second arg. - Vectors: new `Animated.ValueXY` class which composes two `Animated.Value`s for convenience/brevity - Listeners: values and events can be listened to in order to trigger state updates based on their values. Intended to work as async updates from native that might lag behind truth. - Offsets: a common pattern with pan and other gestures is to track where you left off. This is easily encoded in the Value directly with `setOffset(offset)`, typically used on grant, and can be flattened back into the base value and reset with `flattenOffset()`, typically called on release. - Tracking: supports `Animated.Value/ValueXY` for `toValue` with all animations, enabling linking multiple values together with some curve or physics. `Animated.timing` can be used with `duration: 0` to rigidly link the values with no lag, or `Animated.spring` can be used to link them like chat heads. - `Animated.Image` as a default export. - Various cleanup, bug, flow and lint fixes.
2015-07-07 23:33:51 +03:00
},
};
/**
* Automatically animates views to their new positions when the
* next layout happens.
*
* A common way to use this API is to call it before calling `setState`.
*
* Note that in order to get this to work on **Android** you need to set the following flags via `UIManager`:
*
* UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
*/
const LayoutAnimation = {
/**
* Schedules an animation to happen on the next layout.
*
* @param config Specifies animation properties:
*
* - `duration` in milliseconds
* - `create`, `AnimationConfig` for animating in new views
* - `update`, `AnimationConfig` for animating views that have been updated
*
* @param onAnimationDidEnd Called when the animation finished.
* Only supported on iOS.
* @param onError Called on error. Only supported on iOS.
*/
2015-03-25 05:34:12 +03:00
configureNext,
/**
* Helper for creating a config for `configureNext`.
*/
2015-03-25 05:34:12 +03:00
create,
Types: Object.freeze({
spring: 'spring',
linear: 'linear',
easeInEaseOut: 'easeInEaseOut',
easeIn: 'easeIn',
easeOut: 'easeOut',
keyboard: 'keyboard',
}),
Properties: Object.freeze({
opacity: 'opacity',
scaleX: 'scaleX',
scaleY: 'scaleY',
scaleXY: 'scaleXY',
}),
checkConfig(...args: Array<mixed>) {
console.error('LayoutAnimation.checkConfig(...) has been disabled.');
},
[ReactNative] Animated infra - ValueXY, addListener, fixes, etc Summary: This is most of the infra necessary for the gratuitous animation demo app. I originally had things more split up, but it was just confusing because everything is so interlinked and dependent, so lower diffs would have code that wasn't even going to survive (and thus not useful to review), so I merged it all here. - `Animated.event` now supports mapping to multiple arguments (needed for `onPanResponderMove` events which provide the `gestureState` as the second arg. - Vectors: new `Animated.ValueXY` class which composes two `Animated.Value`s for convenience/brevity - Listeners: values and events can be listened to in order to trigger state updates based on their values. Intended to work as async updates from native that might lag behind truth. - Offsets: a common pattern with pan and other gestures is to track where you left off. This is easily encoded in the Value directly with `setOffset(offset)`, typically used on grant, and can be flattened back into the base value and reset with `flattenOffset()`, typically called on release. - Tracking: supports `Animated.Value/ValueXY` for `toValue` with all animations, enabling linking multiple values together with some curve or physics. `Animated.timing` can be used with `duration: 0` to rigidly link the values with no lag, or `Animated.spring` can be used to link them like chat heads. - `Animated.Image` as a default export. - Various cleanup, bug, flow and lint fixes.
2015-07-07 23:33:51 +03:00
Presets,
easeInEaseOut: configureNext.bind(null, Presets.easeInEaseOut),
linear: configureNext.bind(null, Presets.linear),
spring: configureNext.bind(null, Presets.spring),
};
module.exports = LayoutAnimation;