4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

すぐ使えるAlpine.js

Laravel開発で認証機能を実装する際、「Laravel Breeze」をインストールすることは多いと思います。

そこでAlpine.jsを選択しておけば、JSファイルを用意したり、headタグにscriptタグを書いて読み込ませたりといった手間がないので、即コードを書くことができます。

ということでBreezeをインストールする前提で、Alpine.jsを利用して以下のようなシンプルなタブ切り替えのコンポーネントを作成します。

画面収録 2024-12-01 21.55.26.gif

環境

  • Laravel 10
  • Laravel sail 8.3
  • Laravel Breeze 1.29.1

準備

composerを使用してBreezeをインストールする際に「Blade with Alpine」を選択します。

gMKqtLt.png

resourcesのapp.jsに以下の記述が確認できます。

resources/js/app.js
import './bootstrap';

import Alpine from 'alpinejs';

window.Alpine = Alpine;

Alpine.start();

これでAlpineを使える状態になっていますので、さっそく書いていきましょう!

コード

cssファイルを作成する手間も省くため、tailwindで書いていきます。
このファイル内にHTML、tailwind、php、jsと盛りだくさんです。

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Laravel</title>
  <link rel="preconnect" href="https://fonts.bunny.net">
  <link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet" />
  @vite(['resources/css/app.css', 'resources/js/app.js'])
</head>

<body class="w-80 m-8">
  <div x-data="{ activeTab: 'buttonA' }">
    <!-- tabリストエリア -->
    <div class="flex" role="tablist">
      <button
        x-on:click="activeTab = 'buttonA'"
        :class="activeTab === 'buttonA' ? 'bg-indigo-300 text-white' : 'bg-white text-indigo-300'"
        class="w-full py-2 font-bold text-center border border-indigo-300"
        role="tab"
        aria-controls="buttonA"
        :aria-selected="activeTab === 'buttonA'">
        A
      </button>
      <button
        x-on:click="activeTab = 'buttonB'"
        :class="activeTab === 'buttonB' ? 'bg-indigo-300 text-white' : 'bg-white text-indigo-300'"
        class="w-full py-2 font-bold text-center border border-indigo-300"
        role="tab"
        aria-controls="buttonB"
        :aria-selected="activeTab === 'buttonB'">
        B
      </button>
    </div>

    <!-- tabパネルエリア -->
    <div role="tabpanel" class="mt-4" id="buttonA" x-show="activeTab === 'buttonA'">
      <div class="flex justify-center items-center p-8 border border-indigo-300 text-indigo-300 font-bold">
        <p>エリアA</p>
      </div>
    </div>
    <div role="tabpanel" class="mt-4" id="buttonB" x-show="activeTab === 'buttonB'">
      <div class="flex justify-center items-center p-8 border border-indigo-300 text-indigo-300 font-bold">
        <p>エリアB</p>
      </div>
    </div>
  </div>
  
</body>
</html>

ポイントは「x-」の接頭辞がついたプロパティです。

x-data

x-dataで関数やプロパティ名を定義しておき、全体を囲んでいます。
ここでは「activeTab」になります。
最初にbuttonAとしているのはデフォルト値ですね。

x-on:click

buttonにx-on:click="activeTab = 'buttonA'"を付与しており、クリックすることで、x-dataのactiveTabの値が切り替わります。

スタイルについては「:class」に三項演算子でスタイルを定義しています。
タブ切り替えによって変わる部分(背景色と文字色)をON、OFFどちらも設定しておきます。

x-show

タブと連動して表示が切り替わる領域には、x-showに条件判定を入れています。
x-show="activeTab === 'buttonA'"とすることでtrueのときにdisplay: block、falseのときはdisplay: noneになります。

※実際にはaria-selectedなどの値も切り替わっていますが、サクッと説明のため割愛します!

実際につかってみて

フツーにPHPファイルにJSの処理を書けるのが非常に快適ですね。
Livewireを触ったときにも思いましたが、HTML 、CSS、JSなどを独学で学んでいたときには考えもしないような技術がたくさんあり、開発していてとても楽しいです!

まだ使い始めたばかりですので、もっと深掘って使っていきたいと思います。

参考

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?