mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
206 lines
5.9 KiB
TypeScript
206 lines
5.9 KiB
TypeScript
import React from "react";
|
|
import { Drawer } from "expo-router/drawer";
|
|
import { useSignOut } from "@/hooks/firebase/useSignOut";
|
|
import {
|
|
DrawerContentScrollView,
|
|
DrawerItem,
|
|
DrawerItemList,
|
|
} from "@react-navigation/drawer";
|
|
import { Button, View, Text, ButtonSize } from "react-native-ui-lib";
|
|
import { StyleSheet } from "react-native";
|
|
import Feather from "@expo/vector-icons/Feather";
|
|
import DrawerButton from "@/components/shared/DrawerButton";
|
|
import {
|
|
AntDesign,
|
|
FontAwesome6,
|
|
MaterialCommunityIcons,
|
|
Octicons,
|
|
} from "@expo/vector-icons";
|
|
import MenuIcon from "@/assets/svgs/MenuIcon";
|
|
import { router } from "expo-router";
|
|
|
|
export default function TabLayout() {
|
|
const { mutateAsync: signOut } = useSignOut();
|
|
|
|
return (
|
|
<Drawer
|
|
initialRouteName={"index"}
|
|
screenOptions={{
|
|
headerShown: true,
|
|
drawerStyle: {
|
|
width: "90%",
|
|
backgroundColor: "#f9f8f7",
|
|
height: "100%",
|
|
},
|
|
drawerIcon: () => <MenuIcon />,
|
|
}}
|
|
drawerContent={(props) => {
|
|
return (
|
|
<DrawerContentScrollView {...props} style={{ height: "100%" }}>
|
|
<View centerH centerV margin-30>
|
|
<Text text50>Welcome to Kali</Text>
|
|
</View>
|
|
<View
|
|
style={{
|
|
flexDirection: "row",
|
|
paddingHorizontal: 30,
|
|
}}
|
|
>
|
|
<View style={{ flex: 1, paddingRight: 5 }}>
|
|
<DrawerButton
|
|
title={"Calendar"}
|
|
color="rgb(7, 184, 199)"
|
|
bgColor={"rgb(231, 248, 250)"}
|
|
pressFunc={() => props.navigation.navigate("calendar")}
|
|
icon={
|
|
<Feather
|
|
name="calendar"
|
|
size={30}
|
|
color="rgb(7, 184, 199)"
|
|
/>
|
|
}
|
|
/>
|
|
<DrawerButton
|
|
color="#50be0c"
|
|
title={"Groceries"}
|
|
bgColor={"#eef9e7"}
|
|
pressFunc={() => props.navigation.navigate("grocery")}
|
|
icon={
|
|
<MaterialCommunityIcons
|
|
name="food-apple-outline"
|
|
size={30}
|
|
color="#50be0c"
|
|
/>
|
|
}
|
|
/>
|
|
</View>
|
|
<View style={{ flex: 1 }}>
|
|
{/*<DrawerButton
|
|
color="#fd1775"
|
|
title={"My Reminders"}
|
|
bgColor={"#ffe8f2"}
|
|
pressFunc={() => props.navigation.navigate("reminders")}
|
|
icon={
|
|
<FontAwesome6
|
|
name="clock-rotate-left"
|
|
size={28}
|
|
color="#fd1775"
|
|
/>
|
|
}
|
|
/>*/}
|
|
<DrawerButton
|
|
color="#8005eb"
|
|
title={"To Dos"}
|
|
bgColor={"#f3e6fd"}
|
|
pressFunc={() => props.navigation.navigate("todos")}
|
|
icon={
|
|
<AntDesign name="checkcircleo" size={30} color="#8005eb" />
|
|
}
|
|
/>
|
|
<DrawerButton
|
|
color="#e0ca03"
|
|
title={"Brain Dump"}
|
|
bgColor={"#fffacb"}
|
|
pressFunc={() => props.navigation.navigate("brain_dump")}
|
|
icon={<AntDesign name="book" size={30} color="#e0ca03" />}
|
|
/>
|
|
{/*<DrawerItem label="Logout" onPress={() => signOut()} />*/}
|
|
</View>
|
|
</View>
|
|
<Button
|
|
onPress={() => props.navigation.navigate("settings")}
|
|
label={"Manage Settings"}
|
|
iconSource={() => (
|
|
<View
|
|
backgroundColor="#ededed"
|
|
width={60}
|
|
height={60}
|
|
style={{ borderRadius: 50 }}
|
|
marginR-10
|
|
centerV
|
|
centerH
|
|
>
|
|
<Octicons name="gear" size={30} color="#6c645b" />
|
|
</View>
|
|
)}
|
|
backgroundColor="white"
|
|
color="#464039"
|
|
paddingV-30
|
|
marginH-30
|
|
marginB-10
|
|
borderRadius={15}
|
|
style={{ elevation: 1 }}
|
|
/>
|
|
|
|
<Button
|
|
size={ButtonSize.large}
|
|
marginH-30
|
|
paddingV-15
|
|
style={{
|
|
marginTop: "47%",
|
|
backgroundColor: "transparent",
|
|
borderWidth: 2,
|
|
borderColor: "#fd1775",
|
|
}}
|
|
label="Sign out of Kali"
|
|
color="#fd1775"
|
|
onPress={() => signOut()}
|
|
/>
|
|
</DrawerContentScrollView>
|
|
);
|
|
}}
|
|
>
|
|
<Drawer.Screen
|
|
name="index"
|
|
options={{
|
|
drawerLabel: "Calendar",
|
|
title: "Calendar",
|
|
}}
|
|
/>
|
|
<Drawer.Screen
|
|
name="calendar"
|
|
options={{
|
|
drawerLabel: "Calendar",
|
|
title: "Calendar",
|
|
drawerItemStyle: { display: "none" },
|
|
}}
|
|
/>
|
|
<Drawer.Screen
|
|
name="brain_dump"
|
|
options={{
|
|
drawerLabel: "Brain Dump",
|
|
title: "Brain Dump",
|
|
}}
|
|
/>
|
|
<Drawer.Screen
|
|
name="settings"
|
|
options={{
|
|
drawerLabel: "Settings",
|
|
title: "Settings",
|
|
}}
|
|
/>
|
|
<Drawer.Screen
|
|
name="grocery"
|
|
options={{
|
|
drawerLabel: "Grocery",
|
|
title: "Grocery",
|
|
}}
|
|
/>
|
|
<Drawer.Screen
|
|
name="reminders"
|
|
options={{
|
|
drawerLabel: "Reminders",
|
|
title: "Reminders",
|
|
}}
|
|
/>
|
|
<Drawer.Screen
|
|
name="todos"
|
|
options={{
|
|
drawerLabel: "To-Do",
|
|
title: "To-Do",
|
|
}}
|
|
/>
|
|
</Drawer>
|
|
);
|
|
}
|