首页
/ CraueFormFlowBundle 技术文档

CraueFormFlowBundle 技术文档

2024-12-25 09:19:20作者:霍妲思

1. 安装指南

1.1 获取 Bundle

使用 Composer 下载并安装 CraueFormFlowBundle:

composer require craue/formflow-bundle

1.2 启用 Bundle

如果你没有使用 Symfony Flex,需要手动注册 Bundle:

// 在 config/bundles.php 中
return [
    // ...
    Craue\FormFlowBundle\CraueFormFlowBundle::class => ['all' => true],
];

对于 Symfony 3.4:

// 在 app/AppKernel.php 中
public function registerBundles() {
    $bundles = [
        // ...
        new Craue\FormFlowBundle\CraueFormFlowBundle(),
    ];
    // ...
}

2. 项目使用说明

CraueFormFlowBundle 提供了一个在 Symfony 项目中构建和处理多步骤表单的工具。以下是一些主要功能:

  • 导航:支持下一步、上一步、重新开始。
  • 步骤标签:为每个步骤设置标签。
  • 跳过步骤:根据条件跳过某些步骤。
  • 验证组:为每个步骤设置不同的验证组。
  • 文件上传处理:支持文件上传。
  • 动态步骤导航:可选的动态步骤导航。
  • 提交后重定向:支持 Post/Redirect/Get 模式。

3. 项目 API 使用文档

3.1 创建一个多步骤表单

方法 A:整个流程使用一个表单类型

创建 Flow 类
// src/MyCompany/MyBundle/Form/CreateVehicleFlow.php
use Craue\FormFlowBundle\Form\FormFlow;
use Craue\FormFlowBundle\Form\FormFlowInterface;
use MyCompany\MyBundle\Form\CreateVehicleForm;

class CreateVehicleFlow extends FormFlow {

    protected function loadStepsConfig() {
        return [
            [
                'label' => 'wheels',
                'form_type' => CreateVehicleForm::class,
            ],
            [
                'label' => 'engine',
                'form_type' => CreateVehicleForm::class,
                'skip' => function($estimatedCurrentStepNumber, FormFlowInterface $flow) {
                    return $estimatedCurrentStepNumber > 1 && !$flow->getFormData()->canHaveEngine();
                },
            ],
            [
                'label' => 'confirmation',
            ],
        ];
    }

}
创建表单类型类
// src/MyCompany/MyBundle/Form/CreateVehicleForm.php
use MyCompany\MyBundle\Form\Type\VehicleEngineType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\FormBuilderInterface;

class CreateVehicleForm extends AbstractType {

    public function buildForm(FormBuilderInterface $builder, array $options) {
        switch ($options['flow_step']) {
            case 1:
                $validValues = [2, 4];
                $builder->add('numberOfWheels', ChoiceType::class, [
                    'choices' => array_combine($validValues, $validValues),
                    'placeholder' => '',
                ]);
                break;
            case 2:
                $builder->add('engine', VehicleEngineType::class, [
                    'placeholder' => '',
                ]);
                break;
        }
    }

    public function getBlockPrefix() {
        return 'createVehicle';
    }

}

方法 B:每个步骤使用一个表单类型

创建 Flow 类
// src/MyCompany/MyBundle/Form/CreateVehicleFlow.php
use Craue\FormFlowBundle\Form\FormFlow;
use Craue\FormFlowBundle\Form\FormFlowInterface;
use MyCompany\MyBundle\Form\CreateVehicleStep1Form;
use MyCompany\MyBundle\Form\CreateVehicleStep2Form;

class CreateVehicleFlow extends FormFlow {

    protected function loadStepsConfig() {
        return [
            [
                'label' => 'wheels',
                'form_type' => CreateVehicleStep1Form::class,
            ],
            [
                'label' => 'engine',
                'form_type' => CreateVehicleStep2Form::class,
                'skip' => function($estimatedCurrentStepNumber, FormFlowInterface $flow) {
                    return $estimatedCurrentStepNumber > 1 && !$flow->getFormData()->canHaveEngine();
                },
            ],
            [
                'label' => 'confirmation',
            ],
        ];
    }

}
创建表单类型类
// src/MyCompany/MyBundle/Form/CreateVehicleStep1Form.php
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\FormBuilderInterface;

class CreateVehicleStep1Form extends AbstractType {

    public function buildForm(FormBuilderInterface $builder, array $options) {
        $validValues = [2, 4];
        $builder->add('numberOfWheels', ChoiceType::class, [
            'choices' => array_combine($validValues, $validValues),
            'placeholder' => '',
        ]);
    }

    public function getBlockPrefix() {
        return 'createVehicleStep1';
    }

}
// src/MyCompany/MyBundle/Form/CreateVehicleStep2Form.php
use MyCompany\MyBundle\Form\Type\VehicleEngineType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

class CreateVehicleStep2Form extends AbstractType {

    public function buildForm(FormBuilderInterface $builder, array $options) {
        $builder->add('engine', VehicleEngineType::class, [
            'placeholder' => '',
        ]);
    }

    public function getBlockPrefix() {
        return 'createVehicleStep2';
    }

}

3.2 注册 Flow 为服务

XML 配置:

<services>
    <service id="myCompany.form.flow.createVehicle"
            class="MyCompany\MyBundle\Form\CreateVehicleFlow"
            autoconfigure="true">
    </service>
</services>

YAML 配置:

services:
    myCompany.form.flow.createVehicle:
        class: MyCompany\MyBundle\Form\CreateVehicleFlow
        autoconfigure: true

3.3 创建表单模板

{# in src/MyCompany/MyBundle/Resources/views/Vehicle/createVehicle.html.twig #}
<div>
    Steps:
    {% include '@CraueFormFlow/FormFlow/stepList.html.twig' %}
</div>
{{ form_start(form) }}
    {{ form_errors(form) }}

    {% if flow.getCurrentStepNumber() == 1 %}
        <div>
            When selecting four wheels you have to choose the engine in the next step.<br />
            {{ form_row(form.numberOfWheels) }}
        </div>
    {% endif %}

    {{ form_rest(form) }}

    {% include '@CraueFormFlow/FormFlow/buttons.html.twig' %}
{{ form_end(form) }}

3.4 创建 Action

// in src/MyCompany/MyBundle/Controller/VehicleController.php
public function createVehicleAction() {
    $formData = new Vehicle(); // Your form data class. Has to be an object, won't work properly with an array.

    $flow = $this->get('myCompany.form.flow.createVehicle'); // must match the flow's service id
    $flow->bind($formData);

    // form of the current step
    $form = $flow->createForm();
    if ($flow->isValid($form)) {
        $flow->saveCurrentStepData($form);

        if ($flow->nextStep()) {
            // form for the next step
            $form = $flow->createForm();
        } else {
            // flow finished
            $em = $this->getDoctrine()->getManager();
            $em->persist($formData);
            $em->flush();

            $flow->reset(); // remove step data from the session

            return $this->redirectToRoute('home'); // redirect when done
        }
    }

    return $this->render('@MyCompanyMy/Vehicle/createVehicle.html.twig', [
        'form' => $form->createView(),
        'flow' => $flow,
    ]);
}

4. 项目安装方式

通过 Composer 安装 CraueFormFlowBundle:

composer require craue/formflow-bundle

然后根据 Symfony 版本手动或自动注册 Bundle。

热门项目推荐
相关项目推荐

项目优选

收起
HarmonyOS-ExamplesHarmonyOS-Examples
本仓将收集和展示仓颉鸿蒙应用示例代码,欢迎大家投稿,在仓颉鸿蒙社区展现你的妙趣设计!
Cangjie
256
63
mybatis-plusmybatis-plus
mybatis 增强工具包,简化 CRUD 操作。 文档 http://baomidou.com 低代码组件库 http://aizuda.com
Java
19
0
Cangjie-ExamplesCangjie-Examples
本仓将收集和展示高质量的仓颉示例代码,欢迎大家投稿,让全世界看到您的妙趣设计,也让更多人通过您的编码理解和喜爱仓颉语言。
Cangjie
175
42
openHiTLSopenHiTLS
旨在打造算法先进、性能卓越、高效敏捷、安全可靠的密码套件,通过轻量级、可剪裁的软件技术架构满足各行业不同场景的多样化要求,让密码技术应用更简单,同时探索后量子等先进算法创新实践,构建密码前沿技术底座!
C
49
39
open-eBackupopen-eBackup
open-eBackup是一款开源备份软件,采用集群高扩展架构,通过应用备份通用框架、并行备份等技术,为主流数据库、虚拟化、文件系统、大数据等应用提供E2E的数据备份、恢复等能力,帮助用户实现关键数据高效保护。
HTML
73
54
RuoYi-Cloud-Vue3RuoYi-Cloud-Vue3
🎉 基于Spring Boot、Spring Cloud & Alibaba、Vue3 & Vite、Element Plus的分布式前后端分离微服务架构权限管理系统
Vue
26
18
redis-sdkredis-sdk
仓颉语言实现的Redis客户端SDK。已适配仓颉0.53.4 Beta版本。接口设计兼容jedis接口语义,支持RESP2和RESP3协议,支持发布订阅模式,支持哨兵模式和集群模式。
Cangjie
406
46
advanced-javaadvanced-java
Advanced-Java是一个Java进阶教程,适合用于学习Java高级特性和编程技巧。特点:内容深入、实例丰富、适合进阶学习。
JavaScript
397
102
HarmonyOS-Cangjie-CasesHarmonyOS-Cangjie-Cases
参考 HarmonyOS-Cases/Cases,提供仓颉开发鸿蒙 NEXT 应用的案例集
Cangjie
55
2
RuoYi-VueRuoYi-Vue
🎉 基于SpringBoot,Spring Security,JWT,Vue & Element 的前后端分离权限管理系统,同时提供了 Vue3 的版本
Java
168
37