BlueWallet/components/SecondButton.tsx
Marcos Rodriguez Velez 6b9bf33dfa OPS: Lint
2024-08-30 18:43:50 -04:00

84 lines
2.1 KiB
TypeScript

import React, { forwardRef } from 'react';
import { StyleSheet, Text, TouchableOpacity, View, ActivityIndicator } from 'react-native';
import { Icon } from '@rneui/themed';
import { useTheme } from './themes';
type IconProps = {
name: string;
type: string;
color: string;
};
type SecondButtonProps = {
backgroundColor?: string;
disabled?: boolean;
icon?: IconProps;
title?: string;
onPress?: () => void;
loading?: boolean;
testID?: string;
};
export const SecondButton = forwardRef<React.ElementRef<typeof TouchableOpacity>, SecondButtonProps>((props, ref) => {
const { colors } = useTheme();
let backgroundColor = props.backgroundColor ? props.backgroundColor : colors.buttonGrayBackgroundColor;
let fontColor = colors.secondButtonTextColor;
if (props.disabled === true) {
backgroundColor = colors.buttonDisabledBackgroundColor;
fontColor = colors.buttonDisabledTextColor;
}
const buttonView = props.loading ? (
<ActivityIndicator size="small" color={colors.buttonTextColor} />
) : (
<View style={styles.view}>
{props.icon && <Icon name={props.icon.name} type={props.icon.type} color={props.icon.color} />}
{props.title && <Text style={[styles.text, { color: fontColor }]}>{props.title}</Text>}
</View>
);
return props.onPress ? (
<TouchableOpacity
disabled={props.disabled || props.loading}
accessibilityRole="button"
testID={props.testID}
style={[styles.button, { backgroundColor }]}
{...props}
ref={ref}
>
{buttonView}
</TouchableOpacity>
) : (
<View style={[styles.button, { backgroundColor }]}>{buttonView}</View>
);
});
const styles = StyleSheet.create({
button: {
minHeight: 45,
height: 48,
maxHeight: 48,
borderRadius: 7,
justifyContent: 'center',
alignItems: 'center',
paddingHorizontal: 16,
flexGrow: 1,
},
content: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
},
text: {
marginHorizontal: 8,
fontSize: 16,
fontWeight: '600',
},
view: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
},
});