69 lines
1.3 KiB
TypeScript
69 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import { StyleSheet, View, Platform } from 'react-native';
|
|
|
|
import { CustomIcon } from '../../../../containers/CustomIcon';
|
|
import { useTheme } from '../../../../theme';
|
|
import Touch from '../../../../containers/Touch';
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
position: 'absolute',
|
|
right: 15
|
|
},
|
|
button: {
|
|
borderRadius: 25
|
|
},
|
|
content: {
|
|
width: 50,
|
|
height: 50,
|
|
borderRadius: 25,
|
|
borderWidth: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center'
|
|
}
|
|
});
|
|
|
|
const NavBottomFAB = ({
|
|
visible,
|
|
onPress,
|
|
isThread
|
|
}: {
|
|
visible: boolean;
|
|
onPress: Function;
|
|
isThread: boolean;
|
|
}): React.ReactElement | null => {
|
|
const { colors } = useTheme();
|
|
|
|
if (!visible) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<View
|
|
style={[
|
|
styles.container,
|
|
{
|
|
...Platform.select({
|
|
ios: {
|
|
bottom: 100 + (isThread ? 40 : 0)
|
|
},
|
|
android: {
|
|
top: 15,
|
|
scaleY: -1
|
|
}
|
|
})
|
|
}
|
|
]}
|
|
testID='nav-jump-to-bottom'
|
|
>
|
|
<Touch onPress={() => onPress()} style={[styles.button, { backgroundColor: colors.backgroundColor }]}>
|
|
<View style={[styles.content, { borderColor: colors.borderColor }]}>
|
|
<CustomIcon name='chevron-down' color={colors.auxiliaryTintColor} size={36} />
|
|
</View>
|
|
</Touch>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default NavBottomFAB;
|