tooot/src/components/Menu/Row.tsx

149 lines
3.4 KiB
TypeScript
Raw Normal View History

2020-11-22 00:46:23 +01:00
import { Feather } from '@expo/vector-icons'
2020-12-27 00:55:22 +01:00
import { StyleConstants } from '@utils/styles/constants'
2020-12-13 14:04:25 +01:00
import { useTheme } from '@utils/styles/ThemeManager'
import { ColorDefinitions } from '@utils/styles/themes'
2020-12-27 00:55:22 +01:00
import React, { useMemo } from 'react'
import { Pressable, StyleSheet, Text, View } from 'react-native'
import { Chase } from 'react-native-animated-spinkit'
2020-11-24 00:18:47 +01:00
2020-11-22 00:46:23 +01:00
export interface Props {
2020-12-12 12:49:29 +01:00
iconFront?: any
iconFrontColor?: ColorDefinitions
2020-12-27 00:55:22 +01:00
2020-11-22 00:46:23 +01:00
title: string
content?: string
2020-12-27 00:55:22 +01:00
iconBack?: 'chevron-right' | 'check'
iconBackColor?: ColorDefinitions
2020-12-27 00:55:22 +01:00
loading?: boolean
onPress?: () => void
2020-11-22 00:46:23 +01:00
}
const Core: React.FC<Props> = ({
iconFront,
iconFrontColor,
title,
content,
iconBack,
2020-12-27 00:55:22 +01:00
iconBackColor,
loading = false
}) => {
2020-11-23 00:07:32 +01:00
const { theme } = useTheme()
iconFrontColor = iconFrontColor || 'primary'
iconBackColor = iconBackColor || 'secondary'
2020-11-23 00:07:32 +01:00
2020-12-27 00:55:22 +01:00
const loadingSpinkit = useMemo(
() => (
<View style={{ position: 'absolute' }}>
<Chase
size={StyleConstants.Font.Size.M * 1.25}
color={theme.secondary}
/>
</View>
),
[theme]
)
2020-11-22 00:46:23 +01:00
return (
<View style={styles.core}>
<View style={styles.front}>
{iconFront && (
<Feather
name={iconFront}
2020-11-30 00:24:53 +01:00
size={StyleConstants.Font.Size.M + 2}
color={theme[iconFrontColor]}
style={styles.iconFront}
/>
)}
<Text style={[styles.text, { color: theme.primary }]} numberOfLines={1}>
{title}
</Text>
</View>
2020-12-03 01:28:56 +01:00
{(content || iconBack) && (
<View style={styles.back}>
{content && content.length ? (
2020-12-27 00:55:22 +01:00
<>
<Text
style={[
styles.content,
{
color: theme.secondary,
opacity: !iconBack && loading ? 0 : 1
}
]}
numberOfLines={1}
>
{content}
</Text>
{loading && !iconBack && loadingSpinkit}
</>
) : null}
2020-12-03 01:28:56 +01:00
{iconBack && (
2020-12-27 00:55:22 +01:00
<>
<Feather
name={iconBack}
size={StyleConstants.Font.Size.M + 2}
color={theme[iconBackColor]}
style={[styles.iconBack, { opacity: loading ? 0 : 1 }]}
/>
{loading && loadingSpinkit}
</>
2020-12-03 01:28:56 +01:00
)}
</View>
)}
2020-11-22 00:46:23 +01:00
</View>
)
}
2020-12-03 01:28:56 +01:00
const MenuRow: React.FC<Props> = ({ ...props }) => {
2020-12-27 00:55:22 +01:00
return (
<Pressable
style={styles.base}
{...(!props.loading && props.onPress && { onPress: props.onPress })}
>
2020-11-22 00:46:23 +01:00
<Core {...props} />
</Pressable>
)
}
const styles = StyleSheet.create({
base: {
2020-12-26 23:05:17 +01:00
height: 50
2020-11-22 00:46:23 +01:00
},
core: {
flex: 1,
flexDirection: 'row',
2020-11-30 00:24:53 +01:00
paddingLeft: StyleConstants.Spacing.Global.PagePadding,
paddingRight: StyleConstants.Spacing.Global.PagePadding
2020-11-22 00:46:23 +01:00
},
front: {
flex: 1,
2020-12-03 01:28:56 +01:00
flexBasis: '70%',
flexDirection: 'row',
alignItems: 'center'
},
back: {
flex: 1,
2020-12-03 01:28:56 +01:00
flexBasis: '30%',
flexDirection: 'row',
justifyContent: 'flex-end',
alignItems: 'center'
},
iconFront: {
2020-11-22 00:46:23 +01:00
marginRight: 8
},
text: {
2020-12-03 01:28:56 +01:00
flex: 1,
2020-11-30 00:24:53 +01:00
fontSize: StyleConstants.Font.Size.M
},
content: {
2020-11-30 00:24:53 +01:00
fontSize: StyleConstants.Font.Size.M
},
iconBack: {
marginLeft: 8
2020-11-22 00:46:23 +01:00
}
})
2020-12-27 00:55:22 +01:00
export default MenuRow