Last active
May 18, 2017 09:51
-
-
Save FiberJW/3a7ceae7ab686ea28b8022c20c92b089 to your computer and use it in GitHub Desktop.
Cross-Platform Elevation Styles for React Native
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import React, { Component } from "react"; | |
import { Animated, TouchableWithoutFeedback } from "react-native"; | |
type State = { | |
height: number, | |
width: number, | |
elevation: Animated.Value | |
}; | |
type Props = { | |
feedbackEnabled: boolean, | |
activeElevation?: number, | |
elevation?: number, | |
children?: Array<mixed>, | |
style: object, | |
onPress?: () => any | |
}; | |
type ElevationStyle = { | |
elevation: number, | |
shadowColor: string, | |
shadowOpacity: number, | |
shadowRadius: number, | |
shadowOffset: { | |
height: number | |
} | |
}; | |
export default class ElevatedView extends Component<{}, Props, State> { | |
static defaultProps = { | |
feedbackEnabled: false, | |
activeElevation: 0, | |
elevation: 0, | |
style: {}, | |
onPress: () => {} | |
}; | |
static Elevation = (elevation: number = 0): ElevationStyle => ({ | |
elevation: elevation, | |
shadowColor: "black", | |
shadowOpacity: 0.03 * elevation + 0.068, | |
shadowRadius: 0.64 * elevation + -0.16, | |
shadowOffset: { | |
height: 0.6 * elevation + -0.34 | |
} | |
}); | |
state = { | |
height: 0, | |
width: 0, | |
elevation: new Animated.Value(this.props.elevation) | |
}; | |
animateTo = (elevation: number = 0) => { | |
if (this.props.feedbackEnabled) { | |
Animated.spring(this.state.elevation, { | |
toValue: elevation | |
}).start(); | |
} | |
}; | |
componentDidMount() { | |
this.state.elevation.addListener(({ value }) => this.forceUpdate()); | |
} | |
render() { | |
return ( | |
<TouchableWithoutFeedback | |
onLayout={({ nativeEvent: { layout: { width, height } } }) => { | |
this.setState((prevState: State) => ({ | |
...prevState, | |
height, | |
width | |
})); | |
}} | |
onPressIn={() => this.animateTo(this.props.activeElevation)} | |
onPressOut={() => this.animateTo(this.props.elevation)} | |
onPress={this.props.onPress} | |
> | |
<Animated.View | |
style={[ | |
this.props.style, | |
ElevatedView.Elevation(this.state.elevation._value) | |
]} | |
> | |
{this.props.children} | |
</Animated.View> | |
</TouchableWithoutFeedback> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment