This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.

31 lines
872 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 habitsTracker={habitsTracker} />
)}
2024-03-15 23:24:08 +01:00
</SafeAreaView>
)
}
export default HabitsPage