BlueWallet/components/StyledButton.js

86 lines
2.2 KiB
JavaScript
Raw Normal View History

2021-09-09 12:00:11 +01:00
import React from 'react';
import { TouchableOpacity, View, Text, StyleSheet } from 'react-native';
import PropTypes from 'prop-types';
2023-10-23 21:28:44 -04:00
import { useTheme } from './themes';
2021-09-09 12:00:11 +01:00
2023-11-15 04:40:22 -04:00
export const StyledButtonType = { default: 'default', destroy: 'destroy', grey: 'grey' };
const StyledButton = props => {
const { onPress, text = '', disabled = false, buttonStyle = StyledButtonType.default } = props;
2021-09-09 12:00:11 +01:00
const { colors } = useTheme();
const stylesHook = StyleSheet.create({
buttonGrey: {
backgroundColor: colors.lightButton,
},
textGray: {
color: colors.buttonTextColor,
},
});
const textStyles = () => {
2023-11-15 04:40:22 -04:00
if (buttonStyle === StyledButtonType.grey) {
2021-09-09 12:00:11 +01:00
return stylesHook.textGray;
2023-11-15 04:40:22 -04:00
} else if (buttonStyle === StyledButtonType.destroy) {
2021-09-09 12:00:11 +01:00
return styles.textDestroy;
} else {
return styles.textDefault;
}
};
const buttonStyles = () => {
2023-11-15 04:40:22 -04:00
if (buttonStyle === StyledButtonType.grey) {
2021-09-09 12:00:11 +01:00
return stylesHook.buttonGrey;
2023-11-15 04:40:22 -04:00
} else if (buttonStyle === StyledButtonType.destroy) {
2021-09-09 12:00:11 +01:00
return styles.buttonDestroy;
} else {
return styles.buttonDefault;
}
};
const opacity = { opacity: disabled ? 0.5 : 1.0 };
return (
<TouchableOpacity accessibilityRole="button" onPress={onPress} disabled={disabled} style={opacity}>
2021-09-09 12:00:11 +01:00
<View style={[styles.buttonContainer, buttonStyles()]}>
<Text style={[styles.text, textStyles()]}>{text}</Text>
</View>
</TouchableOpacity>
);
};
const styles = StyleSheet.create({
buttonContainer: {
borderRadius: 9,
minHeight: 49,
paddingHorizontal: 8,
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'row',
alignSelf: 'auto',
flexGrow: 1,
marginHorizontal: 4,
},
buttonDefault: {
backgroundColor: '#EBF2FB',
},
buttonDestroy: {
backgroundColor: '#FFF5F5',
},
text: {
fontWeight: '600',
fontSize: 15,
},
textDefault: {
color: '#1961B9',
},
textDestroy: {
color: '#D0021B',
},
});
2023-11-15 04:40:22 -04:00
export default StyledButton;
StyledButton.propTypes = {
2021-09-09 12:00:11 +01:00
onPress: PropTypes.func.isRequired,
text: PropTypes.string.isRequired,
disabled: PropTypes.bool,
buttonStyle: PropTypes.string,
};