mirror of
https://github.com/tooot-app/app
synced 2025-04-16 03:07:32 +02:00
83 lines
1.8 KiB
TypeScript
83 lines
1.8 KiB
TypeScript
import { Feather } from '@expo/vector-icons'
|
|
import React from 'react'
|
|
import { Pressable, StyleSheet, Text } from 'react-native'
|
|
import { StyleConstants } from 'src/utils/styles/constants'
|
|
import { useTheme } from 'src/utils/styles/ThemeManager'
|
|
|
|
type PropsBase = {
|
|
onPress: () => void
|
|
disabled?: boolean
|
|
buttonSize?: 'S' | 'M'
|
|
}
|
|
|
|
export interface PropsText extends PropsBase {
|
|
text: string
|
|
icon?: string
|
|
size?: 'S' | 'M' | 'L'
|
|
}
|
|
|
|
export interface PropsIcon extends PropsBase {
|
|
text?: string
|
|
icon: string
|
|
size?: 'S' | 'M' | 'L'
|
|
}
|
|
|
|
const Button: React.FC<PropsText | PropsIcon> = ({
|
|
onPress,
|
|
disabled = false,
|
|
buttonSize = 'M',
|
|
text,
|
|
icon,
|
|
size = 'M'
|
|
}) => {
|
|
const { theme } = useTheme()
|
|
|
|
return (
|
|
<Pressable
|
|
{...(!disabled && { onPress })}
|
|
style={[
|
|
styles.button,
|
|
{
|
|
borderColor: disabled ? theme.secondary : theme.primary,
|
|
paddingTop: StyleConstants.Spacing[buttonSize === 'M' ? 'S' : 'XS'],
|
|
paddingBottom: StyleConstants.Spacing[buttonSize === 'M' ? 'S' : 'XS']
|
|
}
|
|
]}
|
|
>
|
|
{icon ? (
|
|
<Feather
|
|
name={icon}
|
|
size={StyleConstants.Font.Size[size]}
|
|
color={disabled ? theme.secondary : theme.primary}
|
|
/>
|
|
) : (
|
|
<Text
|
|
style={[
|
|
styles.text,
|
|
{
|
|
color: disabled ? theme.secondary : theme.primary,
|
|
fontSize: StyleConstants.Font.Size[size]
|
|
}
|
|
]}
|
|
>
|
|
{text}
|
|
</Text>
|
|
)}
|
|
</Pressable>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
button: {
|
|
paddingLeft: StyleConstants.Spacing.M,
|
|
paddingRight: StyleConstants.Spacing.M,
|
|
borderWidth: 1,
|
|
borderRadius: 100
|
|
},
|
|
text: {
|
|
textAlign: 'center'
|
|
}
|
|
})
|
|
|
|
export default Button
|