mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
22 lines
647 B
TypeScript
22 lines
647 B
TypeScript
import { Redirect, useLocalSearchParams } from "expo-router"
|
|
|
|
import { HabitEditForm } from "@/presentation/react/components/HabitEditForm/HabitEditForm"
|
|
import { useHabitsTracker } from "@/presentation/react/contexts/HabitsTracker"
|
|
|
|
const HabitPage: React.FC = () => {
|
|
const { habitId } = useLocalSearchParams()
|
|
const { habitsTracker } = useHabitsTracker()
|
|
|
|
const habitHistory = habitsTracker.getHabitHistoryById(habitId as string)
|
|
|
|
if (habitHistory == null) {
|
|
return <Redirect href="/application/habits/" />
|
|
}
|
|
|
|
return (
|
|
<HabitEditForm habit={habitHistory.habit} key={habitHistory.habit.id} />
|
|
)
|
|
}
|
|
|
|
export default HabitPage
|