Files
HooHacks-12/React/src/app/page.tsx
idler-wheel 842496c053 styling
2025-03-30 09:25:53 -04:00

197 lines
5.1 KiB
TypeScript

"use client";
import { useState, useEffect } from "react";
import { useRouter } from "next/navigation";
import './styles.css';
export default function Home() {
const [contacts, setContacts] = useState<string[]>([]);
const [codeword, setCodeword] = useState("");
const [session, setSession] = useState<any>(null);
const [loading, setLoading] = useState(true);
const router = useRouter();
useEffect(() => {
// Fetch session data from an API route
fetch("/auth/session")
.then((response) => response.json())
.then((data) => {
console.log("Session data received:", data);
setSession(data.session);
setLoading(false);
})
.catch((error) => {
console.error("Failed to fetch session:", error);
setLoading(false);
});
}, []);
function saveToDB() {
alert("Saving contacts...");
const contactInputs = document.querySelectorAll(
".text-input"
) as NodeListOf<HTMLInputElement>;
const contactValues = Array.from(contactInputs).map((input) => input.value);
fetch("/api/databaseStorage", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
email: session?.user?.email || "",
codeword: codeword,
contacts: contactValues,
}),
})
.then((response) => {
if (response.ok) {
alert("Contacts saved successfully!");
} else {
alert("Error saving contacts.");
}
})
.catch((error) => {
console.error("Error:", error);
alert("Error saving contacts.");
});
}
if (loading) {
return <div>Loading...</div>;
}
// If no session, show sign-up and login buttons
if (!session) {
return (
<div className="space-y-7 items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<h1
className="space-y-3 text-6xl text-lime-500 subpixel-antialiased font-bold animate-fadeIn"
style={{ fontFamily: "'Nunito', sans-serif" }}
>
Welcome to Fauxcall
</h1>
<p>
We empower you to feel safe, whenever and wherever.
</p>
<p>
Make an account to begin.
</p>
<main className="space-x-2 flex flex-row gap-[32px] row-start-2 items-center sm:items-start">
<a href="/auth/login?screen_hint=signup">
<button className="box-content w-32 border-2 h-16 text-2xl bg-violet-900 text-green-300">
Sign up
</button>
</a>
</main>
<p>
Already have an account?
</p>
<a href="/auth/login">
<button className="box-content w-32 border-2 h-16 text-2xl bg-violet-900 text-green-400">
Log in
</button>
</a>
</div>
);
}
return (
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start">
<h1 className="space-y-3 text-2xl text-lime-500 subpixel-antialiased font-stretch-semi-expanded font-sans">welcome to <span className="font-bold text-2xl text-lime-700">Fauxcall</span>, {session.user.nickname}!</h1>
<p>
To begin, set a codeword and emergency contacts. If you stop speaking or say the codeword, these contacts will be
notified.
</p>
{/* form for setting codeword */}
<form
className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start"
onSubmit={(e) => e.preventDefault()}
>
<input
type="text"
value={codeword}
onChange={(e) => setCodeword(e.target.value)}
placeholder="Codeword"
className="border border-gray-300 rounded-md p-2"
/>
<button
className="bg-blue-500 text-white font-semibold font-lg rounded-md p-2"
type="submit"
>
Set codeword
</button>
</form>
{/* form for adding contacts */}
<form
id="Contacts"
className="space-y-5 flex flex-col gap-[32px] row-start-2 items-center sm:items-start"
onSubmit={(e) => e.preventDefault()}
>
<input
type="text"
value={contacts}
onChange={(e) => setContacts(e.target.value.split(","))}
placeholder="Write down an emergency contact"
className="border border-gray-300 rounded-md p-2"
/>
<button
onClick={() => {
alert("Adding contact...");
let elem = document.getElementsByClassName(
"text-input"
)[0] as HTMLElement;
console.log("Element:", elem);
let d = elem.cloneNode(true) as HTMLElement;
document.getElementById("Contacts")?.appendChild(d);
}}
className="bg-emerald-500 text-fuchsia-300"
type="button"
>
Add
</button>
<button
type="button"
onClick={saveToDB}
className="bg-slate-500 text-yellow-300 text-stretch-50% font-lg rounded-md p-2"
>
Save
</button>
</form>
<div>
<a href="/call">
<button className="bg-zinc-700 text-lime-300 font-semibold font-lg rounded-md p-2">
Call
</button>
</a>
</div>
<p>
<a href="/auth/logout">
<button>Log out</button>
</a>
</p>
</main>
</div>
);
}