"use client"; import Link from "next/link"; 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 { useAtom } from "jotai"; import { linkTypeAtom } from "../_lib/atom"; import Image from "next/image"; import clsx from "clsx"; const PICTURE_PREFIX = 'https://newuitab.oss-cn-hangzhou.aliyuncs.com/ai_upload/downloads/' export const LinkBlock = ({ val }: { val: _Link }) => { return
{val.name} {val.description}
} export default function LinkListBox({ linkTypeList, linkList, showHot, showRecent }: { linkTypeList: LinkType[]; linkList: _Link[]; showHot: boolean; showRecent: boolean }) { const hotList = useMemo(() => linkList.filter((val, index) => val.isHot && index < 12), [linkList]) const recentList = useMemo(() => linkList.map(val => val).sort((a, b) => b.addTime - a.addTime).filter((_, idx) => idx < 12), [linkList]) const [currentId] = useAtom(linkTypeAtom) const [selectSubType, setSelectSubType] = useState>(new Map()) useEffect(() => { if (linkTypeList.length === 0) return for (let i = 0; i < linkTypeList.length; i++) { const item = linkTypeList[i]; console.log(item); if (item.subCategory?.length) { setSelectSubType(pre => { return new Map(pre.set(item._id, item.subCategory?.length ? item.subCategory[0] : '')); }) } } }, [linkTypeList, setSelectSubType]) useEffect(() => { console.log(currentId); if (currentId) { // 根据 targetId 查找对应的元素 const element = document.getElementById(currentId); if (element) { // 滚动到找到的元素位置 element.scrollIntoView({ behavior: 'smooth' }); } } }, [currentId]) return
{ showHot &&
热门网站
{ hotList.map(val => ( )) }
} { showRecent &&
最新收录
{ recentList.map(val => ( )) }
} { linkTypeList.map(item => (
{item.label} { linkList.filter(val => val.type === item._id).length >= 42 && 查看该分类下所有 }
{ item.subCategory && item.subCategory.length > 0 &&
{ item.subCategory.map(subItem => (
{ setSelectSubType(pre => { return new Map(pre.set(item._id, subItem)) }) }} className={clsx(" px-3 py-1 rounded-lg ", selectSubType.get(item._id) === subItem ? "text-white bg-orange-300" : "bg-[#f5f5f5] shadow hover:bg-orange-300/30 cursor-pointer" )}> {subItem}
)) }
}
{ item.subCategory ? linkList.filter(val => val.type === item._id && val.subLinkType?.includes(selectSubType.get(item._id) || '-1')).filter((_, idx) => idx < 42).map(val => ( )) : linkList.filter(val => val.type === item._id).filter((_, idx) => idx < 42).map(val => ( )) }
)) }
}