定制 idct/symfony-form-soft-delete-aware-entity-type 二次开发

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

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

idct/symfony-form-soft-delete-aware-entity-type

最新稳定版本:1.0.2

Composer 安装命令:

composer require idct/symfony-form-soft-delete-aware-entity-type

包简介

Repository which adds support for Soft Delete filter behavior to Symfony's EntityType.

README 文档

README

Tests status Code Coverate

The missing link between softdeleteable from doctrine/extensions and Symfony Form component.

Warning!

If you need to use this it most likely means that you have a bad architecture of your software. If you allow deletion or soft deletion you should first make sure that each related entity is updated first with null or new relation. This form type is meant to be used for transition purposes in systems which need to quickly add soft deletion on some entities which are used in relations, but due to time or other resources it is impossible to upgrade the actual processes.

Purpose

If you are using the softdeleteable filter and EntityType forms you may encounter a situation when your CRUD Edit form in which the related entity is no longer available as soft removed. This form type will make the form still properly render, but forcing the user to update the relation using the form.

In such situation, using standard entity type you may see a screen like this:

Entity of type 'App\Entity\DeletableEntity' for IDs id(1) was not found

With the SoftDeleteAwareEntityType it will revert to the placeholder forcing user to update:

Success with the plugin

Compatibility

  • Symfony 6 or 7.
  • Sonata Admin 3+

Installation

First require it in your project:

composer require idct/symfony-form-soft-delete-aware-entity-type

As this is not a bundle register in your services (for example services.yaml) file:

If you have autowiring:

    IDCT\SymfonyFormSoftDeleteAwareEntityType\SoftDeleteAwareEntityType: ~

If you do not use autowiring you need to pass doctrine as the first argument:

    IDCT\SymfonyFormSoftDeleteAwareEntityType\SoftDeleteAwareEntityType:
        arguments:
            - '@doctrine'

Now in forms which use EntityType change the form type to SoftDeleteAwareEntityType. For example:

class ParentFormType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options): void
    {
        $builder
            ->add('test', SoftDeleteAwareEntityType::class, [
                'class' => DummyEntity::class
            ])
        ;
    }
}

And that is all!

Testing

Tool has a testing toolchain prepared using Docker. If you have docker installed simply run ./run-tests.sh.

This will run unit tests with PHPUnit, generate code-coverage report and run some functional e-2-e tests using Behat and Chrome Driver.

Contribution

Any contribution is more then welcome, please file any issues or pull requests, yet when possible please try to make sure that tests are working.

统计信息

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

GitHub 信息

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

其他信息

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