1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

imdb clone Part9 7 navbar実装 2/2 hover処理追加 開いているNavの下線部をハイライト

Last updated at Posted at 2023-05-09

概要

目次

今回はナビゲーションバーの選択しているNavにハイライトが入るよう実装します。
下gifアニメは実装後にアイテムを切り替えている様子です。

fffffff.gif

開発環境

OS:Windows10
IDE:VSCode

"@next/font": "13.1.5",
"autoprefixer": "10.4.14",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"next": "13.3.1",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"tailwindcss": "3.3.2"

実装のポイント

ハイライトを実装するには現在のURLのパラメーターとコンポーネントのパラメーター比較してcssの切り替えをできるようにします。
例えばTrendingを選択している場合
Trendingのコンポーネントはgenreとparamが一致しているのでハイライトのcssは反映されます。

image.png

一方でTopRatedのコンポーネントはgenreとparamが値不一致しておりハイライトのcssは施されません。

image.png

コード部分

NavbarItem

NavbarItem.jsx
+"use client"

import React from 'react'
import Link from "next/link";
import { useSearchParams } from "next/navigation";

export default function NavbarItem({title,param}) {

+    const searchParams = useSearchParams();
+    const genre = searchParams.get("genre");

-  return (
-    <div className={`font-semibold p-2`}>
+    return (
+    <div className={`m-4 hover:text-amber-600 font-semibold p-2 ${
+        genre &&
+        genre === param &&
+        "underline underline-offeset-8 decoration-4 decoration-amber-500 rounded-lg"
+    }`}>
           <Link href={`/?genre=${param}`}>
                {title}
           </Link>    
    </div>
  )
}

参考

useSearchParam

image.png

その他

Udemy

githubコミット分

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?