mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-03 03:20:17 -04:00
Add basic route handlers and endpoints
This commit is contained in:
parent
755d1523d0
commit
bdf892c6c2
|
@ -1,3 +1,4 @@
|
|||
cd compass
|
||||
npm run lint
|
||||
npm run prettier
|
||||
npm run prettier
|
||||
git add .
|
|
@ -1,9 +1,10 @@
|
|||
import { NextResponse } from "next/server";
|
||||
|
||||
interface ResponseData {
|
||||
message: string;
|
||||
}
|
||||
|
||||
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 });
|
||||
}
|
||||
|
|
5
compass/app/api/resource/route.ts
Normal file
5
compass/app/api/resource/route.ts
Normal 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
5
compass/app/api/route.ts
Normal 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/service/route.ts
Normal file
5
compass/app/api/service/route.ts
Normal 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/user/route.ts
Normal file
5
compass/app/api/user/route.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
import { NextResponse } from "next/server";
|
||||
|
||||
export async function GET() {
|
||||
return NextResponse.json({ message: "Hello World!" }, { status: 200 });
|
||||
}
|
|
@ -18,11 +18,20 @@ export default function Page() {
|
|||
const [password, setPassword] = useState("");
|
||||
const [error, setError] = useState("");
|
||||
|
||||
const testFetch = () => {
|
||||
const result = fetch("/api/health");
|
||||
console.log(result);
|
||||
const testFetch = async () => {
|
||||
const apiEndpoint = `${process.env.NEXT_PUBLIC_HOST}/api/health`;
|
||||
|
||||
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>) => {
|
||||
setEmail(event.currentTarget.value);
|
||||
console.log("email " + email);
|
||||
|
|
|
@ -4,8 +4,8 @@ const nextConfig = {
|
|||
domains: ["notioly.com"],
|
||||
},
|
||||
experimental: {
|
||||
serverActions: true
|
||||
}
|
||||
serverActions: true,
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = nextConfig;
|
||||
|
|
Loading…
Reference in New Issue
Block a user