import { FontAwesomeIcon } from "@fortawesome/react-native-fontawesome" import { useRouter } from "expo-router" import { useState } from "react" import { View } from "react-native" import { Checkbox, List, Text } from "react-native-paper" import type LottieView from "lottie-react-native" import type { IconName } from "@fortawesome/free-solid-svg-icons" import type { GoalBoolean } from "@/domain/entities/Goal" import { GoalBooleanProgress } from "@/domain/entities/Goal" import type { HabitHistory } from "@/domain/entities/HabitHistory" import { getColorRGBAFromHex } from "@/utils/colors" import { useHabitsTracker } from "@/presentation/react/contexts/HabitsTracker" export interface HabitCardProps { habitHistory: HabitHistory selectedDate: Date confettiRef: React.MutableRefObject } export const HabitCard: React.FC = (props) => { const { habitHistory, selectedDate, confettiRef } = props const { habit } = habitHistory const router = useRouter() const { habitsTrackerPresenter } = useHabitsTracker() const goalProgress = habitHistory.getGoalProgressByDate(selectedDate) const [checked, setChecked] = useState(goalProgress.isCompleted()) const habitColor = getColorRGBAFromHex({ hexColor: habit.color, opacity: 0.4, }) return ( { router.push({ pathname: "/application/habits/[habitId]/", params: { habitId: habit.id, }, }) }} title={habit.name} style={[ { paddingVertical: 20, paddingHorizontal: 10, marginVertical: 10, borderRadius: 10, backgroundColor: habitColor, }, ]} contentStyle={[ { paddingLeft: 12, }, ]} titleStyle={[ { fontSize: 18, }, ]} left={() => { return ( ) }} right={() => { if (goalProgress.isNumeric()) { return ( {goalProgress.progress.toLocaleString()} /{" "} {goalProgress.goal.target.value.toLocaleString()}{" "} {goalProgress.goal.target.unit} ) } return ( { const isCheckedNew = !checked setChecked(isCheckedNew) if (isCheckedNew) { confettiRef.current?.play() } await habitsTrackerPresenter.habitUpdateProgress({ date: selectedDate, habitHistory, goalProgress: new GoalBooleanProgress({ goal: habit.goal as GoalBoolean, progress: isCheckedNew, }), }) }} /> ) }} /> ) }