- Added a new DocumentsScreen for managing user documents with search and date filtering capabilities. - Created AddDocumentModal for uploading documents with file selection and custom title options. - Introduced SiteDocumentsScreen to display documents related to specific construction sites. - Implemented SitesScreen for listing construction sites with search functionality. - Updated ProfileScreen to link to the new DocumentsScreen. - Refactored RangePickerModal for selecting date ranges in document filtering. - Improved date formatting utilities for better timestamp handling. - Added necessary API calls for document and site management. - Updated types to reflect changes in document structure and site information. - Added expo-document-picker dependency for document selection functionality.
86 lines
2.2 KiB
TypeScript
86 lines
2.2 KiB
TypeScript
import { Redirect, Tabs } from 'expo-router';
|
|
import { Home, Clock, Zap, CalendarIcon, Building } from 'lucide-react-native';
|
|
import { useContext } from 'react';
|
|
import { AuthContext } from '@/utils/authContext';
|
|
|
|
export default function ProtectedLayout() {
|
|
const authState = useContext(AuthContext);
|
|
|
|
if (!authState.isReady) {
|
|
return null;
|
|
}
|
|
|
|
if (!authState.isAuthenticated) {
|
|
return <Redirect href="/login" />;
|
|
}
|
|
|
|
// TODO: Aggiungere padding per i dispositivi con notch/bottom bar
|
|
return (
|
|
<Tabs
|
|
screenOptions={{
|
|
headerShown: false,
|
|
tabBarStyle: {
|
|
backgroundColor: '#ffffff',
|
|
borderTopWidth: 1,
|
|
borderTopColor: '#f3f4f6',
|
|
height: 80,
|
|
paddingBottom: 20,
|
|
paddingTop: 10,
|
|
},
|
|
tabBarActiveTintColor: '#099499',
|
|
tabBarInactiveTintColor: '#9ca3af',
|
|
tabBarLabelStyle: {
|
|
fontSize: 10,
|
|
fontWeight: '600',
|
|
marginTop: 4
|
|
}
|
|
}}
|
|
backBehavior='history'
|
|
>
|
|
<Tabs.Screen
|
|
name="index"
|
|
options={{
|
|
title: 'Home',
|
|
tabBarIcon: ({ color, size }) => <Home color={color} size={24} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="attendance/index"
|
|
options={{
|
|
title: 'Presenze',
|
|
tabBarIcon: ({ color, size }) => <Clock color={color} size={24} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="permits/index"
|
|
options={{
|
|
title: 'Permessi',
|
|
tabBarIcon: ({ color, size }) => <CalendarIcon color={color} size={24} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="sites"
|
|
options={{
|
|
title: 'Cantieri',
|
|
tabBarIcon: ({ color, size }) => <Building color={color} size={24} />,
|
|
}}
|
|
/>
|
|
{/* // TODO: Rimuovere all'utente e mostrare solo a admin */}
|
|
<Tabs.Screen
|
|
name="automation"
|
|
options={{
|
|
title: 'Domotica',
|
|
tabBarIcon: ({ color, size }) => <Zap color={color} size={24} />,
|
|
}}
|
|
/>
|
|
{/* TODO: Dovrebbe essere rimosso, va rivisto layout */}
|
|
<Tabs.Screen
|
|
name="profile"
|
|
options={{
|
|
href: null,
|
|
title: 'Profilo',
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
} |