// @flow import * as React from 'react'; import {Dimensions, FlatList, Image, Linking, Platform, StyleSheet} from 'react-native'; import {Badge, Container, Content, Left, ListItem, Right, Text} from "native-base"; import i18n from "i18n-js"; import CustomMaterialIcon from '../components/CustomMaterialIcon'; import ThemeManager from "../utils/ThemeManager"; const deviceHeight = Dimensions.get("window").height; const drawerCover = require("../assets/drawer-cover.png"); const WIKETUD_LINK = "https://www.etud.insa-toulouse.fr/wiketud"; const Amicale_LINK = "https://www.etud.insa-toulouse.fr/~amicale"; const RU_LINK = "http://m.insa-toulouse.fr/ru.html"; type Props = { navigation: Object, }; type State = { active: string, }; /** * Class used to define a navigation drawer */ export default class SideBar extends React.Component { dataSet: Array; state = { active: 'Home', }; /** * Generate the datasets * * @param props */ constructor(props: Props) { super(props); // Dataset used to render the drawer // If the link field is defined, clicking on the item will open the link this.dataSet = [ { name: "Amicale", route: "amicale", icon: "web", link: Amicale_LINK }, { name: "Wiketud", route: "wiketud", icon: "wikipedia", link: WIKETUD_LINK }, { name: i18n.t('screens.menuSelf'), route: "SelfMenuScreen", icon: "silverware-fork-knife", }, ]; } /** * Navigate to the selected route, close the drawer, and mark the correct item as selected * @param route {string} The route name to navigate to */ navigateToScreen(route: string) { this.props.navigation.navigate(route); }; render() { return ( item.route} renderItem={({item}) => { if (item.link !== undefined) Linking.openURL(item.link).catch((err) => console.error('Error opening link', err)); else this.navigateToScreen(item.route); }} > {item.name} {item.types && {`${item.types} Types`} } } /> ); } } const styles = StyleSheet.create({ drawerCover: { height: deviceHeight / 5, width: null, position: "relative", marginBottom: 10, marginTop: 20 }, text: { fontWeight: Platform.OS === "ios" ? "500" : "400", fontSize: 16, marginLeft: 20 }, badgeText: { fontSize: Platform.OS === "ios" ? 13 : 11, fontWeight: "400", textAlign: "center", marginTop: Platform.OS === "android" ? -3 : undefined } });