tooot/src/components/Header/Right.tsx

70 lines
1.4 KiB
TypeScript

import { Feather } from '@expo/vector-icons'
import React from 'react'
import { Pressable, StyleSheet, Text } from 'react-native'
import { useTheme } from 'src/utils/styles/ThemeManager'
import { StyleConstants } from 'src/utils/styles/constants'
type PropsBase = {
disabled?: boolean
onPress: () => void
}
export interface PropsText extends PropsBase {
text: string
icon?: string
}
export interface PropsIcon extends PropsBase {
text?: string
icon: string
}
const HeaderRight: React.FC<PropsText | PropsIcon> = ({
disabled,
onPress,
text,
icon
}) => {
const { theme } = useTheme()
return (
<Pressable {...(!disabled && { onPress })} style={styles.base}>
{text && (
<Text
style={[
styles.text,
{ color: disabled ? theme.secondary : theme.primary }
]}
>
{text}
</Text>
)}
{icon && (
<Feather
name={icon}
color={disabled ? theme.secondary : theme.primary}
size={StyleConstants.Font.Size.L}
/>
)}
</Pressable>
)
}
const styles = StyleSheet.create({
base: {
paddingLeft: StyleConstants.Spacing.S
},
text: {
fontSize: StyleConstants.Font.Size.M
}
})
export default React.memo(HeaderRight, (prev, next) => {
let skipUpdate = true
skipUpdate = prev.disabled === next.disabled
skipUpdate = prev.text === next.text
skipUpdate = prev.icon === next.icon
return skipUpdate
})