This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
p61-project/app/application/habits/[habitId]/index.tsx

22 lines
647 B
TypeScript
Raw Normal View History

import { Redirect, useLocalSearchParams } from "expo-router"
2024-03-24 23:41:23 +01:00
import { HabitEditForm } from "@/presentation/react/components/HabitEditForm/HabitEditForm"
2024-04-11 13:07:17 +02:00
import { useHabitsTracker } from "@/presentation/react/contexts/HabitsTracker"
2024-03-24 23:41:23 +01:00
const HabitPage: React.FC = () => {
const { habitId } = useLocalSearchParams()
const { habitsTracker } = useHabitsTracker()
2024-03-24 23:41:23 +01:00
const habitHistory = habitsTracker.getHabitHistoryById(habitId as string)
2024-04-11 13:07:17 +02:00
if (habitHistory == null) {
return <Redirect href="/application/habits/" />
}
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