tooot/src/components/Header/Left.tsx

75 lines
1.5 KiB
TypeScript
Raw Normal View History

import Icon from '@components/Icon'
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, { useMemo } from 'react'
import { Pressable, StyleSheet, Text } from 'react-native'
2020-11-30 00:24:53 +01:00
2020-12-26 23:27:53 +01:00
export interface Props {
type?: 'icon' | 'text'
content?: string
2021-01-30 01:29:15 +01:00
native?: boolean
2020-11-30 00:24:53 +01:00
2020-12-26 23:27:53 +01:00
onPress: () => void
}
2021-01-30 01:29:15 +01:00
const HeaderLeft: React.FC<Props> = ({
type = 'icon',
content,
native = true,
onPress
}) => {
2020-11-30 00:24:53 +01:00
const { theme } = useTheme()
2020-12-26 23:27:53 +01:00
const children = useMemo(() => {
switch (type) {
case 'icon':
return (
<Icon
color={theme.primaryDefault}
name={content || 'ChevronLeft'}
2020-12-26 23:27:53 +01:00
size={StyleConstants.Spacing.M * 1.25}
/>
)
case 'text':
return (
<Text
style={[styles.text, { color: theme.primaryDefault }]}
2020-12-26 23:27:53 +01:00
children={content}
/>
)
}
}, [theme])
2020-11-30 00:24:53 +01:00
return (
2020-12-13 23:38:37 +01:00
<Pressable
onPress={onPress}
2020-12-26 23:27:53 +01:00
children={children}
2020-12-13 23:38:37 +01:00
style={[
styles.base,
{
backgroundColor: theme.backgroundOverlayDefault,
2021-01-30 01:29:15 +01:00
...(type === 'icon' && {
height: 44,
width: 44,
marginLeft: native ? -9 : 9
})
2020-12-13 23:38:37 +01:00
}
]}
2020-12-26 23:27:53 +01:00
/>
2020-11-30 00:24:53 +01:00
)
}
const styles = StyleSheet.create({
base: {
2020-12-13 23:38:37 +01:00
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
borderRadius: 100
2020-11-30 00:24:53 +01:00
},
text: {
...StyleConstants.FontStyle.M
2020-11-30 00:24:53 +01:00
}
})
2020-12-12 12:49:29 +01:00
export default HeaderLeft