project setup

This commit is contained in:
Sone
2025-11-02 10:08:56 +01:00
commit 568838003e
174 changed files with 27100 additions and 0 deletions
+113
View File
@@ -0,0 +1,113 @@
import { useRouter } from "expo-router";
import { useState } from "react";
import { View, Text } from "react-native";
import { z } from "zod";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { AuthLayout } from "@/components/auth/AuthLayout";
import { AuthHeader } from "@/components/auth/AuthHeader";
import { AuthCard } from "@/components/auth/AuthCard";
import { AuthFooter } from "@/components/auth/AuthFooter";
import { FormInput } from "@/components/auth/FormInput";
import { getApiUrl } from "@/store/api/baseApi";
import { AuthButton } from "@/components/auth/AuthButton";
const schema = z.object({
email: z.email("Enter a valid email"),
});
type FormValues = z.infer<typeof schema>;
const ForgotPasswordScreen = () => {
const router = useRouter();
const [submitting, setSubmitting] = useState(false);
const [message, setMessage] = useState("");
const [error, setError] = useState("");
const {
handleSubmit,
setValue,
watch,
formState: { errors },
} = useForm<FormValues>({
resolver: zodResolver(schema),
mode: "onSubmit",
reValidateMode: "onChange",
shouldUnregister: false,
defaultValues: { email: "" },
});
const email = watch("email");
const onSubmit = async (values: FormValues) => {
setSubmitting(true);
setError("");
setMessage("");
try {
const res = await fetch(
`${getApiUrl()?.replace(/\/$/, "")}/auth/password/forgot`,
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ email: values.email }),
}
);
const data = await res.json();
if (!res.ok) {
throw new Error(data?.error || "Failed to request reset");
}
setMessage("If an account exists for this email, a reset link was sent");
} catch (error: unknown) {
if (error instanceof Error) {
setError(error.message);
} else {
setError("Failed to request reset");
}
} finally {
setSubmitting(false);
}
};
return (
<AuthLayout>
<AuthHeader title="Project Athena" />
<AuthCard title="Forgot Password" subtitle="We'll email you a reset link">
{!!error && (
<Text style={{ color: "#F83434", marginBottom: 8 }}>{error}</Text>
)}
{!!message && (
<Text style={{ color: "#22C927", marginBottom: 8 }}>{message}</Text>
)}
<FormInput
label={errors.email?.message || "Email"}
value={email}
onChangeText={(t) => setValue("email", t, { shouldValidate: true })}
icon="email"
disabled={submitting}
onSubmitEditing={handleSubmit(onSubmit)}
returnKeyType="send"
submitBehavior="blurAndSubmit"
/>
<View style={{ marginTop: 8 }}>
<AuthButton
onPress={handleSubmit(onSubmit)}
loading={submitting}
disabled={submitting}
>
{submitting ? "Sending..." : "Send Reset Link"}
</AuthButton>
</View>
</AuthCard>
<AuthFooter
question="Remembered your password?"
actionText="Sign in"
onPress={() => router.push("/sign-in")}
disabled={submitting}
/>
</AuthLayout>
);
};
export default ForgotPasswordScreen;