tooot/src/components/Menu/Row.tsx

179 lines
4.2 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'
2020-12-29 16:19:04 +01:00
import { Pressable, StyleSheet, Switch, Text, View } from 'react-native'
2020-12-27 00:55:22 +01:00
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
2020-12-29 16:19:04 +01:00
description?: string
content?: string
2020-12-27 00:55:22 +01:00
2020-12-29 16:19:04 +01:00
switchValue?: boolean
switchDisabled?: boolean
switchOnValueChange?: () => void
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
}
2020-12-28 00:59:57 +01:00
const MenuRow: React.FC<Props> = ({
iconFront,
2020-12-28 00:59:57 +01:00
iconFrontColor = 'primary',
title,
2020-12-29 16:19:04 +01:00
description,
content,
2020-12-29 16:19:04 +01:00
switchValue,
switchDisabled,
switchOnValueChange,
iconBack,
2020-12-28 00:59:57 +01:00
iconBackColor = 'secondary',
loading = false,
onPress
}) => {
2020-11-23 00:07:32 +01:00
const { theme } = useTheme()
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]
)
return (
<Pressable
style={styles.base}
2020-12-28 00:59:57 +01:00
onPress={onPress}
disabled={loading}
testID='base'
2020-12-27 00:55:22 +01:00
>
2020-12-28 00:59:57 +01:00
<View style={styles.core}>
<View style={styles.front}>
{iconFront && (
<Feather
name={iconFront}
size={StyleConstants.Font.Size.M + 2}
color={theme[iconFrontColor]}
style={styles.iconFront}
/>
)}
2020-12-29 16:19:04 +01:00
<View style={styles.main}>
<Text
style={[styles.title, { color: theme.primary }]}
numberOfLines={1}
>
{title}
</Text>
{description ? (
<Text style={[styles.description, { color: theme.secondary }]}>
{description}
</Text>
2020-12-28 00:59:57 +01:00
) : null}
</View>
2020-12-29 16:19:04 +01:00
</View>
2021-01-01 23:10:47 +01:00
{(content && content.length) ||
switchValue !== undefined ||
iconBack ? (
<View style={styles.back}>
{content && content.length ? (
<>
<Text
style={[
styles.content,
{
color: theme.secondary,
opacity: !iconBack && loading ? 0 : 1
}
]}
numberOfLines={1}
>
{content}
</Text>
{loading && !iconBack && loadingSpinkit}
</>
) : null}
{switchValue !== undefined ? (
<Switch
value={switchValue}
onValueChange={switchOnValueChange}
disabled={switchDisabled}
trackColor={{ true: theme.blue, false: theme.disabled }}
2020-12-29 16:19:04 +01:00
/>
2021-01-01 23:10:47 +01:00
) : null}
{iconBack ? (
<>
<Feather
name={iconBack}
size={StyleConstants.Font.Size.M + 2}
color={theme[iconBackColor]}
style={[styles.iconBack, { opacity: loading ? 0 : 1 }]}
/>
{loading && loadingSpinkit}
</>
) : null}
</View>
) : null}
2020-12-28 00:59:57 +01:00
</View>
2020-11-22 00:46:23 +01:00
</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: {
2021-01-01 23:10:47 +01:00
flex: 2,
flexDirection: 'row',
alignItems: 'center'
},
back: {
flex: 1,
flexDirection: 'row',
justifyContent: 'flex-end',
2021-01-01 23:10:47 +01:00
alignItems: 'center',
marginLeft: StyleConstants.Spacing.M
},
iconFront: {
2020-11-22 00:46:23 +01:00
marginRight: 8
},
2020-12-29 16:19:04 +01:00
main: {
flex: 1
},
title: {
...StyleConstants.FontStyle.M
},
2020-12-29 16:19:04 +01:00
description: {
...StyleConstants.FontStyle.S,
marginTop: StyleConstants.Spacing.XS
},
content: {
...StyleConstants.FontStyle.M
},
iconBack: {
marginLeft: 8
2020-11-22 00:46:23 +01:00
}
})
2020-12-27 00:55:22 +01:00
export default MenuRow