mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 20:37:56 +00:00
4a3694c831
- Replaced shadowColor/shadowOffset/shadowOpacity/shadowRadius with boxShadow - Fixed 28 files (21 screens + 7 components) - Preserved elevation for Android compatibility - All React Native Web deprecation warnings resolved Files fixed: - All screen components - All reusable components - Navigation components - Modal components
180 lines
3.4 KiB
TypeScript
180 lines
3.4 KiB
TypeScript
import React from 'react';
|
|
import {
|
|
Pressable,
|
|
Text,
|
|
StyleSheet,
|
|
ActivityIndicator,
|
|
ViewStyle,
|
|
TextStyle,
|
|
} from 'react-native';
|
|
import { AppColors, KurdistanColors } from '../theme/colors';
|
|
|
|
interface ButtonProps {
|
|
title: string;
|
|
onPress: () => void;
|
|
variant?: 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger';
|
|
size?: 'small' | 'medium' | 'large';
|
|
loading?: boolean;
|
|
disabled?: boolean;
|
|
fullWidth?: boolean;
|
|
style?: ViewStyle;
|
|
textStyle?: TextStyle;
|
|
icon?: React.ReactNode;
|
|
testID?: string;
|
|
}
|
|
|
|
/**
|
|
* Modern Button Component
|
|
* Uses Kurdistan colors for primary branding
|
|
*/
|
|
export const Button: React.FC<ButtonProps> = ({
|
|
title,
|
|
onPress,
|
|
variant = 'primary',
|
|
size = 'medium',
|
|
loading = false,
|
|
disabled = false,
|
|
fullWidth = false,
|
|
style,
|
|
textStyle,
|
|
icon,
|
|
testID,
|
|
}) => {
|
|
const isDisabled = disabled || loading;
|
|
|
|
const buttonStyle = [
|
|
styles.base,
|
|
styles[variant],
|
|
styles[`${size}Size`],
|
|
fullWidth && styles.fullWidth,
|
|
isDisabled && styles.disabled,
|
|
style,
|
|
];
|
|
|
|
const textStyles = [
|
|
styles.text,
|
|
styles[`${variant}Text`],
|
|
styles[`${size}Text`],
|
|
isDisabled && styles.disabledText,
|
|
textStyle,
|
|
];
|
|
|
|
return (
|
|
<Pressable
|
|
testID={testID}
|
|
onPress={onPress}
|
|
disabled={isDisabled}
|
|
style={({ pressed }) => [
|
|
...buttonStyle,
|
|
pressed && !isDisabled && styles.pressed,
|
|
]}
|
|
>
|
|
{loading ? (
|
|
<ActivityIndicator
|
|
color={variant === 'primary' || variant === 'danger' ? '#FFFFFF' : AppColors.primary}
|
|
/>
|
|
) : (
|
|
<>
|
|
{icon}
|
|
<Text style={textStyles}>{title}</Text>
|
|
</>
|
|
)}
|
|
</Pressable>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
base: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
borderRadius: 12,
|
|
paddingHorizontal: 24,
|
|
paddingVertical: 12,
|
|
},
|
|
// Variants
|
|
primary: {
|
|
backgroundColor: KurdistanColors.kesk,
|
|
boxShadow: '0px 4px 8px rgba(0, 128, 0, 0.3)',
|
|
elevation: 4,
|
|
},
|
|
secondary: {
|
|
backgroundColor: KurdistanColors.zer,
|
|
boxShadow: '0px 4px 6px rgba(255, 215, 0, 0.2)',
|
|
elevation: 3,
|
|
},
|
|
outline: {
|
|
backgroundColor: 'transparent',
|
|
borderWidth: 2,
|
|
borderColor: KurdistanColors.kesk,
|
|
},
|
|
ghost: {
|
|
backgroundColor: 'transparent',
|
|
},
|
|
danger: {
|
|
backgroundColor: KurdistanColors.sor,
|
|
boxShadow: '0px 4px 8px rgba(255, 0, 0, 0.3)',
|
|
elevation: 4,
|
|
},
|
|
// Sizes
|
|
smallSize: {
|
|
paddingHorizontal: 16,
|
|
paddingVertical: 8,
|
|
borderRadius: 8,
|
|
},
|
|
mediumSize: {
|
|
paddingHorizontal: 24,
|
|
paddingVertical: 12,
|
|
borderRadius: 12,
|
|
},
|
|
largeSize: {
|
|
paddingHorizontal: 32,
|
|
paddingVertical: 16,
|
|
borderRadius: 16,
|
|
},
|
|
fullWidth: {
|
|
width: '100%',
|
|
},
|
|
disabled: {
|
|
opacity: 0.5,
|
|
boxShadow: 'none',
|
|
elevation: 0,
|
|
},
|
|
pressed: {
|
|
opacity: 0.8,
|
|
transform: [{ scale: 0.97 }],
|
|
},
|
|
// Text styles
|
|
text: {
|
|
fontWeight: '600',
|
|
textAlign: 'center',
|
|
},
|
|
primaryText: {
|
|
color: '#FFFFFF',
|
|
},
|
|
secondaryText: {
|
|
color: '#000000',
|
|
},
|
|
outlineText: {
|
|
color: KurdistanColors.kesk,
|
|
},
|
|
ghostText: {
|
|
color: KurdistanColors.kesk,
|
|
},
|
|
dangerText: {
|
|
color: '#FFFFFF',
|
|
},
|
|
smallText: {
|
|
fontSize: 14,
|
|
},
|
|
mediumText: {
|
|
fontSize: 16,
|
|
},
|
|
largeText: {
|
|
fontSize: 18,
|
|
},
|
|
disabledText: {
|
|
opacity: 0.7,
|
|
},
|
|
});
|