Use of api instead of json file for the creating, deletion and edition

This commit is contained in:
2025-05-14 13:42:35 +02:00
parent 395d68a31a
commit 094c66f298
6 changed files with 139 additions and 134 deletions

View File

@@ -1,55 +1,59 @@
import { Link, Stack, useRouter } from 'expo-router';
import { useColorScheme} from 'react-native';
import { PaperProvider} from 'react-native-paper';
import { useColorScheme } from 'react-native';
import { PaperProvider } from 'react-native-paper';
import { MD3LightTheme, MD3DarkTheme } from 'react-native-paper';
import Ionicons from '@expo/vector-icons/Ionicons';
import useLocationStore from '@/store';
import { deleteLocation } from '@/api/locations';
export default function RootLayout() {
const colorScheme = useColorScheme();
const theme = colorScheme === 'dark' ? MD3DarkTheme :
MD3LightTheme;
const deleteLocation = useLocationStore((state) => state.deleteLocation);
MD3LightTheme;
const router = useRouter();
const handleDelete = (id) => {
deleteLocation(id);
router.replace('/');
deleteLocation(id);
while (router.canGoBack()) {
router.back();
}
router.replace('/');
};
return (
<PaperProvider theme={theme} >
<Stack screenOptions={{
headerStyle: {
backgroundColor: theme.colors.primaryContainer,
borderBottomWidth:0
},
headerTintColor: theme.colors.primary,
}}>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
<Stack.Screen
name="location/[id]"
options={({ route }) => ({
title: "Lokalizacja",
<Stack screenOptions={{
headerStyle: {
backgroundColor: theme.colors.primaryContainer,
borderBottomWidth: 0
},
headerTintColor: theme.colors.primary,
}}>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
<Stack.Screen
name="location/[id]"
options={({ route }) => ({
title: "Lokalizacja",
headerBackTitle: "Powrót",
headerRight: () => (
<Link
href={`location/edit/${route.params.id}`}
asChild
style={{ marginRight: 11 }}
>
<Ionicons name="pencil" color={theme.colors.primary} size={24} />
</Link>
),
})}
<Link
href={`location/edit/${route.params.id}`}
asChild
style={{ marginRight: 11 }}
>
<Ionicons name="pencil" color={theme.colors.primary} size={24} />
</Link>
),
})}
/>
<Stack.Screen name="location/edit/[id]" options={({ route }) =>({ title: "Edycja",
<Stack.Screen name="location/edit/[id]" options={({ route }) => ({
title: "Edycja",
headerRight: () => (
<Ionicons name="trash-bin" color={theme.colors.primary} size={24} onPress={() => handleDelete(route.params.id)}/>
), })}
<Ionicons name="trash-bin" color={theme.colors.primary} size={24} onPress={() => handleDelete(route.params.id)} />
),
})}
/>
</Stack>
</Stack>
</PaperProvider>
);
}