定制 spatie/livewire-filepond 二次开发

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

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

spatie/livewire-filepond

Composer 安装命令:

composer require spatie/livewire-filepond

包简介

Upload files using Filepond in Livewire components

README 文档

README

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

Filepond is a powerful JavaScript library to upload files.

This repository contains a Livewire component that allow you to use Filepond easily in your projects.

Here's an example of how you can use it in your views:

<x-filepond::upload wire:model="file" />

Here's how it looks like in action in mailcoach.app (a product we built at Spatie):

screenshot

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/livewire-filepond

Optionally, you can publish the views using

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

Usage

First, add the scripts to your layout or view where you want to use Filepond:

@filepondScripts

Next, add the WithFilePond trait to your component:

use Livewire\Component;
use Spatie\LivewireFilepond\WithFilePond;

class MyLivewireComponent extends Component
{
    use WithFilePond;
    
    public $file;
}

Finally, add the component to your view:

<x-filepond::upload wire:model="file" />

Customizing the component

Optionally, you can use these component properties to customize the component:

  • multiple: Allow multiple files to be uploaded. Default: false.
  • required: Make the file input required. Default: false.
  • disabled: Disable the file input. Default: false.
  • max-files: Sets the maximum number of files that can be uploaded. Default: null.
  • placeholder: Placeholder text for the file input. Default: Drag & Drop your files or <span class="filepond--label-action"> Browse </span>.
  • maxfilesmsg: Error message shown when the maximum number of uploads is reached. Default: You can upload a maximum of :max files..

Additionally, you can also pass any property that the Filepond component accepts and plugins properties. Make sure to use kebab case the property. For example, to set the maximum number of files to 5, you can do this:

<x-filepond::upload wire:model="file" max-files="5" />

If you pass the max-files property, ensure your Livewire component includes a public method to show the validation message when the file limit is reached.

public function setMaxFilesError(string $message): void
{
    $this->addError('file', $message);
}

Localization automatically works based on the current locale. If you want to customize the language, you can publish the language file using:

php artisan vendor:publish --tag="livewire-filepond-translations"

If you want to change your locale you can do so by change the .env file:

APP_LOCALE=id # change to Indonesian for example

or by setting the locale using laravel's App facade:

use Illuminate\Support\Facades\App;

App::setLocale('id'); // change to Indonesian for example

The last method can be used to change the locale on the fly. Like when a user changes the language (You need to implement this yourself).

Events

Optionally, you can use these Alpine.js events when needed:

  • filepond-upload-started: Started file upload.
  • filepond-upload-finished: Finished file upload.
  • filepond-upload-reverted: File upload reverted by user.
  • filepond-upload-file-removed: File removed from list by user.
  • filepond-upload-completed: All files in the list have been processed and uploaded.

Server Side Validation on upload

Optionally, you can validate the uploaded file immediately. This is useful to inform the user of an error and process file uploads without requiring the user to click a button.

use Livewire\Component;
use Spatie\LivewireFilepond\WithFilePond;

class MyLivewireComponent extends Component
{
    use WithFilePond;
    
    public $file;

    public function rules(): array
    {
        return [
            'file' => 'required|mimetypes:image/jpg,image/jpeg,image/png|max:3000',
        ];
    }
    public function validateUploadedFile()
    {
        $this->validate();

        return true;
    }
}

Publishing assets

Livewire Filepond automatically loads the scripts through an endpoint. If you want to serve the assets directly, you can publish them:

php artisan vendor:publish --tag=livewire-filepond-assets --force

To keep the assets up to that at all times, you can add the command above to your Composer's post-update-cmd scripts.

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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

spatie/livewire-filepond 适用场景与选型建议

spatie/livewire-filepond 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 586.59k 次下载、GitHub Stars 达 307, 最近一次更新时间为 2024 年 07 月 15 日, 在 PHP 生态内属于活跃度较高的组件。

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

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

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

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 586.59k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 307
  • 点击次数: 21
  • 依赖项目数: 4
  • 推荐数: 0

GitHub 信息

  • Stars: 307
  • Watchers: 4
  • Forks: 39
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-07-15