LandingPageNavigator.js 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. import { View, Text, UIManager, Platform } from 'react-native';
  2. import React from 'react';
  3. import { createDrawerNavigator } from '@react-navigation/drawer';
  4. import LandingPage from '../screens/LandingPage';
  5. import NewscoutHomeHeader from '../components/organisms/Headers/NewscoutHomeHeader';
  6. import metrics from '../theme/metrics';
  7. import SidebarPage from '../screens/SidebarPage';
  8. import { TouchableWithoutFeedback } from 'react-native-gesture-handler';
  9. import MaterialIcon from "react-native-vector-icons/dist/MaterialIcons";
  10. import colors from '../theme/colors';
  11. import NewsDetailPage from '../screens/NewsDetailPage';
  12. import NotificationsPage from '../screens/NotificationsPage';
  13. import CategoryPage from '../screens/CategoryPage';
  14. const Drawer = createDrawerNavigator();
  15. const LandingPageNavigator = () => {
  16. const isLargeScreen = metrics.screenWidth >= 768;
  17. if (
  18. Platform.OS === 'android' &&
  19. UIManager.setLayoutAnimationEnabledExperimental
  20. ) {
  21. UIManager.setLayoutAnimationEnabledExperimental(true);
  22. }
  23. return (
  24. <Drawer.Navigator
  25. initialRouteName="LandingPage"
  26. screenOptions={{
  27. drawerType: 'front',
  28. drawerStyle: isLargeScreen ? null : { width: '100%' },
  29. }}
  30. drawerContent={({ navigation }) => <SidebarPage navigation={navigation} />}>
  31. <Drawer.Screen
  32. name="LandingPage"
  33. component={LandingPage}
  34. options={({ navigation }) => ({
  35. headerShown: true,
  36. header: () => (
  37. <NewscoutHomeHeader>
  38. <View style={{alignItems:'center',flexDirection: 'row',gap: 16}}>
  39. <TouchableWithoutFeedback onPress={() => navigation.navigate('Notifications')}>
  40. <MaterialIcon name='notifications-none' color={colors.tertiaryColor} size={30} />
  41. </TouchableWithoutFeedback>
  42. <TouchableWithoutFeedback onPress={() => navigation.toggleDrawer()}>
  43. <MaterialIcon name='list' color={colors.topColor} size={30} />
  44. </TouchableWithoutFeedback>
  45. </View>
  46. </NewscoutHomeHeader>
  47. ),
  48. })}
  49. />
  50. <Drawer.Screen
  51. name="NewsDetailPage"
  52. component={NewsDetailPage}
  53. options={() =>({
  54. headerShown: false
  55. })}
  56. />
  57. <Drawer.Screen
  58. name="Notifications"
  59. component={NotificationsPage}
  60. options={() =>({
  61. headerShown: false
  62. })}
  63. />
  64. <Drawer.Screen
  65. name="CategoryPage"
  66. component={CategoryPage}
  67. options={() => ({
  68. headerShown: false
  69. })}
  70. />
  71. </Drawer.Navigator>
  72. );
  73. };
  74. export default LandingPageNavigator;