2018-04-24 19:34:03 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { StyleSheet, View, Text, Platform } from 'react-native';
|
|
|
|
|
|
|
|
import { COLOR_BUTTON_PRIMARY, COLOR_TEXT } from '../../constants/colors';
|
|
|
|
import Touch from '../../utils/touch';
|
|
|
|
|
|
|
|
const colors = {
|
|
|
|
backgroundPrimary: COLOR_BUTTON_PRIMARY,
|
|
|
|
backgroundSecondary: 'white',
|
|
|
|
|
|
|
|
textColorPrimary: 'white',
|
|
|
|
textColorSecondary: COLOR_TEXT
|
|
|
|
};
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
paddingHorizontal: 15,
|
2018-07-17 19:10:27 +00:00
|
|
|
paddingVertical: 10
|
2018-04-24 19:34:03 +00:00
|
|
|
},
|
|
|
|
text: {
|
|
|
|
textAlign: 'center',
|
|
|
|
fontWeight: '700'
|
|
|
|
},
|
|
|
|
background_primary: {
|
|
|
|
backgroundColor: colors.backgroundPrimary
|
|
|
|
},
|
|
|
|
background_secondary: {
|
|
|
|
backgroundColor: colors.backgroundSecondary
|
|
|
|
},
|
|
|
|
text_color_primary: {
|
|
|
|
color: colors.textColorPrimary
|
|
|
|
},
|
|
|
|
text_color_secondary: {
|
|
|
|
color: colors.textColorSecondary
|
|
|
|
},
|
|
|
|
margin: {
|
|
|
|
marginBottom: 10
|
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
opacity: 0.5
|
2018-07-17 19:10:27 +00:00
|
|
|
},
|
|
|
|
border: {
|
|
|
|
borderRadius: 2
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default class Button extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
|
|
title: PropTypes.string,
|
|
|
|
type: PropTypes.string,
|
|
|
|
onPress: PropTypes.func,
|
2018-07-17 19:10:27 +00:00
|
|
|
disabled: PropTypes.bool,
|
|
|
|
margin: PropTypes.any,
|
|
|
|
backgroundColor: PropTypes.string
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
title: 'Press me!',
|
|
|
|
type: 'primary',
|
|
|
|
onPress: () => alert('It works!'),
|
|
|
|
disabled: false
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const {
|
2018-07-17 19:10:27 +00:00
|
|
|
title, type, onPress, disabled, margin, backgroundColor, ...otherProps
|
2018-04-24 19:34:03 +00:00
|
|
|
} = this.props;
|
|
|
|
return (
|
|
|
|
<Touch
|
|
|
|
onPress={onPress}
|
|
|
|
accessibilityTraits='button'
|
2018-07-17 19:10:27 +00:00
|
|
|
style={Platform.OS === 'ios' && [(margin || styles.margin), styles.border]}
|
2018-04-24 19:34:03 +00:00
|
|
|
disabled={disabled}
|
2018-05-23 13:39:18 +00:00
|
|
|
{...otherProps}
|
2018-04-24 19:34:03 +00:00
|
|
|
>
|
|
|
|
<View
|
|
|
|
style={[
|
|
|
|
styles.container,
|
2018-07-17 19:10:27 +00:00
|
|
|
styles.border,
|
|
|
|
backgroundColor ? { backgroundColor } : styles[`background_${ type }`],
|
|
|
|
Platform.OS === 'android' && (margin || styles.margin),
|
2018-04-24 19:34:03 +00:00
|
|
|
disabled && styles.disabled
|
|
|
|
]}
|
|
|
|
>
|
|
|
|
<Text style={[styles.text, styles[`text_color_${ type }`]]}>{title}</Text>
|
|
|
|
</View>
|
|
|
|
</Touch>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|