{
diff --git a/app/(main)/page.tsx b/app/(main)/page.tsx
index c7a847a..2abf00a 100644
--- a/app/(main)/page.tsx
+++ b/app/(main)/page.tsx
@@ -4,6 +4,7 @@ import LinkListBox from "../_ui/LinkListBox";
import { getLinkTypeList } from "../_lib/data/linkType";
import { getLinkList } from "../_lib/data/link";
import Footer from "../_ui/footer";
+import { Suspense } from "react";
export default async function Page() {
@@ -16,7 +17,9 @@ export default async function Page() {
-
+ >}>
+
+
diff --git a/app/(main)/search/page.tsx b/app/(main)/search/page.tsx
index bbdfb28..01bfeec 100644
--- a/app/(main)/search/page.tsx
+++ b/app/(main)/search/page.tsx
@@ -1,9 +1,12 @@
import Search from "@/app/_ui/Search";
import ResultBox from "./ResultBox";
+import { Suspense } from "react";
export default function Page() {
return
-
-
+ ...
}>
+
+
+
}
\ No newline at end of file
diff --git a/app/_ui/LinkListBox.tsx b/app/_ui/LinkListBox.tsx
index f49f597..b9e05af 100644
--- a/app/_ui/LinkListBox.tsx
+++ b/app/_ui/LinkListBox.tsx
@@ -4,7 +4,7 @@ import { LinkType } from "../_lib/data/linkType";
import { Link as _Link } from "../_lib/data/link";
import { useEffect, useMemo, useState } from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-import { faArrowRight, faClock, faFire, faRightFromBracket, faRightLong, faTimeline, faTimesCircle, faTimesRectangle, faVolumeTimes } from "@fortawesome/free-solid-svg-icons";
+import { faArrowRight, faClock, faFire} from "@fortawesome/free-solid-svg-icons";
import { useAtom } from "jotai";
import { linkTypeAtom } from "../_lib/atom";
import Image from "next/image";
diff --git a/app/admin/(default)/dashboard/LinkTable.tsx b/app/admin/(default)/dashboard/LinkTable.tsx
index e205596..da40c70 100644
--- a/app/admin/(default)/dashboard/LinkTable.tsx
+++ b/app/admin/(default)/dashboard/LinkTable.tsx
@@ -33,7 +33,7 @@ export default function LinkTable(props: { id: string }) {
({ current, pageSize }) => {
console.log(current, pageSize);
- return getLinkList({ page: current, pageSize, typeId: props.id })
+ return getLinkList({ page: current, pageSize, filter: { type: props.id } })
}
@@ -196,7 +196,7 @@ export default function LinkTable(props: { id: string }) {
value: item._id
}))}>
-
+
(
<>
-
+
>
)
},
diff --git a/app/api/search/[id]/route.ts b/app/api/search/[id]/route.ts
index 707635e..439b198 100644
--- a/app/api/search/[id]/route.ts
+++ b/app/api/search/[id]/route.ts
@@ -11,9 +11,9 @@ export async function GET(req: NextRequest) {
const pageSize = parseInt(req.nextUrl.searchParams.get('pageSize') || '10') || 10;
const typeId = req.nextUrl.searchParams.get('typeId') || ''
- const res = await getLinkList({ page, pageSize, typeId })
+ const res = await getLinkList({ page, pageSize, filter: { type: typeId } })
return Response.json(res)
- } catch {
+ } catch {
return Response.error()
}
}
diff --git a/eslint.config.mjs b/eslint.config.mjs
index 71cd777..ae9eabd 100644
--- a/eslint.config.mjs
+++ b/eslint.config.mjs
@@ -1,21 +1,20 @@
-import { dirname } from "path";
-import { fileURLToPath } from "url";
-import { FlatCompat } from "@eslint/eslintrc";
-
-const __filename = fileURLToPath(import.meta.url);
-const __dirname = dirname(__filename);
+import { FlatCompat } from '@eslint/eslintrc'
const compat = new FlatCompat({
- baseDirectory: __dirname,
-});
+ // import.meta.dirname is available after Node.js v20.11.0
+ baseDirectory: import.meta.dirname,
+})
const eslintConfig = [
- ...compat.extends("next/core-web-vitals", "next/typescript"),
- {
+ ...compat.config({
+ extends: ['next'],
rules: {
+ 'react/no-unescaped-entities': 'off',
+ '@next/next/no-page-custom-font': 'off',
"@typescript-eslint/no-explicit-any": "off", // 禁用对显式 any 类型的检查
- },
- },
-];
-export default eslintConfig;
+ },
+ }),
+]
+
+export default eslintConfig
\ No newline at end of file