2024-08-10 19:06:25 +02:00
|
|
|
import { Tabs } from "expo-router";
|
2024-06-26 04:20:08 +02:00
|
|
|
|
2024-08-10 19:06:25 +02:00
|
|
|
import { Colors } from "@/constants/Colors";
|
|
|
|
import { useColorScheme } from "@/hooks/useColorScheme";
|
|
|
|
import { TabBarIcon } from "@/components/navigation/TabBarIcon";
|
|
|
|
import { Provider } from "react-redux";
|
|
|
|
import fixtures from "@/__fixtures__/initialProducts";
|
|
|
|
import { setupStore } from "../store";
|
|
|
|
const CarpetRoleSvg = require("@/assets/images/icons/icon-carpet-roll.svg");
|
|
|
|
const CarpetRoleSelectedSvg = require("@/assets/images/icons/icon-carpet-roll-selected.svg");
|
|
|
|
|
|
|
|
const CarpetRollIcon = ({ selected }: { selected: boolean }) => {
|
|
|
|
return selected ? CarpetRoleSelectedSvg : CarpetRoleSvg;
|
|
|
|
};
|
2024-06-26 04:20:08 +02:00
|
|
|
|
|
|
|
export default function TabLayout() {
|
|
|
|
const colorScheme = useColorScheme();
|
2024-06-29 02:04:30 +02:00
|
|
|
const store = setupStore({
|
2024-07-31 19:01:45 +02:00
|
|
|
products: fixtures,
|
2024-07-02 17:34:23 +02:00
|
|
|
units: "ft",
|
2024-06-29 02:04:30 +02:00
|
|
|
});
|
2024-06-26 04:20:08 +02:00
|
|
|
return (
|
2024-06-29 02:04:30 +02:00
|
|
|
<Provider store={store}>
|
|
|
|
<Tabs
|
|
|
|
screenOptions={{
|
2024-08-10 19:06:25 +02:00
|
|
|
tabBarActiveTintColor: Colors[colorScheme ?? "light"].tint,
|
2024-06-29 02:04:30 +02:00
|
|
|
headerShown: false,
|
2024-08-10 19:06:25 +02:00
|
|
|
}}
|
|
|
|
>
|
2024-06-29 02:04:30 +02:00
|
|
|
<Tabs.Screen
|
|
|
|
name="index"
|
|
|
|
options={{
|
2024-08-10 19:06:25 +02:00
|
|
|
title: "Plywood",
|
|
|
|
tabBarIcon: ({ color, focused }) => (
|
|
|
|
<TabBarIcon
|
|
|
|
name={focused ? "scale" : "scale-outline"}
|
|
|
|
color={color}
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Tabs.Screen
|
|
|
|
name="product-editor"
|
|
|
|
options={{
|
|
|
|
title: "Carpet Roll Calculator",
|
2024-06-29 02:04:30 +02:00
|
|
|
tabBarIcon: ({ color, focused }) => (
|
2024-08-10 19:06:25 +02:00
|
|
|
<CarpetRollIcon selected={focused} />
|
2024-06-29 02:04:30 +02:00
|
|
|
),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Tabs.Screen
|
|
|
|
name="product-editor"
|
|
|
|
options={{
|
2024-08-10 19:06:25 +02:00
|
|
|
title: "Edit Products",
|
2024-06-29 02:04:30 +02:00
|
|
|
tabBarIcon: ({ color, focused }) => (
|
2024-08-10 19:06:25 +02:00
|
|
|
<TabBarIcon
|
|
|
|
name={focused ? "list" : "list-outline"}
|
|
|
|
color={color}
|
|
|
|
/>
|
2024-06-29 02:04:30 +02:00
|
|
|
),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</Tabs>
|
|
|
|
</Provider>
|
2024-06-26 04:20:08 +02:00
|
|
|
);
|
|
|
|
}
|