This repository was archived by the owner on Aug 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathActions.js
79 lines (79 loc) · 2.36 KB
/
Actions.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
import PropTypes from 'prop-types';
import React from 'react';
import { StyleSheet, Text, TouchableOpacity, View, ViewPropTypes, } from 'react-native';
import Color from './Color';
export default class Actions extends React.Component {
constructor() {
super(...arguments);
this.onActionsPress = () => {
const { options } = this.props;
const optionKeys = Object.keys(options);
const cancelButtonIndex = optionKeys.indexOf('Cancel');
this.context.actionSheet().showActionSheetWithOptions({
options: optionKeys,
cancelButtonIndex,
tintColor: this.props.optionTintColor,
}, (buttonIndex) => {
const key = optionKeys[buttonIndex];
if (key) {
options[key](this.props);
}
});
};
}
renderIcon() {
if (this.props.icon) {
return this.props.icon();
}
return (<View style={[styles.wrapper, this.props.wrapperStyle]}>
<Text style={[styles.iconText, this.props.iconTextStyle]}>+</Text>
</View>);
}
render() {
return (<TouchableOpacity style={[styles.container, this.props.containerStyle]} onPress={this.props.onPressActionButton || this.onActionsPress}>
{this.renderIcon()}
</TouchableOpacity>);
}
}
Actions.defaultProps = {
options: {},
optionTintColor: Color.optionTintColor,
icon: undefined,
containerStyle: {},
iconTextStyle: {},
wrapperStyle: {},
};
Actions.propTypes = {
onSend: PropTypes.func,
options: PropTypes.object,
optionTintColor: PropTypes.string,
icon: PropTypes.func,
onPressActionButton: PropTypes.func,
wrapperStyle: ViewPropTypes.style,
containerStyle: ViewPropTypes.style,
};
Actions.contextTypes = {
actionSheet: PropTypes.func,
};
const styles = StyleSheet.create({
container: {
width: 26,
height: 26,
marginLeft: 10,
marginBottom: 10,
},
wrapper: {
borderRadius: 13,
borderColor: Color.defaultColor,
borderWidth: 2,
flex: 1,
},
iconText: {
color: Color.defaultColor,
fontWeight: 'bold',
fontSize: 16,
backgroundColor: Color.backgroundTransparent,
textAlign: 'center',
},
});
//# sourceMappingURL=Actions.js.map