定制 sagor110090/livewire-modal 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sagor110090/livewire-modal

最新稳定版本:1.1.0

Composer 安装命令:

composer require sagor110090/livewire-modal

包简介

This Laravel Livewire package simplifies the implementation of dynamic, responsive modals in your web applications. With a focus on seamless integration and flexibility, this package allows developers to easily create and manage modals without the need for JavaScript or additional front-end dependen

README 文档

README

Latest Version

A simple and flexible Laravel Livewire modal package that works seamlessly with any design framework like Bootstrap, Tailwind CSS, or even custom styles. This package allows you to quickly integrate modals into your Livewire projects without being tied to specific CSS libraries.

Features

  • Framework-Agnostic: Use with Bootstrap, Tailwind CSS, or custom designs.
  • Dynamic Modals: Open and close modals using Livewire events.
  • Customizable: Easily style your modals with your preferred CSS.

Installation

You can install the package via Composer:

composer require sagor110090/livewire-modal

Setup

Add the following to your app.blade.php layout to enable modals throughout your application:

<livewire:modals/>

Include the required JavaScript and CSS files in your resources/js/app.js:

import '../../vendor/sagor110090/livewire-modal/resources/js/loader.js';
import '../../vendor/sagor110090/livewire-modal/resources/css/loader.css';

Usage

Opening a Modal

To open a modal, you can dispatch a Livewire event from any button or action:

<button wire:click="$dispatch('openModal', { component: 'edit-user', data: { id: {{ $user->id }} } })">
    Open Modal
</button>
  • component: The name of the Livewire component you want to load.
  • data: The data you want to pass to the component (e.g., user ID).

Closing a Modal

To close a modal, simply dispatch the close event:

<button type="button" wire:click="$dispatch('closeModal')">
    Cancel
</button>

Sample Livewire Component

Here’s an example of a Livewire component you might use with this package:

<?php

namespace App\Livewire;

use App\Models\User;
use Livewire\Component;

class EditUser extends Component
{
    public $user;

    public function mount($id)
    {
        $this->user = User::find($id);
    }

    public function render()
    {
        return view('livewire.edit-user');
    }
}

Blade View Example

The modal content is fully customizable within your Livewire component's view file:

<!-- resources/views/livewire/edit-user.blade.php -->
<div>
    <h2>Edit User: {{ $user->name }}</h2>
    <!-- Your form or content here -->
</div>

You can use any CSS framework or custom styles in this view file. The package does not impose any specific design restrictions.

Example Styles

You can design the modal with any framework. Below is an example using Tailwind CSS:

<div class="fixed inset-0 flex items-center justify-center bg-gray-900 bg-opacity-50">
    <div class="bg-white rounded-lg shadow-lg p-6">
        <!-- Modal Content -->
    </div>
</div>

Alternatively, use Bootstrap or any other CSS framework.

Why Use This Package?

  • Flexibility: Unlike many modal packages, this one doesn't enforce a specific CSS framework, giving you full control over your design.
  • Ease of Use: Simple to implement with just a few Livewire events.
  • Dynamic Data Handling: Pass data seamlessly to your modals, making them fully dynamic.

SEO Considerations

This Laravel Livewire modal package is designed to be lightweight and versatile, providing developers with an easy way to implement customizable modals across different design frameworks. Whether you're using Bootstrap, Tailwind CSS, or custom styles, this package adapts to your needs without locking you into specific CSS libraries. Enhance your Laravel projects with a modular and framework-agnostic approach to modals.

Support

For any issues or feature requests, feel free to open an issue.

License

This package is open-source software licensed under the MIT license.

统计信息

  • 总下载量: 160
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-08-18