定制 innoge/filament-form-faker 二次开发

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

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

innoge/filament-form-faker

最新稳定版本:0.2

Composer 安装命令:

composer require innoge/filament-form-faker

包简介

A package to generate fake input data for Filament forms.

README 文档

README

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

The Filament Form Faker is a utility package designed for generating fake input data in Filament v3 forms. It's ideal for streamlining the development of extensive forms and conducting thorough form testing.

Note

This package is not recommended for production use and should be limited to development and testing scenarios.

This package is currently in its Beta phase. Your participation in testing and feedback through issue reporting is highly appreciated.

Installation

You can install the package via composer:

composer require innoge/filament-form-faker --dev

Filament Panel Usage

To autofill forms with fake data in Filament Record Pages, use the InnoGE\FilamentFormFaker\Traits\FillsFormWithFakeData trait. Below is an example for the CreateUser of the UserResource page:

<?php

namespace App\Filament\Resources\UserResource\Pages;

use App\Filament\Resources\UserResource;
use Filament\Resources\Pages\CreateRecord;
use InnoGE\FilamentFormFaker\Traits\FillsFormWithFakeData;

class CreateUser extends CreateRecord
{
    use FillsFormWithFakeData;

    protected static string $resource = UserResource::class;
}

By default, forms are filled with fake data only in local or testing environments. This behavior can be customized by overriding the shouldFillFormWithFakeData method in your Page Component.

protected function shouldFillFormWithFakeData(): bool
{
    // insert your custom logic here
}

Standalone Usage

When you are using Filament/Formsoutside of the Panel Builder you can use the fake() method on your Form instance to fill your form with fake data. We recommend using this method in your mount method.

public function mount()
{
    $this->getForm('form')->fake();
    // or
    $this->form->fake();
}

Supported Field Types

Currently, we support the following field types:

  • Builder
  • Checkbox
  • CheckboxList
  • KeyValue
  • Option
  • Repeater
  • Select
  • Textarea
  • TextInput

If you want to add support for other field types please create an issue or a pull request.

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.

统计信息

  • 总下载量: 2.41k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 15
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 15
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-12-06