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

31 lines
886 B
TypeScript
Raw Normal View History

2024-03-15 23:24:08 +01:00
import { SafeAreaView } from "react-native-safe-area-context"
import { ActivityIndicator } from "react-native-paper"
2024-03-15 23:24:08 +01:00
2024-03-24 23:41:23 +01:00
import { HabitsHistory } from "@/presentation/react/components/HabitsHistory/HabitsHistory"
2024-03-16 00:36:44 +01:00
import { useHabitsTracker } from "@/presentation/react/contexts/HabitsTracker"
2024-03-15 23:24:08 +01:00
const HabitsPage: React.FC = () => {
const { habitsTracker, retrieveHabitsTracker } = useHabitsTracker()
2024-03-15 23:24:08 +01:00
return (
2024-03-24 23:41:23 +01:00
<SafeAreaView
style={[
{
flex: 1,
alignItems: "center",
justifyContent:
retrieveHabitsTracker.state === "loading" ? "center" : "flex-start",
2024-03-24 23:41:23 +01:00
},
]}
>
{retrieveHabitsTracker.state === "loading" ? (
<ActivityIndicator animating size="large" />
) : (
<HabitsHistory habitsHistory={habitsTracker.habitsHistory} />
)}
2024-03-15 23:24:08 +01:00
</SafeAreaView>
)
}
export default HabitsPage