84 lines
2.3 KiB
TypeScript
84 lines
2.3 KiB
TypeScript
/* eslint-disable react-hooks/exhaustive-deps */
|
|
import { BackButton } from "@/components";
|
|
import AppHeader from "@/components/_ShareComponent/AppHeader";
|
|
import { IconHome, IconStatus } from "@/components/_Icon";
|
|
import BackButtonFromNotification from "@/components/Button/BackButtonFromNotification";
|
|
import { TabsStyles } from "@/styles/tabs-styles";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import {
|
|
router,
|
|
Tabs,
|
|
useLocalSearchParams
|
|
} from "expo-router";
|
|
import { View } from "react-native";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|
import { Platform } from "react-native";
|
|
|
|
function JobTabsWrapper() {
|
|
const insets = useSafeAreaInsets();
|
|
const paddingBottom = Platform.OS === "android" ? insets.bottom : 0;
|
|
const { from, category } = useLocalSearchParams<{
|
|
from?: string;
|
|
category?: string;
|
|
}>();
|
|
|
|
return (
|
|
<View style={{ flex: 1, backgroundColor: MainColor.darkblue }}>
|
|
<Tabs
|
|
screenOptions={{
|
|
...TabsStyles,
|
|
tabBarStyle: Platform.select({
|
|
ios: {
|
|
borderTopWidth: 0,
|
|
paddingTop: 12,
|
|
height: 80,
|
|
},
|
|
android: {
|
|
borderTopWidth: 0,
|
|
paddingTop: 5,
|
|
height: 70 + paddingBottom,
|
|
},
|
|
}),
|
|
header: () => (
|
|
<AppHeader
|
|
title="Job Vacancy"
|
|
left={
|
|
<BackButtonFromNotification from={from || ""} category={category} />
|
|
}
|
|
/>
|
|
),
|
|
}}
|
|
>
|
|
<Tabs.Screen
|
|
name="index"
|
|
options={{
|
|
title: "Beranda",
|
|
tabBarIcon: ({ color }) => <IconHome color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="status"
|
|
options={{
|
|
title: "Status",
|
|
tabBarIcon: ({ color }) => <IconStatus color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="archive"
|
|
options={{
|
|
title: "Arsip",
|
|
tabBarIcon: ({ color }) => (
|
|
<Ionicons size={20} name="archive" color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
export default function JobTabsLayout() {
|
|
return <JobTabsWrapper />;
|
|
}
|