/*
* Copyright (c) 2019 - 2020 Arnaud Vergnet.
*
* This file is part of Campus INSAT.
*
* Campus INSAT is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Campus INSAT is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Campus INSAT. If not, see .
*/
import * as React from 'react';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { Title, useTheme } from 'react-native-paper';
import { StyleSheet } from 'react-native';
import i18n from 'i18n-js';
import { View } from 'react-native-animatable';
import HomeScreen from '../screens/Home/HomeScreen';
import PlanningScreen from '../screens/Planning/PlanningScreen';
import ProxiwashScreen from '../screens/Proxiwash/ProxiwashScreen';
import PlanexScreen from '../screens/Planex/PlanexScreen';
import CustomTabBar from '../components/Tabbar/CustomTabBar';
import WebsitesHomeScreen from '../screens/Services/ServicesScreen';
import Mascot, { MASCOT_STYLE } from '../components/Mascot/Mascot';
import { usePreferences } from '../context/preferencesContext';
import {
getPreferenceString,
GeneralPreferenceKeys,
} from '../utils/asyncStorage';
import { ParsedUrlDataType } from '../utils/URLHandler';
const styles = StyleSheet.create({
header: {
flexDirection: 'row',
},
mascot: {
width: 50,
},
title: {
marginLeft: 10,
marginTop: 'auto',
marginBottom: 'auto',
},
});
export enum TabRoutes {
Services = 'services',
Proxiwash = 'proxiwash',
Home = 'home',
Planning = 'events',
Planex = 'planex',
}
type DefaultParams = { [key in TabRoutes]: object | undefined };
export type TabStackParamsList = DefaultParams & {
[TabRoutes.Home]: ParsedUrlDataType;
};
const Tab = createBottomTabNavigator();
type PropsType = {
defaultData?: ParsedUrlDataType;
};
const ICONS: {
[key: string]: {
normal: string;
focused: string;
};
} = {
services: {
normal: 'account-circle-outline',
focused: 'account-circle',
},
proxiwash: {
normal: 'tshirt-crew-outline',
focused: 'tshirt-crew',
},
home: {
normal: '',
focused: '',
},
events: {
normal: 'calendar-range-outline',
focused: 'calendar-range',
},
planex: {
normal: 'clock-outline',
focused: 'clock',
},
};
function TabNavigator(props: PropsType) {
const { preferences } = usePreferences();
let defaultRoute = getPreferenceString(
GeneralPreferenceKeys.defaultStartScreen,
preferences
);
if (!defaultRoute) {
defaultRoute = 'home';
} else {
defaultRoute = defaultRoute.toLowerCase();
}
const { colors } = useTheme();
const LABELS: {
[key: string]: string;
} = {
services: i18n.t('screens.services.title'),
proxiwash: i18n.t('screens.proxiwash.title'),
home: i18n.t('screens.home.title'),
events: i18n.t('screens.planning.title'),
planex: i18n.t('screens.planex.title'),
};
return (
(
)}
>
(
{headerProps.children}
),
}}
initialParams={props.defaultData}
/>
);
}
export default React.memo(
TabNavigator,
(pp: PropsType, np: PropsType) => pp.defaultData === np.defaultData
);