tooot/src/components/Header/Left.tsx

65 lines
1.4 KiB
TypeScript
Raw Normal View History

2020-12-26 23:27:53 +01:00
import React, { useMemo } from 'react'
2020-11-30 00:24:53 +01:00
import { Pressable, StyleSheet, Text } from 'react-native'
2020-12-26 23:27:53 +01:00
import { Feather } from '@expo/vector-icons'
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'
2020-11-30 00:24:53 +01:00
2020-12-26 23:27:53 +01:00
export interface Props {
type?: 'icon' | 'text'
content?: string
2020-11-30 00:24:53 +01:00
2020-12-26 23:27:53 +01:00
onPress: () => void
}
2020-12-26 23:27:53 +01:00
const HeaderLeft: React.FC<Props> = ({ type = 'icon', content, 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 (
<Feather
name={content || ('chevron-left' as any)}
color={theme.primary}
size={StyleConstants.Spacing.M * 1.25}
/>
)
case 'text':
return (
<Text
style={[styles.text, { color: theme.primary }]}
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.backgroundGradientStart,
2020-12-26 23:27:53 +01:00
...(type === 'icon' && { height: 44, width: 44, marginLeft: -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