2016-06-09 17:34:41 +00:00
|
|
|
/**
|
2017-05-06 03:50:47 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
2016-06-09 17:34:41 +00:00
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-06-09 17:34:41 +00:00
|
|
|
*
|
2018-05-11 20:32:37 +00:00
|
|
|
* @format
|
2016-06-09 17:34:41 +00:00
|
|
|
* @flow
|
|
|
|
*/
|
2018-05-11 20:32:37 +00:00
|
|
|
|
2016-06-09 17:34:41 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-08-04 20:11:37 +00:00
|
|
|
const React = require('react');
|
|
|
|
const ReactNative = require('react-native');
|
|
|
|
const {
|
2016-06-09 17:34:41 +00:00
|
|
|
View,
|
|
|
|
Text,
|
|
|
|
Animated,
|
|
|
|
StyleSheet,
|
|
|
|
TouchableWithoutFeedback,
|
2017-01-27 02:14:40 +00:00
|
|
|
Slider,
|
2016-06-09 17:34:41 +00:00
|
|
|
} = ReactNative;
|
|
|
|
|
2017-01-27 02:14:40 +00:00
|
|
|
var AnimatedSlider = Animated.createAnimatedComponent(Slider);
|
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class Tester extends React.Component<$FlowFixMeProps, $FlowFixMeState> {
|
2016-07-26 08:00:02 +00:00
|
|
|
state = {
|
|
|
|
native: new Animated.Value(0),
|
|
|
|
js: new Animated.Value(0),
|
|
|
|
};
|
|
|
|
|
|
|
|
current = 0;
|
2016-06-09 17:34:41 +00:00
|
|
|
|
2016-07-26 08:00:02 +00:00
|
|
|
onPress = () => {
|
2018-05-11 20:32:37 +00:00
|
|
|
const animConfig =
|
|
|
|
this.current && this.props.reverseConfig
|
|
|
|
? this.props.reverseConfig
|
|
|
|
: this.props.config;
|
2016-06-09 17:34:41 +00:00
|
|
|
this.current = this.current ? 0 : 1;
|
2017-04-05 17:16:30 +00:00
|
|
|
const config: Object = {
|
2016-08-19 14:06:29 +00:00
|
|
|
...animConfig,
|
2016-06-09 17:34:41 +00:00
|
|
|
toValue: this.current,
|
|
|
|
};
|
2016-08-04 20:11:37 +00:00
|
|
|
|
2017-05-26 10:24:29 +00:00
|
|
|
Animated[this.props.type](this.state.native, {
|
|
|
|
...config,
|
|
|
|
useNativeDriver: true,
|
|
|
|
}).start();
|
|
|
|
Animated[this.props.type](this.state.js, {
|
|
|
|
...config,
|
|
|
|
useNativeDriver: false,
|
|
|
|
}).start();
|
2016-07-26 08:00:02 +00:00
|
|
|
};
|
2016-06-09 17:34:41 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<TouchableWithoutFeedback onPress={this.onPress}>
|
|
|
|
<View>
|
|
|
|
<View>
|
|
|
|
<Text>Native:</Text>
|
|
|
|
</View>
|
|
|
|
<View style={styles.row}>
|
|
|
|
{this.props.children(this.state.native)}
|
|
|
|
</View>
|
|
|
|
<View>
|
|
|
|
<Text>JavaScript:</Text>
|
|
|
|
</View>
|
2018-05-11 20:32:37 +00:00
|
|
|
<View style={styles.row}>{this.props.children(this.state.js)}</View>
|
2016-06-09 17:34:41 +00:00
|
|
|
</View>
|
|
|
|
</TouchableWithoutFeedback>
|
|
|
|
);
|
2016-07-26 08:00:02 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-09 17:34:41 +00:00
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class ValueListenerExample extends React.Component<{}, $FlowFixMeState> {
|
2016-08-04 20:11:37 +00:00
|
|
|
state = {
|
|
|
|
anim: new Animated.Value(0),
|
|
|
|
progress: 0,
|
|
|
|
};
|
|
|
|
_current = 0;
|
|
|
|
|
|
|
|
componentDidMount() {
|
2017-05-26 10:24:29 +00:00
|
|
|
this.state.anim.addListener(e => this.setState({progress: e.value}));
|
2016-08-04 20:11:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.state.anim.removeAllListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
_onPress = () => {
|
|
|
|
this._current = this._current ? 0 : 1;
|
|
|
|
const config = {
|
|
|
|
duration: 1000,
|
|
|
|
toValue: this._current,
|
|
|
|
};
|
|
|
|
|
2017-05-26 10:24:29 +00:00
|
|
|
Animated.timing(this.state.anim, {
|
|
|
|
...config,
|
|
|
|
useNativeDriver: true,
|
|
|
|
}).start();
|
2016-08-04 20:11:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<TouchableWithoutFeedback onPress={this._onPress}>
|
|
|
|
<View>
|
|
|
|
<View style={styles.row}>
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
opacity: this.state.anim,
|
2017-05-26 10:24:29 +00:00
|
|
|
},
|
2016-08-04 20:11:37 +00:00
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
<Text>Value: {this.state.progress}</Text>
|
|
|
|
</View>
|
|
|
|
</TouchableWithoutFeedback>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class LoopExample extends React.Component<{}, $FlowFixMeState> {
|
2017-05-26 10:24:29 +00:00
|
|
|
state = {
|
|
|
|
value: new Animated.Value(0),
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
Animated.loop(
|
|
|
|
Animated.timing(this.state.value, {
|
|
|
|
toValue: 1,
|
|
|
|
duration: 5000,
|
|
|
|
useNativeDriver: true,
|
|
|
|
}),
|
|
|
|
).start();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View style={styles.row}>
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
opacity: this.state.value.interpolate({
|
|
|
|
inputRange: [0, 0.5, 1],
|
|
|
|
outputRange: [0, 1, 0],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-06 03:50:47 +00:00
|
|
|
const RNTesterSettingSwitchRow = require('RNTesterSettingSwitchRow');
|
2018-05-11 20:32:37 +00:00
|
|
|
class InternalSettings extends React.Component<
|
|
|
|
{},
|
|
|
|
{busyTime: number | string, filteredStall: number},
|
|
|
|
> {
|
2016-09-07 02:45:08 +00:00
|
|
|
_stallInterval: ?number;
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View>
|
2017-05-06 03:50:47 +00:00
|
|
|
<RNTesterSettingSwitchRow
|
2016-09-07 02:45:08 +00:00
|
|
|
initialValue={false}
|
|
|
|
label="Force JS Stalls"
|
|
|
|
onEnable={() => {
|
2018-01-08 20:45:38 +00:00
|
|
|
/* $FlowFixMe(>=0.63.0 site=react_native_fb) This comment
|
|
|
|
* suppresses an error found when Flow v0.63 was deployed. To see
|
|
|
|
* the error delete this comment and run Flow. */
|
2016-09-07 02:45:08 +00:00
|
|
|
this._stallInterval = setInterval(() => {
|
|
|
|
const start = Date.now();
|
|
|
|
console.warn('burn CPU');
|
2018-05-11 20:32:37 +00:00
|
|
|
while (Date.now() - start < 100) {}
|
2016-09-07 02:45:08 +00:00
|
|
|
}, 300);
|
|
|
|
}}
|
|
|
|
onDisable={() => {
|
2018-01-08 20:45:38 +00:00
|
|
|
/* $FlowFixMe(>=0.63.0 site=react_native_fb) This comment
|
|
|
|
* suppresses an error found when Flow v0.63 was deployed. To see
|
|
|
|
* the error delete this comment and run Flow. */
|
2016-09-07 02:45:08 +00:00
|
|
|
clearInterval(this._stallInterval || 0);
|
|
|
|
}}
|
|
|
|
/>
|
2017-05-06 03:50:47 +00:00
|
|
|
<RNTesterSettingSwitchRow
|
2016-09-07 02:45:08 +00:00
|
|
|
initialValue={false}
|
|
|
|
label="Track JS Stalls"
|
|
|
|
onEnable={() => {
|
|
|
|
require('JSEventLoopWatchdog').install({thresholdMS: 25});
|
|
|
|
this.setState({busyTime: '<none>'});
|
|
|
|
require('JSEventLoopWatchdog').addHandler({
|
2017-05-26 10:24:29 +00:00
|
|
|
onStall: ({busyTime}) =>
|
|
|
|
this.setState(state => ({
|
|
|
|
busyTime,
|
2018-05-11 20:32:37 +00:00
|
|
|
filteredStall:
|
|
|
|
(state.filteredStall || 0) * 0.97 + busyTime * 0.03,
|
2017-05-26 10:24:29 +00:00
|
|
|
})),
|
2016-09-07 02:45:08 +00:00
|
|
|
});
|
|
|
|
}}
|
|
|
|
onDisable={() => {
|
|
|
|
console.warn('Cannot disable yet....');
|
|
|
|
}}
|
|
|
|
/>
|
2018-05-11 20:32:37 +00:00
|
|
|
{this.state && (
|
2017-05-26 10:24:29 +00:00
|
|
|
<Text>
|
|
|
|
{`JS Stall filtered: ${Math.round(this.state.filteredStall)}, `}
|
|
|
|
{`last: ${this.state.busyTime}`}
|
2018-05-11 20:32:37 +00:00
|
|
|
</Text>
|
|
|
|
)}
|
2016-09-07 02:45:08 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-18 01:36:54 +00:00
|
|
|
class EventExample extends React.Component<{}, $FlowFixMeState> {
|
2016-09-19 11:07:36 +00:00
|
|
|
state = {
|
|
|
|
scrollX: new Animated.Value(0),
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const opacity = this.state.scrollX.interpolate({
|
|
|
|
inputRange: [0, 200],
|
|
|
|
outputRange: [1, 0],
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<View>
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
opacity,
|
2017-05-26 10:24:29 +00:00
|
|
|
},
|
2016-09-19 11:07:36 +00:00
|
|
|
]}
|
|
|
|
/>
|
|
|
|
<Animated.ScrollView
|
|
|
|
horizontal
|
2017-05-26 10:24:29 +00:00
|
|
|
style={{height: 100, marginTop: 16}}
|
2016-11-01 10:56:50 +00:00
|
|
|
scrollEventThrottle={16}
|
2017-05-26 10:24:29 +00:00
|
|
|
onScroll={Animated.event(
|
|
|
|
[{nativeEvent: {contentOffset: {x: this.state.scrollX}}}],
|
|
|
|
{useNativeDriver: true},
|
|
|
|
)}>
|
|
|
|
<View
|
|
|
|
style={{
|
|
|
|
width: 600,
|
|
|
|
backgroundColor: '#eee',
|
|
|
|
justifyContent: 'center',
|
|
|
|
}}>
|
2016-09-19 11:07:36 +00:00
|
|
|
<Text>Scroll me!</Text>
|
|
|
|
</View>
|
|
|
|
</Animated.ScrollView>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-11 20:32:37 +00:00
|
|
|
class TrackingExample extends React.Component<
|
|
|
|
$FlowFixMeProps,
|
|
|
|
$FlowFixMeState,
|
|
|
|
> {
|
2018-02-16 19:43:34 +00:00
|
|
|
state = {
|
|
|
|
native: new Animated.Value(0),
|
|
|
|
toNative: new Animated.Value(0),
|
|
|
|
js: new Animated.Value(0),
|
|
|
|
toJS: new Animated.Value(0),
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
// we configure spring to take a bit of time to settle so that the user
|
|
|
|
// have time to click many times and see "toValue" getting updated and
|
|
|
|
const longSettlingSpring = {
|
|
|
|
tension: 20,
|
|
|
|
friction: 0.5,
|
|
|
|
};
|
|
|
|
Animated.spring(this.state.native, {
|
|
|
|
...longSettlingSpring,
|
|
|
|
toValue: this.state.toNative,
|
|
|
|
useNativeDriver: true,
|
|
|
|
}).start();
|
|
|
|
Animated.spring(this.state.js, {
|
|
|
|
...longSettlingSpring,
|
|
|
|
toValue: this.state.toJS,
|
|
|
|
useNativeDriver: false,
|
|
|
|
}).start();
|
|
|
|
}
|
|
|
|
|
|
|
|
onPress = () => {
|
|
|
|
// select next value to be tracked by random
|
|
|
|
const nextValue = Math.random() * 200;
|
|
|
|
this.state.toNative.setValue(nextValue);
|
|
|
|
this.state.toJS.setValue(nextValue);
|
|
|
|
};
|
|
|
|
|
|
|
|
renderBlock = (anim, dest) => [
|
2018-05-11 20:32:37 +00:00
|
|
|
<Animated.View
|
|
|
|
key="line"
|
|
|
|
style={[styles.line, {transform: [{translateX: dest}]}]}
|
|
|
|
/>,
|
|
|
|
<Animated.View
|
|
|
|
key="block"
|
|
|
|
style={[styles.block, {transform: [{translateX: anim}]}]}
|
|
|
|
/>,
|
|
|
|
];
|
2018-02-16 19:43:34 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<TouchableWithoutFeedback onPress={this.onPress}>
|
|
|
|
<View>
|
|
|
|
<View>
|
|
|
|
<Text>Native:</Text>
|
|
|
|
</View>
|
|
|
|
<View style={styles.row}>
|
|
|
|
{this.renderBlock(this.state.native, this.state.toNative)}
|
|
|
|
</View>
|
|
|
|
<View>
|
|
|
|
<Text>JavaScript:</Text>
|
|
|
|
</View>
|
|
|
|
<View style={styles.row}>
|
|
|
|
{this.renderBlock(this.state.js, this.state.toJS)}
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
</TouchableWithoutFeedback>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-09 17:34:41 +00:00
|
|
|
const styles = StyleSheet.create({
|
|
|
|
row: {
|
|
|
|
padding: 10,
|
|
|
|
zIndex: 1,
|
|
|
|
},
|
|
|
|
block: {
|
|
|
|
width: 50,
|
|
|
|
height: 50,
|
|
|
|
backgroundColor: 'blue',
|
|
|
|
},
|
2018-02-16 19:43:34 +00:00
|
|
|
line: {
|
|
|
|
position: 'absolute',
|
|
|
|
left: 35,
|
|
|
|
top: 0,
|
|
|
|
bottom: 0,
|
|
|
|
width: 1,
|
|
|
|
backgroundColor: 'red',
|
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
exports.framework = 'React';
|
|
|
|
exports.title = 'Native Animated Example';
|
|
|
|
exports.description = 'Test out Native Animations';
|
|
|
|
|
|
|
|
exports.examples = [
|
2017-05-26 10:24:29 +00:00
|
|
|
{
|
2016-06-09 17:34:41 +00:00
|
|
|
title: 'Multistage With Multiply and rotation',
|
|
|
|
render: function() {
|
|
|
|
return (
|
2017-05-26 10:24:29 +00:00
|
|
|
<Tester type="timing" config={{duration: 1000}}>
|
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
transform: [
|
|
|
|
{
|
|
|
|
translateX: anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0, 200],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
translateY: anim.interpolate({
|
|
|
|
inputRange: [0, 0.5, 1],
|
|
|
|
outputRange: [0, 50, 0],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
rotate: anim.interpolate({
|
|
|
|
inputRange: [0, 0.5, 1],
|
|
|
|
outputRange: ['0deg', '90deg', '0deg'],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
opacity: Animated.multiply(
|
|
|
|
anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [1, 0],
|
|
|
|
}),
|
|
|
|
anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0.25, 1],
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
2016-06-09 17:34:41 +00:00
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Multistage With Multiply',
|
|
|
|
render: function() {
|
|
|
|
return (
|
2017-05-26 10:24:29 +00:00
|
|
|
<Tester type="timing" config={{duration: 1000}}>
|
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
transform: [
|
|
|
|
{
|
|
|
|
translateX: anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0, 200],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
translateY: anim.interpolate({
|
|
|
|
inputRange: [0, 0.5, 1],
|
|
|
|
outputRange: [0, 50, 0],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
opacity: Animated.multiply(
|
|
|
|
anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [1, 0],
|
|
|
|
}),
|
|
|
|
anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0.25, 1],
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
2016-06-09 17:34:41 +00:00
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
2018-03-31 03:57:42 +00:00
|
|
|
{
|
|
|
|
title: 'Multistage With Subtract',
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<Tester type="timing" config={{duration: 1000}}>
|
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
transform: [
|
|
|
|
{
|
|
|
|
translateX: anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0, 200],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
translateY: anim.interpolate({
|
|
|
|
inputRange: [0, 0.5, 1],
|
|
|
|
outputRange: [0, 50, 0],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
opacity: Animated.subtract(
|
|
|
|
anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [1, 1],
|
|
|
|
}),
|
|
|
|
anim.interpolate({
|
|
|
|
inputRange: [0, 0.5, 1],
|
|
|
|
outputRange: [0, 0.5, 0],
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
{
|
2016-10-20 21:12:37 +00:00
|
|
|
title: 'Scale interpolation with clamping',
|
2016-06-09 17:34:41 +00:00
|
|
|
render: function() {
|
|
|
|
return (
|
2017-05-26 10:24:29 +00:00
|
|
|
<Tester type="timing" config={{duration: 1000}}>
|
2016-06-09 17:34:41 +00:00
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
transform: [
|
|
|
|
{
|
|
|
|
scale: anim.interpolate({
|
2016-10-20 21:12:37 +00:00
|
|
|
inputRange: [0, 0.5],
|
2016-06-09 17:34:41 +00:00
|
|
|
outputRange: [1, 1.4],
|
2016-10-20 21:12:37 +00:00
|
|
|
extrapolateRight: 'clamp',
|
2017-05-26 10:24:29 +00:00
|
|
|
}),
|
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
],
|
2017-05-26 10:24:29 +00:00
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2017-03-28 16:08:49 +00:00
|
|
|
title: 'Opacity with delay',
|
2016-06-09 17:34:41 +00:00
|
|
|
render: function() {
|
|
|
|
return (
|
2017-05-26 10:24:29 +00:00
|
|
|
<Tester type="timing" config={{duration: 1000, delay: 1000}}>
|
2016-06-09 17:34:41 +00:00
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
2017-05-26 10:24:29 +00:00
|
|
|
opacity: anim,
|
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Rotate interpolation',
|
|
|
|
render: function() {
|
|
|
|
return (
|
2017-05-26 10:24:29 +00:00
|
|
|
<Tester type="timing" config={{duration: 1000}}>
|
2016-06-09 17:34:41 +00:00
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
transform: [
|
|
|
|
{
|
|
|
|
rotate: anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: ['0deg', '90deg'],
|
2017-05-26 10:24:29 +00:00
|
|
|
}),
|
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
],
|
2017-05-26 10:24:29 +00:00
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
Add closed-form damped harmonic oscillator algorithm to Animated.spring
Summary:
As I was working on mimicking iOS animations for my ongoing work with `react-navigation`, one task I had was to match the "push from right" animation that is common in UINavigationController.
I was able to grab the exact animation values for this animation with some LLDB magic, and found that the screen is animated using a `CASpringAnimation` with the parameters:
- stiffness: 1000
- damping: 500
- mass: 3
After spending a considerable amount of time attempting to replicate the spring created with these values by CASpringAnimation by specifying values for tension and friction in the current `Animated.spring` implementation, I was unable to come up with mathematically equivalent values that could replicate the spring _exactly_.
After doing some research, I ended up disassembling the QuartzCore framework, reading the assembly, and determined that Apple's implementation of `CASpringAnimation` does not use an integrated, numerical animation model as we do in Animated.spring, but instead solved for the closed form of the equations that govern damped harmonic oscillation (the differential equations themselves are [here](https://en.wikipedia.org/wiki/Harmonic_oscillator#Damped_harmonic_oscillator), and a paper describing the math to arrive at the closed-form solution to the second-order ODE that describes the DHO is [here](http://planetmath.org/sites/default/files/texpdf/39745.pdf)).
Though we can get the currently implemented RK4 integration close by tweaking some values, it is, the current model is at it's core, an approximation. It seemed that if I wanted to implement the `CASpringAnimation` behavior _exactly_, I needed to implement the analytical model (as is implemented in `CASpringAnimation`) in `Animated`.
We add three new optional parameters to `Animated.spring` (to both the JS and native implementations):
- `stiffness`, a value describing the spring's stiffness coefficient
- `damping`, a value defining how the spring's motion should be damped due to the forces of friction (technically called the _viscous damping coefficient_).
- `mass`, a value describing the mass of the object attached to the end of the simulated spring
Just like if a developer were to specify `bounciness`/`speed` and `tension`/`friction` in the same config, specifying any of these new parameters while also specifying the aforementioned config values will cause an error to be thrown.
~Defaults for `Animated.spring` across all three implementations (JS/iOS/Android) stay the same, so this is intended to be *a non-breaking change*.~
~If `stiffness`, `damping`, or `mass` are provided in the config, we switch to animating the spring with the new damped harmonic oscillator model (`DHO` as described in the code).~
We replace the old RK4 integration implementation with our new analytic implementation. Tension/friction nicely correspond directly to stiffness/damping with the mass of the spring locked at 1. This is intended to be *a non-breaking change*, but there may be very slight differences in people's springs (maybe not even noticeable to the naked eye), given the fact that this implementation is more accurate.
The DHO animation algorithm will calculate the _position_ of the spring at time _t_ explicitly and in an analytical fashion, and use this calculation to update the animation's value. It will also analytically calculate the velocity at time _t_, so as to allow animated value tracking to continue to work as expected.
Also, docs have been updated to cover the new configuration options (and also I added docs for Animated configuration options that were missing, such as `restDisplacementThreshold`, etc).
Run tests. Run "Animated Gratuitous App" and "NativeAnimation" example in RNTester.
Closes https://github.com/facebook/react-native/pull/15322
Differential Revision: D5794791
Pulled By: hramos
fbshipit-source-id: 58ed9e134a097e321c85c417a142576f6a8952f8
2017-09-21 06:36:11 +00:00
|
|
|
title: 'translateX => Animated.spring (bounciness/speed)',
|
2016-06-09 17:34:41 +00:00
|
|
|
render: function() {
|
|
|
|
return (
|
2017-05-26 10:24:29 +00:00
|
|
|
<Tester type="spring" config={{bounciness: 0}}>
|
2016-06-09 17:34:41 +00:00
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
transform: [
|
|
|
|
{
|
|
|
|
translateX: anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0, 100],
|
2017-05-26 10:24:29 +00:00
|
|
|
}),
|
2016-08-07 07:44:09 +00:00
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
],
|
2017-05-26 10:24:29 +00:00
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
|
|
|
);
|
|
|
|
},
|
2017-05-26 10:24:29 +00:00
|
|
|
},
|
Add closed-form damped harmonic oscillator algorithm to Animated.spring
Summary:
As I was working on mimicking iOS animations for my ongoing work with `react-navigation`, one task I had was to match the "push from right" animation that is common in UINavigationController.
I was able to grab the exact animation values for this animation with some LLDB magic, and found that the screen is animated using a `CASpringAnimation` with the parameters:
- stiffness: 1000
- damping: 500
- mass: 3
After spending a considerable amount of time attempting to replicate the spring created with these values by CASpringAnimation by specifying values for tension and friction in the current `Animated.spring` implementation, I was unable to come up with mathematically equivalent values that could replicate the spring _exactly_.
After doing some research, I ended up disassembling the QuartzCore framework, reading the assembly, and determined that Apple's implementation of `CASpringAnimation` does not use an integrated, numerical animation model as we do in Animated.spring, but instead solved for the closed form of the equations that govern damped harmonic oscillation (the differential equations themselves are [here](https://en.wikipedia.org/wiki/Harmonic_oscillator#Damped_harmonic_oscillator), and a paper describing the math to arrive at the closed-form solution to the second-order ODE that describes the DHO is [here](http://planetmath.org/sites/default/files/texpdf/39745.pdf)).
Though we can get the currently implemented RK4 integration close by tweaking some values, it is, the current model is at it's core, an approximation. It seemed that if I wanted to implement the `CASpringAnimation` behavior _exactly_, I needed to implement the analytical model (as is implemented in `CASpringAnimation`) in `Animated`.
We add three new optional parameters to `Animated.spring` (to both the JS and native implementations):
- `stiffness`, a value describing the spring's stiffness coefficient
- `damping`, a value defining how the spring's motion should be damped due to the forces of friction (technically called the _viscous damping coefficient_).
- `mass`, a value describing the mass of the object attached to the end of the simulated spring
Just like if a developer were to specify `bounciness`/`speed` and `tension`/`friction` in the same config, specifying any of these new parameters while also specifying the aforementioned config values will cause an error to be thrown.
~Defaults for `Animated.spring` across all three implementations (JS/iOS/Android) stay the same, so this is intended to be *a non-breaking change*.~
~If `stiffness`, `damping`, or `mass` are provided in the config, we switch to animating the spring with the new damped harmonic oscillator model (`DHO` as described in the code).~
We replace the old RK4 integration implementation with our new analytic implementation. Tension/friction nicely correspond directly to stiffness/damping with the mass of the spring locked at 1. This is intended to be *a non-breaking change*, but there may be very slight differences in people's springs (maybe not even noticeable to the naked eye), given the fact that this implementation is more accurate.
The DHO animation algorithm will calculate the _position_ of the spring at time _t_ explicitly and in an analytical fashion, and use this calculation to update the animation's value. It will also analytically calculate the velocity at time _t_, so as to allow animated value tracking to continue to work as expected.
Also, docs have been updated to cover the new configuration options (and also I added docs for Animated configuration options that were missing, such as `restDisplacementThreshold`, etc).
Run tests. Run "Animated Gratuitous App" and "NativeAnimation" example in RNTester.
Closes https://github.com/facebook/react-native/pull/15322
Differential Revision: D5794791
Pulled By: hramos
fbshipit-source-id: 58ed9e134a097e321c85c417a142576f6a8952f8
2017-09-21 06:36:11 +00:00
|
|
|
{
|
|
|
|
title: 'translateX => Animated.spring (stiffness/damping/mass)',
|
|
|
|
render: function() {
|
|
|
|
return (
|
2018-05-11 20:32:37 +00:00
|
|
|
<Tester type="spring" config={{stiffness: 1000, damping: 500, mass: 3}}>
|
Add closed-form damped harmonic oscillator algorithm to Animated.spring
Summary:
As I was working on mimicking iOS animations for my ongoing work with `react-navigation`, one task I had was to match the "push from right" animation that is common in UINavigationController.
I was able to grab the exact animation values for this animation with some LLDB magic, and found that the screen is animated using a `CASpringAnimation` with the parameters:
- stiffness: 1000
- damping: 500
- mass: 3
After spending a considerable amount of time attempting to replicate the spring created with these values by CASpringAnimation by specifying values for tension and friction in the current `Animated.spring` implementation, I was unable to come up with mathematically equivalent values that could replicate the spring _exactly_.
After doing some research, I ended up disassembling the QuartzCore framework, reading the assembly, and determined that Apple's implementation of `CASpringAnimation` does not use an integrated, numerical animation model as we do in Animated.spring, but instead solved for the closed form of the equations that govern damped harmonic oscillation (the differential equations themselves are [here](https://en.wikipedia.org/wiki/Harmonic_oscillator#Damped_harmonic_oscillator), and a paper describing the math to arrive at the closed-form solution to the second-order ODE that describes the DHO is [here](http://planetmath.org/sites/default/files/texpdf/39745.pdf)).
Though we can get the currently implemented RK4 integration close by tweaking some values, it is, the current model is at it's core, an approximation. It seemed that if I wanted to implement the `CASpringAnimation` behavior _exactly_, I needed to implement the analytical model (as is implemented in `CASpringAnimation`) in `Animated`.
We add three new optional parameters to `Animated.spring` (to both the JS and native implementations):
- `stiffness`, a value describing the spring's stiffness coefficient
- `damping`, a value defining how the spring's motion should be damped due to the forces of friction (technically called the _viscous damping coefficient_).
- `mass`, a value describing the mass of the object attached to the end of the simulated spring
Just like if a developer were to specify `bounciness`/`speed` and `tension`/`friction` in the same config, specifying any of these new parameters while also specifying the aforementioned config values will cause an error to be thrown.
~Defaults for `Animated.spring` across all three implementations (JS/iOS/Android) stay the same, so this is intended to be *a non-breaking change*.~
~If `stiffness`, `damping`, or `mass` are provided in the config, we switch to animating the spring with the new damped harmonic oscillator model (`DHO` as described in the code).~
We replace the old RK4 integration implementation with our new analytic implementation. Tension/friction nicely correspond directly to stiffness/damping with the mass of the spring locked at 1. This is intended to be *a non-breaking change*, but there may be very slight differences in people's springs (maybe not even noticeable to the naked eye), given the fact that this implementation is more accurate.
The DHO animation algorithm will calculate the _position_ of the spring at time _t_ explicitly and in an analytical fashion, and use this calculation to update the animation's value. It will also analytically calculate the velocity at time _t_, so as to allow animated value tracking to continue to work as expected.
Also, docs have been updated to cover the new configuration options (and also I added docs for Animated configuration options that were missing, such as `restDisplacementThreshold`, etc).
Run tests. Run "Animated Gratuitous App" and "NativeAnimation" example in RNTester.
Closes https://github.com/facebook/react-native/pull/15322
Differential Revision: D5794791
Pulled By: hramos
fbshipit-source-id: 58ed9e134a097e321c85c417a142576f6a8952f8
2017-09-21 06:36:11 +00:00
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
transform: [
|
|
|
|
{
|
|
|
|
translateX: anim.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0, 100],
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
2017-05-26 10:24:29 +00:00
|
|
|
{
|
2016-08-19 14:06:29 +00:00
|
|
|
title: 'translateX => Animated.decay',
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<Tester
|
|
|
|
type="decay"
|
2017-05-26 10:24:29 +00:00
|
|
|
config={{velocity: 0.5}}
|
|
|
|
reverseConfig={{velocity: -0.5}}>
|
2016-08-19 14:06:29 +00:00
|
|
|
{anim => (
|
|
|
|
<Animated.View
|
|
|
|
style={[
|
|
|
|
styles.block,
|
|
|
|
{
|
|
|
|
transform: [
|
|
|
|
{
|
2017-05-26 10:24:29 +00:00
|
|
|
translateX: anim,
|
2016-08-19 14:06:29 +00:00
|
|
|
},
|
|
|
|
],
|
2017-05-26 10:24:29 +00:00
|
|
|
},
|
2016-08-19 14:06:29 +00:00
|
|
|
]}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</Tester>
|
|
|
|
);
|
|
|
|
},
|
2017-05-26 10:24:29 +00:00
|
|
|
},
|
|
|
|
{
|
2017-01-27 02:14:40 +00:00
|
|
|
title: 'Drive custom property',
|
|
|
|
render: function() {
|
|
|
|
return (
|
2017-05-26 10:24:29 +00:00
|
|
|
<Tester type="timing" config={{duration: 1000}}>
|
|
|
|
{anim => <AnimatedSlider style={{}} value={anim} />}
|
2017-01-27 02:14:40 +00:00
|
|
|
</Tester>
|
|
|
|
);
|
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
},
|
2016-08-04 20:11:37 +00:00
|
|
|
{
|
|
|
|
title: 'Animated value listener',
|
|
|
|
render: function() {
|
2017-05-26 10:24:29 +00:00
|
|
|
return <ValueListenerExample />;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Animated loop',
|
|
|
|
render: function() {
|
|
|
|
return <LoopExample />;
|
2016-08-04 20:11:37 +00:00
|
|
|
},
|
|
|
|
},
|
2016-09-07 02:45:08 +00:00
|
|
|
{
|
2016-11-01 10:56:50 +00:00
|
|
|
title: 'Animated events',
|
2016-09-07 02:45:08 +00:00
|
|
|
render: function() {
|
2017-05-26 10:24:29 +00:00
|
|
|
return <EventExample />;
|
2016-09-07 02:45:08 +00:00
|
|
|
},
|
|
|
|
},
|
2018-02-16 19:43:34 +00:00
|
|
|
{
|
|
|
|
title: 'Animated Tracking - tap me many times',
|
|
|
|
render: function() {
|
|
|
|
return <TrackingExample />;
|
|
|
|
},
|
|
|
|
},
|
2016-09-19 11:07:36 +00:00
|
|
|
{
|
2016-11-01 10:56:50 +00:00
|
|
|
title: 'Internal Settings',
|
2016-09-19 11:07:36 +00:00
|
|
|
render: function() {
|
2017-05-26 10:24:29 +00:00
|
|
|
return <InternalSettings />;
|
2016-09-19 11:07:36 +00:00
|
|
|
},
|
|
|
|
},
|
2016-06-09 17:34:41 +00:00
|
|
|
];
|