2024-03-22 23:41:51 +01:00
|
|
|
import { Redirect, Tabs } from "expo-router"
|
|
|
|
import React from "react"
|
|
|
|
|
|
|
|
import { TabBarIcon } from "@/presentation/react/components/TabBarIcon"
|
|
|
|
import { useAuthentication } from "@/presentation/react/contexts/Authentication"
|
|
|
|
|
|
|
|
const TabLayout: React.FC = () => {
|
|
|
|
const { user } = useAuthentication()
|
|
|
|
|
|
|
|
if (user == null) {
|
2024-03-23 01:43:27 +01:00
|
|
|
return <Redirect href="/authentication/login" />
|
2024-03-22 23:41:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Tabs
|
|
|
|
screenOptions={{
|
|
|
|
headerShown: false,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Tabs.Screen
|
|
|
|
name="habits/index"
|
|
|
|
options={{
|
|
|
|
headerShown: false,
|
|
|
|
title: "Habits",
|
|
|
|
tabBarIcon: ({ color }) => {
|
|
|
|
return <TabBarIcon name="sticky-note" color={color} />
|
|
|
|
},
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Tabs.Screen
|
|
|
|
name="habits/new"
|
|
|
|
options={{
|
|
|
|
title: "New Habit",
|
|
|
|
tabBarIcon: ({ color }) => {
|
|
|
|
return <TabBarIcon name="plus-square" color={color} />
|
|
|
|
},
|
|
|
|
}}
|
|
|
|
/>
|
2024-03-24 23:41:23 +01:00
|
|
|
<Tabs.Screen
|
|
|
|
name="habits/[habitId]"
|
|
|
|
options={{
|
|
|
|
href: null,
|
|
|
|
}}
|
|
|
|
/>
|
2024-03-22 23:41:51 +01:00
|
|
|
<Tabs.Screen
|
|
|
|
name="habits/history"
|
|
|
|
options={{
|
|
|
|
title: "History",
|
|
|
|
tabBarIcon: ({ color }) => {
|
|
|
|
return <TabBarIcon name="history" color={color} />
|
|
|
|
},
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Tabs.Screen
|
|
|
|
name="users/settings"
|
|
|
|
options={{
|
|
|
|
title: "Settings",
|
|
|
|
tabBarIcon: ({ color }) => {
|
|
|
|
return <TabBarIcon name="cog" color={color} />
|
|
|
|
},
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</Tabs>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TabLayout
|