2021-09-13 20:41:05 +00:00
|
|
|
import React from 'react';
|
2022-10-21 18:27:55 +00:00
|
|
|
import { Pressable, View } from 'react-native';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
import styles from './styles';
|
2022-10-21 18:27:55 +00:00
|
|
|
import { useTheme } from '../../theme';
|
|
|
|
import { ITabBarProps } from './interfaces';
|
|
|
|
import { isIOS } from '../../lib/methods/helpers';
|
|
|
|
import { CustomIcon } from '../CustomIcon';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
2022-10-21 18:27:55 +00:00
|
|
|
const TabBar = ({ activeTab, tabs, goToPage }: ITabBarProps): React.ReactElement => {
|
|
|
|
const { colors } = useTheme();
|
2021-09-13 20:41:05 +00:00
|
|
|
|
2022-10-21 18:27:55 +00:00
|
|
|
return (
|
|
|
|
<View style={styles.tabsContainer}>
|
|
|
|
{tabs?.map((tab, i) => (
|
|
|
|
<Pressable
|
|
|
|
key={tab}
|
|
|
|
onPress={() => goToPage?.(i)}
|
|
|
|
testID={`emoji-picker-tab-${tab}`}
|
|
|
|
android_ripple={{ color: colors.bannerBackground }}
|
|
|
|
style={({ pressed }: { pressed: boolean }) => [
|
|
|
|
styles.tab,
|
|
|
|
{
|
|
|
|
backgroundColor: isIOS && pressed ? colors.bannerBackground : 'transparent'
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
>
|
|
|
|
<CustomIcon name={tab} size={24} color={activeTab === i ? colors.tintColor : colors.auxiliaryTintColor} />
|
|
|
|
<View
|
|
|
|
style={
|
|
|
|
activeTab === i
|
|
|
|
? [styles.activeTabLine, { backgroundColor: colors.tintColor }]
|
|
|
|
: [styles.tabLine, { backgroundColor: colors.borderColor }]
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</Pressable>
|
|
|
|
))}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
};
|
2021-09-13 20:41:05 +00:00
|
|
|
|
2022-10-21 18:27:55 +00:00
|
|
|
export default TabBar;
|