mirror of
https://github.com/status-im/react-native.git
synced 2025-02-12 01:16:46 +00:00
- [ReactNative] Revert D1965911 | Christopher Chedeau - [ReactNative] Remove experimental Portal only needed for android right now. | Spencer Ahrens - [ReactNative] rename Animation to AnimationExperimental with warning docs | Spencer Ahrens - navigator.getCurrentRoutes() | Eric Vicenti - Fixing jsdoc parsing of functions that are defined over multiple lines (Fixes #410) | Christopher Chedeau - Added constraint of child type to touchablewithoutfeedback | Christopher Chedeau - [react-packager] Deprecate global image namespace in favor of CommonJS resolution | Amjad Masad - [react-packager] Don't cache rejected promise | Amjad Masad - [ReactNative] Start Navigator gesture config, disable gesture in AdsManager | Eric Vicenti - [Flow] Clean react-native-github for Flow v0.8.0 | Gabe Levi - add maximumValue and minimumValue as valid attributes for native Slider | Christopher Chedeau - react-packager: Add ES6 import statement support to DependencyGraph. | Amjad Masad - Remove false annotation | Christopher Chedeau - [madman] prevent pulling the content down inconsistently when the keyboard shows up | Kevin Gozali - add @flow back to View.js | Basil Hosmer - [ReactNative] Turn of lint warning for constant conditions | Eric Vicenti - [UIExplorer] Fixed 'Push View Example' in NavigatorIOS example | Christopher Chedeau - SliderIOS.js comments - grammar correction | Christopher Chedeau
59 lines
1.7 KiB
JavaScript
59 lines
1.7 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule AnimationExperimentalMixin
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var AnimationUtils = require('AnimationUtils');
|
|
var RCTAnimationManager = require('NativeModules').AnimationExperimentalManager;
|
|
|
|
var invariant = require('invariant');
|
|
|
|
type EasingFunction = (t: number) => number;
|
|
|
|
/**
|
|
* This is an experimental module that is under development, incomplete,
|
|
* potentially buggy, not used in any production apps, and will probably change
|
|
* in non-backward compatible ways.
|
|
*
|
|
* Use at your own risk.
|
|
*/
|
|
var AnimationExperimentalMixin = {
|
|
getInitialState: function(): Object {
|
|
return {};
|
|
},
|
|
|
|
startAnimation: function(
|
|
refKey: string,
|
|
duration: number,
|
|
delay: number,
|
|
easing: (string | EasingFunction),
|
|
properties: {[key: string]: any}
|
|
): number {
|
|
var ref = this.refs[refKey];
|
|
invariant(
|
|
ref,
|
|
'Invalid refKey ' + refKey + '; ' +
|
|
'valid refs: ' + JSON.stringify(Object.keys(this.refs))
|
|
);
|
|
|
|
var nodeHandle = +ref.getNodeHandle();
|
|
var easingSample = AnimationUtils.evaluateEasingFunction(duration, easing);
|
|
var tag: number = RCTAnimationManager.startAnimation(nodeHandle, AnimationUtils.allocateTag(), duration, delay, easingSample, properties);
|
|
return tag;
|
|
},
|
|
|
|
stopAnimation: function(tag: number) {
|
|
RCTAnimationManager.stopAnimation(tag);
|
|
},
|
|
};
|
|
|
|
module.exports = AnimationExperimentalMixin;
|