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

168 lines
4.7 KiB
TypeScript
Raw Normal View History

2024-04-12 13:43:49 +02:00
import { Card, Text } from "react-native-paper"
2024-04-12 15:27:11 +02:00
import CircularProgress from "react-native-circular-progress-indicator"
2024-05-20 15:35:49 +02:00
import { Agenda } from "react-native-calendars"
import { useState } from "react"
2024-04-12 13:43:49 +02:00
2024-05-20 15:35:49 +02:00
import { getNowDate, getISODate } from "@/utils/dates"
2024-04-12 15:27:11 +02:00
import type { HabitsTracker } from "@/domain/entities/HabitsTracker"
export interface StatsProps {
habitsTracker: HabitsTracker
}
export const Stats: React.FC<StatsProps> = (props) => {
const { habitsTracker } = props
2024-05-20 15:35:49 +02:00
const today = getNowDate()
const todayISO = getISODate(today)
const [selectedDate, setSelectedDate] = useState<Date>(today)
const selectedDateISO = getISODate(selectedDate)
2024-04-12 15:27:11 +02:00
const habitsHistory = habitsTracker.getAllHabitsHistory()
2024-04-12 13:43:49 +02:00
2024-05-20 15:35:49 +02:00
let goalDays = 0
let totalGoalDays = 0
const dailyHabits = habitsHistory.filter((el) => {
return (
el.habit.goal.frequency === "daily" && el.habit.startDate <= selectedDate
)
})
let displayDaily = true
if (dailyHabits.length === 0) {
displayDaily = false
} else {
for (const el of dailyHabits) {
totalGoalDays++
if (
el.getProgressesByDate(selectedDate)[0]?.goalProgress.isCompleted() ??
false
) {
goalDays++
}
}
}
let goalWeek = 0
let totalGoalWeek = 0
const weeklyHabits = habitsHistory.filter((el) => {
return (
el.habit.goal.frequency === "weekly" && el.habit.startDate <= selectedDate
)
})
let displayWeekly = true
if (weeklyHabits.length === 0) {
displayWeekly = false
} else {
for (const el of weeklyHabits) {
totalGoalWeek++
if (
el.getProgressesByDate(selectedDate)[0]?.goalProgress.isCompleted() ??
false
) {
goalWeek++
}
}
}
let goalMonth = 0
let totalGoalMonth = 0
const monthlyHabits = habitsHistory.filter((el) => {
return (
el.habit.goal.frequency === "monthly" &&
el.habit.startDate <= selectedDate
)
})
let displayMonthly = true
if (monthlyHabits.length === 0) {
displayMonthly = false
} else {
for (const el of monthlyHabits) {
totalGoalMonth++
if (
el.getProgressesByDate(selectedDate)[0]?.goalProgress.isCompleted() ??
false
) {
goalMonth++
}
}
}
return (
<Agenda
firstDay={1}
showClosingKnob
onDayPress={(date) => {
setSelectedDate(new Date(date.dateString))
}}
markedDates={{
[todayISO]: { marked: true, today: true },
}}
maxDate={todayISO}
selected={selectedDateISO}
renderList={() => {
return (
<>
{displayDaily ? (
<Card key="statsDay" mode="outlined">
<Card.Title title="Sucess Day" />
2024-04-12 15:27:11 +02:00
<Card.Content>
<Text variant="bodyMedium">
2024-05-20 15:35:49 +02:00
{goalDays} but réussi dans la journée sur {totalGoalDays}
2024-04-12 15:27:11 +02:00
</Text>
<CircularProgress
2024-05-20 15:35:49 +02:00
value={(goalDays / totalGoalDays) * 100}
2024-04-12 15:27:11 +02:00
activeStrokeWidth={12}
progressValueColor={"#ecf0f1"}
circleBackgroundColor="black"
titleColor="white"
title="%"
/>
</Card.Content>
</Card>
2024-05-20 15:35:49 +02:00
) : null}
{displayWeekly ? (
<Card key="statsWeek" mode="outlined">
<Card.Title title="Sucess Week" />
2024-04-12 15:27:11 +02:00
<Card.Content>
2024-05-20 15:35:49 +02:00
<Text variant="bodyMedium">
{goalWeek} but réussi dans la semaine sur {totalGoalWeek}
</Text>
<CircularProgress
value={(goalWeek / totalGoalWeek) * 100}
activeStrokeWidth={12}
progressValueColor={"#ecf0f1"}
circleBackgroundColor="black"
titleColor="white"
title="%"
/>
2024-04-12 15:27:11 +02:00
</Card.Content>
</Card>
2024-05-20 15:35:49 +02:00
) : null}
{displayMonthly ? (
<Card key="statsMonth" mode="outlined">
2024-04-12 15:27:11 +02:00
<Card.Title title="Sucess Month" />
<Card.Content>
2024-05-20 15:35:49 +02:00
<Text variant="bodyMedium">
{goalMonth} but réussi dans le mois sur {totalGoalMonth}
</Text>
<CircularProgress
value={(goalMonth / totalGoalMonth) * 100}
activeStrokeWidth={12}
progressValueColor={"#ecf0f1"}
circleBackgroundColor="black"
titleColor="white"
title="%"
/>
2024-04-12 15:27:11 +02:00
</Card.Content>
</Card>
2024-05-20 15:35:49 +02:00
) : null}
</>
)
}}
/>
2024-04-12 13:43:49 +02:00
)
}