登录
首页 >  文章 >  前端

如何在 Nextjs 中的服务器组件中设置活动导航链接的样式

来源:dev.to

时间:2024-11-21 12:31:01 453浏览 收藏

一分耕耘,一分收获!既然打开了这篇文章《如何在 Nextjs 中的服务器组件中设置活动导航链接的样式》,就坚持看下去吧!文中内容包含等等知识点...希望你能在阅读本文后,能真真实实学到知识或者帮你解决心中的疑惑,也欢迎大佬或者新人朋友们多留言评论,多给建议!谢谢!

大家好! next.js 现在非常热门,尤其是新版本 15,它添加了许多很酷的功能。但今天的主题不是这个。 next.js 最著名的功能是其基于文件的路由器和内置 ssr(服务器端渲染)。

ssr 是一个复杂的主题,尤其是在同步应用程序的服务器和客户端状态时,很多人选择客户端渲染(csr)。当然,在某些情况下服务器组件是不可行的,但关键是 next.js 基本上是围绕 ssr 构建的,以增强性能和 seo,使其成为受益于服务器渲染的应用程序的强大选择。


soooo,我们如何构建一个导航栏,其中的链接在我们位于某个页面时突出显示?基本方法是迭代一系列链接并突出显示路径名与浏览器中当前路径匹配的链接。要在 next.js 中获取路径名,我们可以使用 usepathname (用于页面路由器的 userouter)挂钩。通过这种方法,我们最终会得到类似的结果:

"use client";
import { cn } from "@/lib/utils";
import { usepathname } from "next/navigation";
import link, { type linkprops } from "next/link";

type clientnavprops = {
  links: linkprops[];
};

function clientnav({ links }: clientnavprops) {
  const pathname = usepathname();

  const isactive = (href: linkprops["href"]) => {
    const hrefstr = href.tostring();
    if (hrefstr === pathname) return true;
    if (hrefstr.length > 1 && pathname.startswith(hrefstr)) return true;
    return false;
  };

  return (
    <nav classname="space-x-2">
      {links.map((e) => (
        <link
          {...e}
          key={e.href.tostring()}
          classname={cn(
            "px-2 py-1 border rounded-lg",
            isactive(e.href) && "bg-black text-white"
          )}
        />
      ))}
    </nav>
  );
}

export default clientnav;

这是它在浏览器中的外观:

如何在 Nextjs 中的服务器组件中设置活动导航链接的样式


但是,这种方法的问题在于该组件是基于客户端的,这对于 seo 来说并不理想。由于我们无法在服务器组件中调用客户端钩子,因此我们需要解决如何在服务器端获取路径名以将当前链接渲染为突出显示的问题。

而且这个问题并不难回答,这里中间件就派上用场了。使用中间件,我们可以将路径名添加到响应标头中,并对其进行配置,以便为所有页面路由触发:

import { nextresponse } from "next/server";
import type { nextrequest } from "next/server";

export const config = {
  matcher: ["/((?!api|_next/static|_next/image|favicon.ico).*)"],
};

export default function middleware(request: nextrequest) {
  const requestheaders = new headers(request.headers);
  requestheaders.set("x-next-pathname", request.nexturl.pathname);

  return nextresponse.next({ request: { headers: requestheaders } });
}

现在有了带有当前路径名的 x-next-pathname,我们可以使用 headers 函数访问它(请注意,next 15 及以上版本现在具有异步功能:headers、cookie、params 和 searchparams)。

import { cn } from "@/lib/utils";
import { headers } from "next/headers";
import Link, { type LinkProps } from "next/link";

type ClientNavProps = {
  links: LinkProps[];
};

async function ServerNav({ links }: ClientNavProps) {
  const headersList = await headers();
  const pathname = headersList.get("x-next-pathname") || "/";

  const isActive = (href: LinkProps["href"]) => {
    const hrefStr = href.toString();
    if (hrefStr === pathname) return true;
    if (hrefStr.length > 1 && pathname.startsWith(hrefStr)) return true;
    return false;
  };

  return (
    <nav className="space-x-2">
      {links.map((e) => (
        <Link
          {...e}
          key={e.href.toString()}
          className={cn(
            "px-2 py-1 border rounded-lg",
            isActive(e.href) && "bg-black text-white"
          )}
        />
      ))}
    </nav>
  );
}

export default ServerNav;

请谨慎放置服务器导航栏在应用程序中的位置。这个特定的示例仅在 page.tsx 文件内使用时才有效,因为它需要在 url 更改时重新渲染。


这可能是构建突出显示当前活动链接的服务器端导航栏组件的最简单方法。就是这样——感谢您的阅读,我们下次再见!

好了,本文到此结束,带大家了解了《如何在 Nextjs 中的服务器组件中设置活动导航链接的样式》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多文章知识!

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>