1 |
import { getIndex } from "@/utils/pages"; |
2 |
import { NextRequest, NextResponse } from "next/server"; |
3 |
|
4 |
export const dynamic = "force-dynamic"; |
5 |
|
6 |
export async function GET(request: NextRequest) { |
7 |
const query = new URL(request.url).searchParams.get("q")?.toLowerCase(); |
8 |
|
9 |
if (!query) { |
10 |
return NextResponse.json( |
11 |
{ |
12 |
error: "Invalid Request Payload", |
13 |
}, |
14 |
{ |
15 |
status: 400, |
16 |
}, |
17 |
); |
18 |
} |
19 |
|
20 |
const index = getIndex(); |
21 |
const lowercasedIndex = getIndex(true); |
22 |
|
23 |
console.log(query, lowercasedIndex); |
24 |
|
25 |
const results = []; |
26 |
|
27 |
if (lowercasedIndex) { |
28 |
for (const i in lowercasedIndex) { |
29 |
const titleIncludes = lowercasedIndex[i].title?.includes(query); |
30 |
const descriptionIncludes = |
31 |
lowercasedIndex[i].description?.includes(query); |
32 |
const dataIncludes = lowercasedIndex[i].data.includes(query); |
33 |
|
34 |
if (titleIncludes || descriptionIncludes || dataIncludes) { |
35 |
results.push({ |
36 |
...index?.[i], |
37 |
match: titleIncludes |
38 |
? ("title" as const) |
39 |
: descriptionIncludes |
40 |
? ("description" as const) |
41 |
: ("data" as const), |
42 |
}); |
43 |
} |
44 |
} |
45 |
} |
46 |
|
47 |
results.sort((a, b) => { |
48 |
if (a.match === "title" && b.match === "title") { |
49 |
return a.title!.localeCompare(b.title!); |
50 |
} |
51 |
|
52 |
if (a.match === "title") { |
53 |
return -1; |
54 |
} |
55 |
|
56 |
if (b.match === "title") { |
57 |
return 1; |
58 |
} |
59 |
|
60 |
return a[a.match]!.substring(0, 10).localeCompare( |
61 |
b[b.match]!.substring(0, 10), |
62 |
); |
63 |
}); |
64 |
|
65 |
return NextResponse.json({ |
66 |
results, |
67 |
}); |
68 |
} |