定制 pavlovich4/livewire-filemanager 二次开发

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

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

pavlovich4/livewire-filemanager

Composer 安装命令:

composer require pavlovich4/livewire-filemanager

包简介

This package will help to have a livewire file manager

README 文档

README

Latest Version on Packagist Total Downloads GitHub Actions

A modern, responsive file manager for Laravel using Livewire and Alpine.js. Features include:

  • Drag and drop file uploads
  • Folder management
  • Grid and list views
  • File previews
  • Image thumbnails
  • Copy sharing links
  • File downloads

Important Requirements

  • PHP 8.2 or higher
  • Laravel 10.0 or higher
  • Livewire 3.0 or higher
  • spatie/laravel-medialibrary 10.0 or higher

Caution

Please be sure to install, configure and run migrations of spatie/laravel-medialibrary package before continue. You can review the installation steps at spatie/laravel-medialibrary documentation.

Installation

  1. Install the package via composer:
composer require pavlovich4/livewire-filemanager
  1. Publish and run the migrations:
php artisan vendor:publish --tag="livewire-filemanager-migrations"
php artisan migrate
  1. Publish the config file:
php artisan vendor:publish --tag="livewire-filemanager-config"
  1. Publish and configure the media library:
php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="medialibrary-config"

Update config/media-library.php:

 'custom_path_generators' => [
        \Pavlovich4\LivewireFilemanager\Models\File::class => \Pavlovich4\LivewireFilemanager\Support\CustomPathGenerator::class,
        // or
        // 'model_morph_alias' => PathGenerator::class
    ],
  1. Create the symbolic link for public storage:
php artisan storage:link

Important

This package requires Tailwind CSS along with the @tailwindcss/aspect-ratio and @tailwindcss/forms plugins to be installed and configured in your project.

  1. Update your Tailwind CSS configuration in tailwind.config.js:
module.exports = {
  // ...
  content: [
    // ...
    './vendor/pavlovich4/livewire-filemanager/resources/views/**/*.blade.php',
  ],
  // ...
  plugins: [
    // ...
    require('@tailwindcss/forms'),
    require('@tailwindcss/aspect-ratio'),
  ],
};

Usage

  1. Add the file manager component to your layout:
<livewire:file-manager />
{{-- Or --}}
@livewire('file-manager')
  1. Include the style blade directive in the head tag of your layout:
@livewireFileManagerStyle
  1. Include the scripts directive at the end of your body:
@livewireFileManagerScript
  1. Trigger the file manager from any element using the data-trigger="filemanager" attribute:
<!-- Basic trigger -->
<button data-trigger="filemanager">Open File Manager</button>

Configuration

The package configuration file (config/livewire-filemanager.php) allows you to:

return [
    // Storage disk to use (default: 'public')
    'disk' => 'public',

    // Media library configuration
    'media' => [
        'path_generator' => Pavlovich4\LivewireFilemanager\Support\CustomPathGenerator::class,
    ],
];

Key Features

File Upload

  • Drag and drop support
  • Multiple file upload
  • Progress indicator
  • File type validation
  • Size limits (configurable)

Folder Management

  • Create folders
  • Delete folders (with confirmation)
  • Rename folders
  • Nested folders
  • Folder navigation

File Operations

  • Preview files
  • Download files
  • Delete files
  • Rename files
  • Copy share links
  • File icons based on type

UI Features

  • Grid/List view toggle
  • Breadcrumb navigation
  • Responsive design
  • Loading states
  • Error handling

Interface Screenshot

Root view

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email pavlovebiokou@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

pavlovich4/livewire-filemanager 适用场景与选型建议

pavlovich4/livewire-filemanager 是一款 基于 Blade 开发的 Composer 扩展包,目前已累计 11 次下载、GitHub Stars 达 4, 最近一次更新时间为 2025 年 01 月 16 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「livewire-filemanager」 「pavlovich4」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 pavlovich4/livewire-filemanager 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 pavlovich4/livewire-filemanager 我们能提供哪些服务?
定制开发 / 二次开发

基于 pavlovich4/livewire-filemanager 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 11
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 12
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 2
  • Forks: 0
  • 开发语言: Blade

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-01-16