diff --git a/presentation/react/components/HabitsHistory/HabitsHistory.tsx b/presentation/react/components/HabitsHistory/HabitsHistory.tsx index 33eef0b..952ff1d 100644 --- a/presentation/react/components/HabitsHistory/HabitsHistory.tsx +++ b/presentation/react/components/HabitsHistory/HabitsHistory.tsx @@ -1,6 +1,7 @@ -import { FlatList } from "react-native" -import { List } from "react-native-paper" -import { useState } from "react" +import { FlatList, View } from "react-native" +import { Button, List, Text } from "react-native-paper" +import { useMemo, useState } from "react" +import { useRouter } from "expo-router" import type { GoalFrequency } from "@/domain/entities/Goal" import { GOAL_FREQUENCIES } from "@/domain/entities/Goal" @@ -15,6 +16,14 @@ export interface HabitsHistoryProps { export const HabitsHistory: React.FC = (props) => { const { habitsTracker } = props + const router = useRouter() + + const habitsByFrequency = useMemo(() => { + return GOAL_FREQUENCIES.filter((frequency) => { + return habitsTracker.habitsHistory[frequency].length > 0 + }) + }, [habitsTracker]) + const [accordionExpanded, setAccordionExpanded] = useState<{ [key in GoalFrequency]: boolean }>({ @@ -23,6 +32,41 @@ export const HabitsHistory: React.FC = (props) => { monthly: true, }) + if (habitsByFrequency.length <= 0) { + return ( + + {"Let's begin by adding habits! 🤩"} + + + ) + } + return ( = (props) => { }, ]} > - {GOAL_FREQUENCIES.map((frequency) => { + {habitsByFrequency.map((frequency) => { return (