elegantly/livewire-modal

Modal for your Livewire App. Done right.

v1.0.3 2025-04-04 13:43 UTC

This package is auto-updated.

Last update: 2025-04-04 13:52:00 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package allows you to seamlessly open Livewire components inside modals or slideovers with powerful features:

  • Support for modals, slideovers, and similar UI patterns.
  • Nested and stacked modals.
  • Custom styling and animations, with optional presets.
  • Preloading components for faster interactions.

Requirements

  • livewire/livewire: v3
  • tailwindcss: v3 (not yet tested with v4)

How It Works

This package provides a single Livewire Modal component that should be placed at the end of your body tag. This component dynamically renders and manages all modal instances while maintaining a modal history.

Modals can be opened and closed by dispatching modal-open and modal-close events.

Any Livewire component can be used as a modal without requiring special interfaces or base components—just use your existing components as they are.

Installation

Install the package via Composer:

composer require elegantly/livewire-modal

To customize modal behavior, publish the views with:

php artisan vendor:publish --tag="livewire-modal-views"

Usage

Configuring Tailwind CSS

Since the modal component is styled using Tailwind CSS, you must include its views in your Tailwind configuration file:

export default {
    content: [
        "./vendor/elegantly/livewire-modal/resources/views/**/*.blade.php",
    ],
};

Setting Up Your Application

Add the modal manager component <livewire:modal /> at the end of your body tag, typically in your layout views:

<body>
    ...
    <livewire:modal />
</body>

Preparing Your Modals

Any Livewire component can be displayed as a modal. However, certain features, such as stacking, require additional customization.

Creating a Simple Modal Component

This package provides two Blade components to simplify stacking and positioning:

  • x-livewire-modal::stack: Provides a basic layout with stacking capabilities.
  • x-livewire-modal::modal: Handles positioning and stacking.

Wrap your content within these components:

<x-livewire-modal::stack>
    <x-livewire-modal::modal
        position="center"
        class="w-full max-w-md overflow-auto rounded-lg bg-white p-5"
    >
        <div class="prose">
            <p>
                Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
                rhoncus, augue eget vulputate vehicula, justo dui auctor est, at
                iaculis urna orci ut nunc.
            </p>
        </div>
    </x-livewire-modal::modal>
</x-livewire-modal::stack>

Controlling the Modal Position

By default, modals are centered, but their position can be adjusted using the position prop:

<x-livewire-modal::stack>
    <x-livewire-modal::modal position="left"> ... </x-livewire-modal::modal>
</x-livewire-modal::stack>
<x-livewire-modal::stack>
    <x-livewire-modal::modal position="bottom"> ... </x-livewire-modal::modal>
</x-livewire-modal::stack>

Fullscreen Modal

To make a modal fullscreen, use the fullscreen prop:

<x-livewire-modal::stack fullscreen> ... </x-livewire-modal::stack>

Creating a Slideover Component

<x-livewire-modal::stack>
    <x-livewire-modal::slideover
        class="w-full max-w-md overflow-auto rounded-lg bg-white p-5"
    >
        <div class="prose">
            <p>
                Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
                rhoncus, augue eget vulputate vehicula, justo dui auctor est, at
                iaculis urna orci ut nunc.
            </p>
        </div>
    </x-livewire-modal::slideover>
</x-livewire-modal::stack>

Opening a Modal

To open a modal, dispatch a modal-open event:

<button x-modal:open="{ component: 'users.show', props: { userId: 1 } }">
    Open
</button>
<button
    x-on:click="$dispatch('modal-open', { component: 'users.show', props: { userId: 1 } })"
>
    Open
</button>
Livewire.dispatch("modal-open", {
    component: "users.show",
    props: { userId: 1 },
});

Preloading a Modal

To preload a modal, dispatch a modal-preload event with the same props used to open it:

Livewire.dispatch("modal-preload", {
    component: "users.show",
    props: { userId: 1 },
});

Preloading a Modal on Hover

Using the custom Alpine directive, you can preload a modal when the user starts hovering over a button. This improves UX by ensuring faster modal openings.

<button
    x-modal:open.preload="{ component: 'users.show', props: { userId: 1 } }"
>
    Preload and Open
</button>

Closing the Current Modal

To close the currently active modal, dispatch a modal-close event:

<button x-modal:close>Close</button>
<button x-on:click="$dispatch('modal-close')">Close</button>
Livewire.dispatch("modal-close");

Closing All Modals

To close all modals at once:

<button x-modal:close-all>Close</button>
<button x-on:click="$dispatch('modal-close-all')">Close All</button>
Livewire.dispatch("modal-close-all");

Testing

Run the test suite with:

composer test

Changelog

For recent changes, see CHANGELOG.

Contributing

See CONTRIBUTING for contribution guidelines.

Security Vulnerabilities

For information on reporting security vulnerabilities, please review our security policy.

Credits

License

This package is licensed under the MIT License. See License File for details.