tooot/src/components/Header/Left.tsx

67 lines
1.7 KiB
TypeScript
Raw Normal View History

import Icon, { IconName } from '@components/Icon'
import CustomText from '@components/Text'
2024-02-07 00:22:22 +01:00
import { useNavigation } from '@react-navigation/native'
2020-12-13 14:04:25 +01:00
import { StyleConstants } from '@utils/styles/constants'
2020-12-26 23:27:53 +01:00
import { useTheme } from '@utils/styles/ThemeManager'
import React from 'react'
import { Pressable } from 'react-native'
2020-11-30 00:24:53 +01:00
export type Props = {
2021-01-30 01:29:15 +01:00
native?: boolean
2021-03-22 00:25:53 +01:00
background?: boolean
2020-11-30 00:24:53 +01:00
2024-02-07 00:22:22 +01:00
onPress?: () => void
} & ({ type?: undefined; content?: IconName } | { type: 'text'; content: string })
2021-01-30 01:29:15 +01:00
const HeaderLeft: React.FC<Props> = ({
type,
2021-01-30 01:29:15 +01:00
content,
native = true,
2021-03-22 00:25:53 +01:00
background = false,
2021-01-30 01:29:15 +01:00
onPress
}) => {
2024-02-07 00:22:22 +01:00
const navigation = useNavigation()
const { colors } = useTheme()
2020-11-30 00:24:53 +01:00
const children = () => {
2020-12-26 23:27:53 +01:00
switch (type) {
case 'text':
return (
<CustomText fontStyle='M' style={{ color: colors.primaryDefault }} children={content} />
)
default:
2020-12-26 23:27:53 +01:00
return (
<Icon
2022-02-12 14:51:01 +01:00
color={colors.primaryDefault}
name={content || 'chevron-left'}
2020-12-26 23:27:53 +01:00
size={StyleConstants.Spacing.M * 1.25}
/>
)
}
}
2020-12-26 23:27:53 +01:00
2020-11-30 00:24:53 +01:00
return (
2020-12-13 23:38:37 +01:00
<Pressable
2024-02-07 00:22:22 +01:00
onPress={onPress ? onPress : () => navigation.goBack()}
children={children()}
style={{
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: background ? colors.backgroundOverlayDefault : undefined,
minHeight: 44,
minWidth: 44,
marginLeft: native ? -StyleConstants.Spacing.S : StyleConstants.Spacing.S,
...(type === undefined && {
2023-02-12 18:38:06 +01:00
borderRadius: 99
}),
...(type === 'text' && {
paddingHorizontal: StyleConstants.Spacing.S
})
}}
2020-12-26 23:27:53 +01:00
/>
2020-11-30 00:24:53 +01:00
)
}
2020-12-12 12:49:29 +01:00
export default HeaderLeft