2024-04-05 15:31:41 +02:00
|
|
|
import { Redirect, useLocalSearchParams } from "expo-router"
|
2024-03-24 23:41:23 +01:00
|
|
|
|
2024-04-12 23:13:38 +02:00
|
|
|
import { HabitEditForm } from "@/presentation/react/components/HabitForm/HabitEditForm"
|
2024-04-11 13:07:17 +02:00
|
|
|
import { useHabitsTracker } from "@/presentation/react/contexts/HabitsTracker"
|
2024-04-05 15:31:41 +02:00
|
|
|
|
2024-03-24 23:41:23 +01:00
|
|
|
const HabitPage: React.FC = () => {
|
|
|
|
const { habitId } = useLocalSearchParams()
|
2024-04-05 15:31:41 +02:00
|
|
|
const { habitsTracker } = useHabitsTracker()
|
2024-03-24 23:41:23 +01:00
|
|
|
|
2024-04-05 15:31:41 +02:00
|
|
|
const habitHistory = habitsTracker.getHabitHistoryById(habitId as string)
|
2024-04-11 13:07:17 +02:00
|
|
|
|
2024-04-05 15:31:41 +02:00
|
|
|
if (habitHistory == null) {
|
|
|
|
return <Redirect href="/application/habits/" />
|
|
|
|
}
|
2024-04-08 23:21:36 +02:00
|
|
|
|
2024-03-24 23:41:23 +01:00
|
|
|
return (
|
2024-04-11 13:07:17 +02:00
|
|
|
<HabitEditForm habit={habitHistory.habit} key={habitHistory.habit.id} />
|
2024-03-24 23:41:23 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default HabitPage
|