import { zodResolver } from "@hookform/resolvers/zod" import { Controller, useForm } from "react-hook-form" import { ScrollView, StyleSheet } from "react-native" import { Button, HelperText, SegmentedButtons, Snackbar, Text, TextInput, } from "react-native-paper" import { SafeAreaView } from "react-native-safe-area-context" import ColorPicker, { HueSlider, Panel1, Preview, } from "reanimated-color-picker" import { useState } from "react" import type { GoalFrequency, GoalType } from "@/domain/entities/Goal" import { GOAL_FREQUENCIES, GOAL_TYPES } from "@/domain/entities/Goal" import type { HabitCreateData } from "@/domain/entities/Habit" import { HabitCreateSchema } from "@/domain/entities/Habit" import type { User } from "@/domain/entities/User" import { useHabitsTracker } from "../../contexts/HabitsTracker" export interface HabitCreateFormProps { user: User } export const HabitCreateForm: React.FC = ({ user }) => { const { habitCreate, habitsTrackerPresenter } = useHabitsTracker() const { control, handleSubmit, reset, formState: { errors }, } = useForm({ mode: "onChange", resolver: zodResolver(HabitCreateSchema), defaultValues: { userId: user.id, name: "", color: "#006CFF", icon: "lightbulb", goal: { frequency: "daily", target: { type: "boolean", }, }, }, }) const [isVisibleSnackbar, setIsVisibleSnackbar] = useState(false) const onDismissSnackbar = (): void => { setIsVisibleSnackbar(false) } const onSubmit = async (data: HabitCreateData): Promise => { await habitsTrackerPresenter.habitCreate(data) setIsVisibleSnackbar(true) reset() } const habitFrequenciesTranslations: { [key in GoalFrequency]: { label: string; icon: string } } = { daily: { label: "Daily", icon: "calendar", }, weekly: { label: "Weekly", icon: "calendar-week", }, monthly: { label: "Monthly", icon: "calendar-month", }, } const habitTypesTranslations: { [key in GoalType]: { label: string; icon: string } } = { boolean: { label: "Routine", icon: "clock", }, numeric: { label: "Target", icon: "target", }, } return ( { return ( <> {errors.name != null ? ( {errors.name.type === "too_big" ? "Name is too long" : "Name is required"} ) : null} ) }} name="name" /> { return ( <> Habit Frequency { return { label: habitFrequenciesTranslations[frequency].label, value: frequency, icon: habitFrequenciesTranslations[frequency].icon, } })} /> ) }} name="goal.frequency" /> { return ( <> Habit Type { return { label: habitTypesTranslations[type].label, value: type, icon: habitTypesTranslations[type].icon, } })} /> ) }} name="goal.target.type" /> { return ( { onChange(value.hex) }} > ) }} name="color" /> { return ( ) }} name="icon" /> ✅ Habit created successfully! ) } const styles = StyleSheet.create({ spacing: { marginVertical: 16, }, })