forked from mastermoo/react-native-action-button
-
Notifications
You must be signed in to change notification settings - Fork 87
/
ActionButtonItem.js
97 lines (91 loc) · 2.44 KB
/
ActionButtonItem.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import React, {
Component,
} from 'react';
import {
StyleSheet,
View,
Animated,
TouchableOpacity,
} from 'react-native';
import PropTypes from 'prop-types';
export default class ActionButtonItem extends Component {
render() {
const offsetX = this.props.radius * Math.cos(this.props.angle);
const offsetY = this.props.radius * Math.sin(this.props.angle);
return (
<Animated.View
style={[{
opacity: this.props.anim,
width: this.props.size,
height: this.props.size,
transform: [
{
translateY: this.props.anim.interpolate({
inputRange: [0, 1],
outputRange: [0, offsetY],
}) },
{
translateX: this.props.anim.interpolate({
inputRange: [0, 1],
outputRange: [0, offsetX],
}) },
{
rotate: this.props.anim.interpolate({
inputRange: [0, 1],
outputRange: [`${this.props.startDegree}deg`, `${this.props.endDegree}deg`],
}) },
{
scale: this.props.anim.interpolate({
inputRange: [0, 1],
outputRange: [0, 1],
}) },
]
}]}
>
<TouchableOpacity style={{flex:1}} activeOpacity={this.props.activeOpacity || 0.85} onPress={this.props.onPress}>
<View
style={[styles.actionButton,{
width: this.props.size,
height: this.props.size,
borderRadius: this.props.size / 2,
backgroundColor: this.props.buttonColor,
}]}
>
{this.props.children}
</View>
</TouchableOpacity>
</Animated.View>
);
}
}
ActionButtonItem.propTypes = {
angle: PropTypes.number,
radius: PropTypes.number,
buttonColor: PropTypes.string,
onPress: PropTypes.func,
children: PropTypes.node.isRequired,
startDegree: PropTypes.number,
endDegree: PropTypes.number,
};
ActionButtonItem.defaultProps = {
onPress: () => {},
startDegree: 0,
endDegree: 720
};
const styles = StyleSheet.create({
actionButton: {
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'row',
paddingTop: 2,
shadowOpacity: 0.3,
shadowOffset: {
width: 0,
height: 1,
},
shadowColor: '#444',
shadowRadius: 1,
backgroundColor: 'red',
position: 'absolute',
},
});