/[sudobot]/trunk/docs/app/search/route.ts
ViewVC logotype

Contents of /trunk/docs/app/search/route.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 1787 byte(s)
chore: add trunk
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 const results = [];
24
25 if (lowercasedIndex) {
26 for (const i in lowercasedIndex) {
27 const titleIncludes = lowercasedIndex[i].title?.includes(query);
28 const descriptionIncludes =
29 lowercasedIndex[i].description?.includes(query);
30 const dataIncludes = lowercasedIndex[i].data.includes(query);
31
32 if (titleIncludes || descriptionIncludes || dataIncludes) {
33 results.push({
34 ...index?.[i],
35 match: titleIncludes
36 ? ("title" as const)
37 : descriptionIncludes
38 ? ("description" as const)
39 : ("data" as const),
40 });
41 }
42 }
43 }
44
45 results.sort((a, b) => {
46 if (a.match === "title" && b.match === "title") {
47 return a.title!.localeCompare(b.title!);
48 }
49
50 if (a.match === "title") {
51 return -1;
52 }
53
54 if (b.match === "title") {
55 return 1;
56 }
57
58 return a[a.match]!.substring(0, 10).localeCompare(
59 b[b.match]!.substring(0, 10),
60 );
61 });
62
63 return NextResponse.json({
64 results,
65 });
66 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26