alsatian/form-bundle
Composer 安装命令:
composer require alsatian/form-bundle
包简介
Symfony form types to extend built-in types. Ideal for Select2 AJAX implementations.
README 文档
README
This bundle provide FormTypes extending ChoiceType, EntityType and DocumentType to let them accept additional choices added on the client side.
Ideal for Select2 integration.
Use version 1.1 for Symfony >= 4.4 Use version 1.0 for Symfony 2.8 to 4.3
Features
The bundle provide 6 FormTypes designed to automate some common tasks :
-
ExtensibleChoiceType : Extension for the built-in ChoiceType
Choice type which starts with an empty HTML select and accept each submitted choice which has be added on the client side.
- Configuration : Insert %alsatian_form.parameters.extensible_choice.attr_class% as class for the HTML select.
- Options : 'route' and 'route_params' to render a data-ajax--url tag in the HTML select.
-
ExtensibleEntityType : Extension for the built-in EntityType
Entity type type which starts with an empty HTML select and accept each existing entity which has be added on the client side.
- Configuration : Insert %alsatian_form.parameters.extensible_entity.attr_class% as class for the HTML select.
- Options : 'route' and 'route_params' to render a data-ajax--url tag in the HTML select.
-
ExtensibleDocumentType : Extension for the DoctrineMongoDBBundle DocumentType
Document type which starts with an empty HTML select and accept each existing document which has be added on the client side.
- Configuration : Insert %alsatian_form.parameters.extensible_document.attr_class% as class for the HTML select.
- Options : 'route' and 'route_params' to render a data-ajax--url tag in the HTML select.
-
AutocompleteType : Extension for the built-in TextType
Text type allowing to add some html attributes to expose ajax route for autocompletion.
- Configuration : Insert %alsatian_form.parameters.autocomplete.attr_class% as class for the HTML input.
- Options : 'route' and 'route_params' to render a data-ajax--url tag in the HTML input.
-
DatepickerType : Extension for the built-in DateType
Date type where the date pattern is rendered as 'pattern' attribute in the HTML input (Using \IntlDateFormatter::SHORT).
- Configuration : Insert %alsatian_form.parameters.date_picker.attr_class% as class for the HTML input.
-
DateTimepickerType : Extension for the built-in DateTimeType
DateTime type where the date pattern is rendered as 'pattern' attribute in the HTML input (Using \IntlDateFormatter::SHORT).
- Configuration : Insert %alsatian_form.parameters.datetime_picker.attr_class% as class for the HTML input.
Installation
Download the bundle with composer
composer require alsatian/form-bundle
Enable the bundle
Add the bundle to app/AppKernel.php :
// app/AppKernel.php class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new Alsatian\FormBundle\AlsatianFormBundle(), ); // ... } // ... }
Configuration
Add following lines to app/config/config.yml
alsatian_form:
extensible_choice: ~ # To enable Alsatian\FormBundle\Form\ExtensibleChoiceType
extensible_entity: ~ # To enable Alsatian\FormBundle\Form\ExtensibleEntityType
extensible_document: ~ # To enable Alsatian\FormBundle\Form\ExtensibleDocumentType
For each FormType you can configure a default attr_class parameter, like this :
alsatian_form:
extensible_choice:
attr_class: select2 # Adds class="select2" in the HTML select element
extensible_entity:
attr_class: select2-entity # Adds class="select2-entity" in the HTML select element
extensible_document:
attr_class: select2-document # Adds class="select2-document" in the HTML select element
Usage
To use these FormTypes :
use Alsatian\FormBundle\Form\ExtensibleChoiceType; use Alsatian\FormBundle\Form\ExtensibleEntityType; use Alsatian\FormBundle\Form\ExtensibleDocumentType; // Without route $builder->add('extensible_choice', ExtensibleChoiceType::class); $builder->add('extensible_entity', ExtensibleEntityType::class,array('class'=>'AppBundle:Article','choice_label'=>'name')); $builder->add('extensible_document', ExtensibleDocumentType::class,array('class'=>'AppBundle:Article','choice_label'=>'name')); // With route (generate the route defined as 'route' option and renders it as 'data-ajax-url' html attribute) $builder->add('extensible_choice', ExtensibleChoiceType::class,array('route'=>'ajax_choices')); $builder->add('extensible_entity', ExtensibleEntityType::class,array('route'=>'ajax_entities','class'=>'AppBundle:Article','choice_label'=>'name')); $builder->add('extensible_document', ExtensibleDocumentType::class,array('route'=>'ajax_documents','class'=>'AppBundle:Article','choice_label'=>'name'));
This will render HTML like :
<!-- if %alsatian_form.extensible_choice.attr_class% = 'select2' --> <select data-ajax--url="%your_route%" class="select2"> </select>
The aim of this bundle is only to do the server side work (allowing "extensible" choices). You have to write your own Javescript adapters to get it work with Select2.
As example, how I use it :
$(document).ready(function(){ $('.select2').each(function(){ var configs={ allowClear: true, width:'resolve', ajax:{ data: function (params) {return {q: params.term};}, dataType:'json',delay: 250, processResults: function (data) { var dataresults = []; $.each(data, function(key, val){ dataresults.push({id: val[0], text: val[1]}); }); return { results: dataresults }; } }; }; $(this).select2(configs); }); });
alsatian/form-bundle 适用场景与选型建议
alsatian/form-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 25.01k 次下载、GitHub Stars 达 14, 最近一次更新时间为 2016 年 03 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「select2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 alsatian/form-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 alsatian/form-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 alsatian/form-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The bundle for easy using json-rpc api on your project
Bundle Symfony DaplosBundle
The select2 extension for the Yii framework
This is a CMB2 Extension repository which help modify the default behavior of CMB2 and extends it's functionality.
AssetBundle for select2
Simple laravel package to make easier using select2 ajax with the filter
统计信息
- 总下载量: 25.01k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 14
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-03-10