From 16ee33ab2417224d8c1566178fd8c1823ad7b273 Mon Sep 17 00:00:00 2001 From: Gytis Vinclovas Date: Fri, 23 Mar 2018 22:57:22 +0200 Subject: [PATCH] Removed animation completely --- .../preview/components/OnDeviceUI/index.js | 58 ++++--------------- app/react-native/src/preview/index.js | 7 +-- 2 files changed, 11 insertions(+), 54 deletions(-) diff --git a/app/react-native/src/preview/components/OnDeviceUI/index.js b/app/react-native/src/preview/components/OnDeviceUI/index.js index 7a25430e9f4..c967fe73eee 100644 --- a/app/react-native/src/preview/components/OnDeviceUI/index.js +++ b/app/react-native/src/preview/components/OnDeviceUI/index.js @@ -2,16 +2,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { ifIphoneX } from 'react-native-iphone-x-helper'; -import { - Animated, - Dimensions, - Easing, - View, - TouchableWithoutFeedback, - Image, - Text, - StatusBar, -} from 'react-native'; +import { Dimensions, View, TouchableWithoutFeedback, Image, Text, StatusBar } from 'react-native'; import style from './style'; import StoryListView from '../StoryListView'; import StoryView from '../StoryView'; @@ -34,7 +25,6 @@ export default class OnDeviceUI extends Component { super(...args); this.state = { - menuAnimation: new Animated.Value(0), isMenuOpen: false, selectedKind: null, selectedStory: null, @@ -71,24 +61,14 @@ export default class OnDeviceUI extends Component { }; handleToggleMenu = () => { - const isMenuOpen = !this.state.isMenuOpen; - - if (this.props.animated) { - Animated.timing(this.state.menuAnimation, { - toValue: isMenuOpen ? 1 : 0, - duration: 150, - easing: Easing.linear, - }).start(); - } - this.setState({ - isMenuOpen, + isMenuOpen: !this.state.isMenuOpen, }); }; render() { - const { stories, animated, events, url } = this.props; - const { isPortrait, isMenuOpen, menuAnimation, selectedKind, selectedStory } = this.state; + const { stories, events, url } = this.props; + const { isPortrait, isMenuOpen, selectedKind, selectedStory } = this.state; const iPhoneXStyles = ifIphoneX( isPortrait @@ -101,23 +81,12 @@ export default class OnDeviceUI extends Component { {} ); - let translateX; - - if (animated) { - translateX = menuAnimation.interpolate({ - inputRange: [0, 1], - outputRange: [-DRAWER_WIDTH - 30, 0], - }); - } else { - translateX = isMenuOpen ? 0 : -DRAWER_WIDTH - 30; - } - const menuStyles = [ style.menuContainer, { transform: [ { - translateX, + translateX: isMenuOpen ? 0 : -DRAWER_WIDTH - 30, }, ], }, @@ -127,12 +96,7 @@ export default class OnDeviceUI extends Component { const headerStyles = [ style.headerContainer, { - opacity: animated - ? menuAnimation.interpolate({ - inputRange: [0, 1], - outputRange: [1, 0], - }) - : +!isMenuOpen, + opacity: +!isMenuOpen, }, ]; @@ -156,7 +120,7 @@ export default class OnDeviceUI extends Component { return ( - + {selectedKind} {selectedStory} - + - + - + ); } @@ -212,10 +176,8 @@ OnDeviceUI.propTypes = { removeListener: PropTypes.func.isRequired, }).isRequired, url: PropTypes.string, - animated: PropTypes.bool, }; OnDeviceUI.defaultProps = { url: '', - animated: true, }; diff --git a/app/react-native/src/preview/index.js b/app/react-native/src/preview/index.js index 3375d018732..297f9ee4223 100644 --- a/app/react-native/src/preview/index.js +++ b/app/react-native/src/preview/index.js @@ -74,12 +74,7 @@ export default class Preview { // finally return the preview component return params.onDeviceUI - ? + ? : ; }; }