//@ts-nocheck
import PropTypes from 'prop-types'
import {ViewPropTypes} from 'deprecated-react-native-prop-types'
import React from 'react'
import {
StyleSheet,
Text,
TouchableOpacity,
View,
} from 'react-native'
import {
getLocationAsync,
//pickImageAsync,
//takePictureAsync,
} from './mediaUtils'
export default class CustomActions extends React.Component {
onActionsPress = () => {
const options = [
// 'Choose From Library',
// 'Take Picture',
'Send Location',
'Cancel',
]
const cancelButtonIndex = options.length - 1
this.context.actionSheet().showActionSheetWithOptions(
{
options,
cancelButtonIndex,
},
async buttonIndex => {
const { onSend } = this.props
switch (buttonIndex) {
// case 0:
// pickImageAsync(onSend)
// return
// case 1:
// takePictureAsync(onSend)
// return
case 0:
getLocationAsync(onSend)
return
}
},
)
}
renderIcon = () => {
if (this.props.renderIcon) {
return this.props.renderIcon()
}
return (
+
)
}
render() {
return (
{this.renderIcon()}
)
}
}
const styles = StyleSheet.create({
container: {
width: 26,
height: 26,
marginLeft: 10,
marginBottom: 10,
},
wrapper: {
borderRadius: 13,
borderColor: '#b2b2b2',
borderWidth: 2,
flex: 1,
},
iconText: {
color: '#b2b2b2',
fontWeight: 'bold',
fontSize: 16,
backgroundColor: 'transparent',
textAlign: 'center',
},
})
CustomActions.contextTypes = {
actionSheet: PropTypes.func,
}
CustomActions.defaultProps = {
onSend: () => {},
options: {},
renderIcon: null,
containerStyle: {},
wrapperStyle: {},
iconTextStyle: {},
}
CustomActions.propTypes = {
onSend: PropTypes.func,
options: PropTypes.object,
renderIcon: PropTypes.func,
containerStyle: ViewPropTypes.style,
wrapperStyle: ViewPropTypes.style,
iconTextStyle: Text.propTypes ? Text.propTypes.style : () => {},
}