fixed euro sign on expense item (dont judge me I know this isnt the correct branch) and fixed the async storage so it acctually loads on the info

This commit is contained in:
thschleicher 2024-01-25 15:38:50 +01:00
parent 7a77b9ca79
commit 4ddc76faa4
2 changed files with 8 additions and 6 deletions

View file

@ -1,4 +1,5 @@
import AsyncStorage from '@react-native-async-storage/async-storage';
import { useIsFocused } from '@react-navigation/native';
import { router, useNavigation } from 'expo-router';
import { useEffect, useState } from 'react';
import { StyleSheet, View } from 'react-native';
@ -13,6 +14,7 @@ export default function Page() {
const containerColor = colors.containerColor;
const navigation = useNavigation();
const [selectedPage, setSelectedPage] = useState("noPageLoaded");
const isFocused = useIsFocused();
useEffect(() => {
AsyncStorage.getItem("currentBudgetPage").then((page) => {
@ -22,15 +24,14 @@ export default function Page() {
}).catch((error) => {
console.log("Error fetching previous page from Async Storage:", error);
})
}, []);
}, [isFocused]);
const {data, isLoading, reFetch} = useFetch({sql: "SELECT c.guid AS category_guid, c.name AS category_name, c.color AS category_color, c.type AS category_type, SUM(e.amount) as total_expenses, c.allocated_amount as allocated_amount FROM category c LEFT JOIN expense e ON e.category_guid = c.guid WHERE c.type = ? GROUP BY c.guid", args: selectedPage === "expenses" ? ["expense"] : selectedPage === "savings" ? ["saving"] : []});
useEffect(() => {
reFetch()
reFetch();
}, [selectedPage]);
const handlePageSelection = (page: string) => {
if(page !== selectedPage) {
setSelectedPage(page);