mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-03 19:40:16 -04:00
Add basic route handlers and endpoints
This commit is contained in:
parent
755d1523d0
commit
bdf892c6c2
|
@ -1,3 +1,4 @@
|
||||||
cd compass
|
cd compass
|
||||||
npm run lint
|
npm run lint
|
||||||
npm run prettier
|
npm run prettier
|
||||||
|
git add .
|
|
@ -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 });
|
||||||
}
|
}
|
||||||
|
|
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 [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);
|
||||||
|
|
|
@ -4,8 +4,8 @@ const nextConfig = {
|
||||||
domains: ["notioly.com"],
|
domains: ["notioly.com"],
|
||||||
},
|
},
|
||||||
experimental: {
|
experimental: {
|
||||||
serverActions: true
|
serverActions: true,
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = nextConfig;
|
module.exports = nextConfig;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user