Add basic route handlers and endpoints

This commit is contained in:
pmoharana-cmd 2024-04-23 10:09:25 -04:00
parent 755d1523d0
commit bdf892c6c2
8 changed files with 42 additions and 11 deletions

View File

@ -1,3 +1,4 @@
cd compass cd compass
npm run lint npm run lint
npm run prettier npm run prettier
git add .

View File

@ -1,9 +1,10 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
interface ResponseData {
message: string;
}
export async function GET() { export async function GET() {
return NextResponse.json({ message: "Hello World!" }, { status: 200 }); const apiEndpoint = `${process.env.NEXT_PUBLIC_API_HOST}/api/health`;
console.log(apiEndpoint);
const result = await fetch(apiEndpoint);
return NextResponse.json(await result.json(), { status: result.status });
} }

View File

@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello World!" }, { status: 200 });
}

5
compass/app/api/route.ts Normal file
View File

@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello World!" }, { status: 200 });
}

View File

@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello World!" }, { status: 200 });
}

View File

@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello World!" }, { status: 200 });
}

View File

@ -18,11 +18,20 @@ export default function Page() {
const [password, setPassword] = useState(""); const [password, setPassword] = useState("");
const [error, setError] = useState(""); const [error, setError] = useState("");
const testFetch = () => { const testFetch = async () => {
const result = fetch("/api/health"); const apiEndpoint = `${process.env.NEXT_PUBLIC_HOST}/api/health`;
console.log(result);
const result = await fetch(apiEndpoint);
if (result.status != 200) {
console.log(`Error has occurred when accessing ${apiEndpoint}`);
}
console.log(await result.json());
}; };
testFetch();
const handleEmailChange = (event: React.ChangeEvent<HTMLInputElement>) => { const handleEmailChange = (event: React.ChangeEvent<HTMLInputElement>) => {
setEmail(event.currentTarget.value); setEmail(event.currentTarget.value);
console.log("email " + email); console.log("email " + email);

View File

@ -4,8 +4,8 @@ const nextConfig = {
domains: ["notioly.com"], domains: ["notioly.com"],
}, },
experimental: { experimental: {
serverActions: true serverActions: true,
} },
}; };
module.exports = nextConfig; module.exports = nextConfig;