This commit is contained in:
expdsn 2025-02-25 19:04:37 +08:00
parent 43bcc30663
commit 84a2d62180
5 changed files with 60 additions and 11 deletions

View File

@ -1,4 +1,5 @@
import { getLinkList, getLinkListAll } from "@/app/_lib/data/link"; import { getLinkList, getLinkListAll } from "@/app/_lib/data/link";
import { getLinkType } from "@/app/_lib/data/linkType";
import { LinkBlock } from "@/app/_ui/LinkListBox"; import { LinkBlock } from "@/app/_ui/LinkListBox";
import Search from "@/app/_ui/Search"; import Search from "@/app/_ui/Search";
import { use } from "react"; import { use } from "react";
@ -6,6 +7,7 @@ import { use } from "react";
export default async function Page({ params }: { params: Promise<{ id: string }> }) { export default async function Page({ params }: { params: Promise<{ id: string }> }) {
const id = (await params).id const id = (await params).id
const linkType = await getLinkType(id)
const { list: linkList } = await getLinkList({ typeId: id }) const { list: linkList } = await getLinkList({ typeId: id })
return ( return (
@ -13,6 +15,7 @@ export default async function Page({ params }: { params: Promise<{ id: string }>
{/* <HeaderNav></HeaderNav> */} {/* <HeaderNav></HeaderNav> */}
<main className="w-full p-5"> <main className="w-full p-5">
<Search></Search > <Search></Search >
<h1 className="text-3xl font-bold mb-6 flex justify-center">{linkType?.label}</h1>
<div className=" grid grid-cols-3 lg:grid-cols-6 gap-4 "> <div className=" grid grid-cols-3 lg:grid-cols-6 gap-4 ">
{ {
linkList.map(val => ( linkList.map(val => (

View File

@ -1,10 +1,24 @@
export default function ResultBox() { "use client";
return <div className="h-[40vh] w-full px-4">
<div className="font-bold">:</div>
<div className="pl-2 border-l-blue-400 border-0 border-l-2 my-2"></div>
<div className="w-full grid grid-rows-6">
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 <div className="h-[40vh] w-full px-4">
<div className="font-bold">:{`(共${data?.count || 0}条结果)`}</div>
<div className="pl-2 border-l-blue-400 border-0 border-l-2 my-2"></div>
<div className=" grid grid-cols-3 lg:grid-cols-6 gap-4 ">
{
data?.list.map((e: any) => {
return <LinkBlock val={e} key={e._id}></LinkBlock>
})
}
</div> </div>
</div> </div>
} }

View File

@ -2,6 +2,7 @@
import { ArticleType } from "../data/article" import { ArticleType } from "../data/article"
import { Link } from "../data/link" import { Link } from "../data/link"
import { getCollection } from "../mongodb";
export type SiteSearchType = { export type SiteSearchType = {
articles: ArticleType[]; articles: ArticleType[];
@ -11,8 +12,28 @@ export type SiteSearchType = {
} }
export async function doSearch(wd: string) { 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 { return {
list: linkList,
count: linkList.length
} }
} }

View File

@ -1,5 +1,6 @@
"use server"; "use server";
import { ObjectId } from "mongodb";
import { getCollection } from "../mongodb"; import { getCollection } from "../mongodb";
import { ReactNode } from "react"; import { ReactNode } from "react";
@ -14,6 +15,13 @@ export type LinkType = {
location?: string; 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 }: { export async function getLinkTypeList({ page = 1, pageSize = 9999 }: {
page?: number; page?: number;
pageSize?: number; pageSize?: number;

View File

@ -8,6 +8,7 @@ import Logo from "./Logo";
import { useRequest } from "ahooks"; import { useRequest } from "ahooks";
import { getSearchTypeList, getSearchWayList, SearchWayItemType } from "../_lib/data/search"; import { getSearchTypeList, getSearchWayList, SearchWayItemType } from "../_lib/data/search";
import { doSearch } from "../_lib/utils"; import { doSearch } from "../_lib/utils";
import { useSearchParams } from "next/navigation";
const defaultSearchEngine: SearchWayItemType = { const defaultSearchEngine: SearchWayItemType = {
@ -31,7 +32,8 @@ export default function Search() {
}))) })))
const [selectKey, setSelectKey] = useState<string | null>(null) const [selectKey, setSelectKey] = useState<string | null>(null)
const [activeSearchKey, setActiveSearchKey] = useState<string | null>(null) const [activeSearchKey, setActiveSearchKey] = useState<string | null>(null)
const [inputStr, setInputStr] = useState('') const [inputStr, setInputStr] = useState('')
const searchParams = useSearchParams();
const nowSelectConfig = useMemo(() => { const nowSelectConfig = useMemo(() => {
const idx = searchTypeList.findIndex(val => val._id === selectKey) const idx = searchTypeList.findIndex(val => val._id === selectKey)
if (idx !== -1) return searchTypeList[idx] if (idx !== -1) return searchTypeList[idx]
@ -93,11 +95,12 @@ export default function Search() {
}} }}
type="text" type="text"
onChange={e => { onChange={(e)=> {
setInputStr(e.target.value) 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" />
<FontAwesomeIcon className="text-white absolute top-1/2 -translate-y-1/2 right-6 text-xl" icon={faSearch}></FontAwesomeIcon> <FontAwesomeIcon className="text-white absolute top-1/2 -translate-y-1/2 right-6 text-xl" icon={faSearch}></FontAwesomeIcon>
</div> </div>
<div className="w-full flex justify-center gap-x-4 h-[50px] text-[#666666]"> <div className="w-full flex justify-center gap-x-4 h-[50px] text-[#666666]">