+"use client";
+import { doSearch } from "@/app/_lib/actions/search";
+import { getLinkList } from "@/app/_lib/data/link";
+import { LinkBlock } from "@/app/_ui/LinkListBox";
+import { useSearchParams } from "next/navigation"
+import useSWR from "swr"
+export default function ResultBox() {
+ const searchParams = useSearchParams()
+ const { data } = useSWR(`${searchParams.get('wd')}`, (e) => doSearch(e))
+
+ return
+
搜索结果:{`(共${data?.count || 0}条结果)`}
+
网站链接
+
+
+ {
+ data?.list.map((e: any) => {
+ return
+ })
+ }
}
\ No newline at end of file
diff --git a/app/_lib/actions/search.ts b/app/_lib/actions/search.ts
index 24a69a0..6238f85 100644
--- a/app/_lib/actions/search.ts
+++ b/app/_lib/actions/search.ts
@@ -2,6 +2,7 @@
import { ArticleType } from "../data/article"
import { Link } from "../data/link"
+import { getCollection } from "../mongodb";
export type SiteSearchType = {
articles: ArticleType[];
@@ -11,8 +12,28 @@ export type SiteSearchType = {
}
export async function doSearch(wd: string) {
+ //实现对link的搜索
+ const linkCol = await getCollection('link')
+
+ const linkList = await linkCol.aggregate([
+ {
+ $match: {
+ $or: [ // 任意字段匹配即返回
+ { name: { $regex: wd, $options: "i" } },
+ { description: { $regex: wd, $options: "i" } },
+ { tags: { $regex: wd, $options: "i" } }
+ ]
+ }
+ },
+ {
+ $addFields: {
+ _id: { $toString: "$_id" }
+ }
+ }
+ ]).toArray();
return {
-
+ list: linkList,
+ count: linkList.length
}
}
\ No newline at end of file
diff --git a/app/_lib/data/linkType.ts b/app/_lib/data/linkType.ts
index 6745cb3..3b9ddf7 100644
--- a/app/_lib/data/linkType.ts
+++ b/app/_lib/data/linkType.ts
@@ -1,5 +1,6 @@
"use server";
+import { ObjectId } from "mongodb";
import { getCollection } from "../mongodb";
import { ReactNode } from "react";
@@ -14,6 +15,13 @@ export type LinkType = {
location?: string;
}
+export async function getLinkType(id: string) {
+ const collection = await getCollection('link-type');
+ return collection.findOne({ _id: new ObjectId(id) }).then(res => res ? {
+ ...res,
+ _id: res._id.toString()
+ } as LinkType : null)
+}
export async function getLinkTypeList({ page = 1, pageSize = 9999 }: {
page?: number;
pageSize?: number;
diff --git a/app/_ui/Search.tsx b/app/_ui/Search.tsx
index 4213efb..a36224b 100644
--- a/app/_ui/Search.tsx
+++ b/app/_ui/Search.tsx
@@ -8,6 +8,7 @@ import Logo from "./Logo";
import { useRequest } from "ahooks";
import { getSearchTypeList, getSearchWayList, SearchWayItemType } from "../_lib/data/search";
import { doSearch } from "../_lib/utils";
+import { useSearchParams } from "next/navigation";
const defaultSearchEngine: SearchWayItemType = {
@@ -31,7 +32,8 @@ export default function Search() {
})))
const [selectKey, setSelectKey] = useState
(null)
const [activeSearchKey, setActiveSearchKey] = useState(null)
- const [inputStr, setInputStr] = useState('')
+ const [inputStr, setInputStr] = useState('')
+ const searchParams = useSearchParams();
const nowSelectConfig = useMemo(() => {
const idx = searchTypeList.findIndex(val => val._id === selectKey)
if (idx !== -1) return searchTypeList[idx]
@@ -93,11 +95,12 @@ export default function Search() {
}}
type="text"
- onChange={e => {
+ onChange={(e)=> {
setInputStr(e.target.value)
-
}}
- placeholder={activeSearch?.label ? `${activeSearch?.label}搜索` : ''} className="w-full bg-[#C4C2C6] px-4 h-[50px] rounded-3xl outline-none" />
+ defaultValue={searchParams.get('wd')?.toString()}
+ placeholder={activeSearch?.label ? `${activeSearch?.label}搜索` : ''}
+ className="w-full bg-[#C4C2C6] px-4 h-[50px] rounded-3xl outline-none" />