2024-04-04 11:21:56 +02:00
|
|
|
import { FlatList, View } from "react-native"
|
|
|
|
import { Button, List, Text } from "react-native-paper"
|
|
|
|
import { useMemo, useState } from "react"
|
|
|
|
import { useRouter } from "expo-router"
|
2024-03-24 23:41:23 +01:00
|
|
|
|
2024-03-25 13:05:15 +01:00
|
|
|
import type { GoalFrequency } from "@/domain/entities/Goal"
|
|
|
|
import { GOAL_FREQUENCIES } from "@/domain/entities/Goal"
|
|
|
|
import type { HabitsTracker } from "@/domain/entities/HabitsTracker"
|
|
|
|
import { capitalize } from "@/presentation/presenters/utils/strings"
|
2024-03-24 23:41:23 +01:00
|
|
|
import { HabitHistory } from "./HabitHistory"
|
|
|
|
|
|
|
|
export interface HabitsHistoryProps {
|
2024-03-25 13:05:15 +01:00
|
|
|
habitsTracker: HabitsTracker
|
2024-03-24 23:41:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export const HabitsHistory: React.FC<HabitsHistoryProps> = (props) => {
|
2024-03-25 13:05:15 +01:00
|
|
|
const { habitsTracker } = props
|
|
|
|
|
2024-04-04 11:21:56 +02:00
|
|
|
const router = useRouter()
|
|
|
|
|
|
|
|
const habitsByFrequency = useMemo(() => {
|
|
|
|
return GOAL_FREQUENCIES.filter((frequency) => {
|
|
|
|
return habitsTracker.habitsHistory[frequency].length > 0
|
|
|
|
})
|
|
|
|
}, [habitsTracker])
|
|
|
|
|
2024-03-25 13:05:15 +01:00
|
|
|
const [accordionExpanded, setAccordionExpanded] = useState<{
|
|
|
|
[key in GoalFrequency]: boolean
|
|
|
|
}>({
|
|
|
|
daily: true,
|
|
|
|
weekly: true,
|
|
|
|
monthly: true,
|
|
|
|
})
|
2024-03-24 23:41:23 +01:00
|
|
|
|
2024-04-04 11:21:56 +02:00
|
|
|
if (habitsByFrequency.length <= 0) {
|
|
|
|
return (
|
|
|
|
<View
|
|
|
|
style={{
|
|
|
|
flex: 1,
|
|
|
|
alignItems: "center",
|
|
|
|
justifyContent: "center",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Text variant="titleLarge">{"Let's begin by adding habits! 🤩"}</Text>
|
|
|
|
<Button
|
|
|
|
mode="contained"
|
|
|
|
style={{
|
|
|
|
marginTop: 16,
|
|
|
|
width: 250,
|
|
|
|
height: 40,
|
|
|
|
}}
|
|
|
|
onPress={() => {
|
|
|
|
router.push("/application/habits/new")
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Text
|
|
|
|
style={{
|
|
|
|
color: "white",
|
|
|
|
fontWeight: "bold",
|
|
|
|
fontSize: 16,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Create your first habit! 🚀
|
|
|
|
</Text>
|
|
|
|
</Button>
|
|
|
|
</View>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-03-24 23:41:23 +01:00
|
|
|
return (
|
|
|
|
<List.Section
|
|
|
|
style={[
|
|
|
|
{
|
2024-03-25 13:05:15 +01:00
|
|
|
width: "92%",
|
2024-03-24 23:41:23 +01:00
|
|
|
},
|
|
|
|
]}
|
|
|
|
>
|
2024-04-04 11:21:56 +02:00
|
|
|
{habitsByFrequency.map((frequency) => {
|
2024-03-25 13:05:15 +01:00
|
|
|
return (
|
|
|
|
<List.Accordion
|
|
|
|
expanded={accordionExpanded[frequency]}
|
|
|
|
onPress={() => {
|
|
|
|
setAccordionExpanded((old) => {
|
|
|
|
return {
|
|
|
|
...old,
|
|
|
|
[frequency]: !old[frequency],
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}}
|
|
|
|
key={frequency}
|
|
|
|
title={capitalize(frequency)}
|
|
|
|
titleStyle={[
|
|
|
|
{
|
|
|
|
fontSize: 26,
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
>
|
|
|
|
<FlatList
|
|
|
|
data={habitsTracker.habitsHistory[frequency]}
|
|
|
|
renderItem={({ item }) => {
|
|
|
|
return <HabitHistory habitHistory={item} />
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</List.Accordion>
|
|
|
|
)
|
|
|
|
})}
|
2024-03-24 23:41:23 +01:00
|
|
|
</List.Section>
|
|
|
|
)
|
|
|
|
}
|