1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00

feat: add loading state while retrieving habits

This commit is contained in:
Théo LUDWIG 2024-03-24 23:51:29 +01:00
parent 1c648972d5
commit 57058c97b1
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

View File

@ -1,10 +1,11 @@
import { SafeAreaView } from "react-native-safe-area-context"
import { ActivityIndicator } from "react-native-paper"
import { HabitsHistory } from "@/presentation/react/components/HabitsHistory/HabitsHistory"
import { useHabitsTracker } from "@/presentation/react/contexts/HabitsTracker"
const HabitsPage: React.FC = () => {
const { habitsTracker } = useHabitsTracker()
const { habitsTracker, retrieveHabitsTracker } = useHabitsTracker()
return (
<SafeAreaView
@ -12,10 +13,16 @@ const HabitsPage: React.FC = () => {
{
flex: 1,
alignItems: "center",
justifyContent:
retrieveHabitsTracker.state === "loading" ? "center" : "flex-start",
},
]}
>
<HabitsHistory habitsHistory={habitsTracker.habitsHistory} />
{retrieveHabitsTracker.state === "loading" ? (
<ActivityIndicator animating size="large" />
) : (
<HabitsHistory habitsHistory={habitsTracker.habitsHistory} />
)}
</SafeAreaView>
)
}