heimrichhannot/contao-list-widget-bundle
Composer 安装命令:
composer require heimrichhannot/contao-list-widget-bundle
包简介
This bundle offers an input type for displaying a list of entities definable by a callback function.
README 文档
README
This bundle offers functionality for displaying a list in the Contao backend (either as a dca field or in a backend module).
For visualization the javascript library DataTables is used.
Features
- inputType "listWidget" for usage as a dca field
- convenient functions for integrating a list in your backend module
- the list can display either model data or even arbitrary arrays
- support for datatables javascript library
- filter the table
- search the table
- sort the table
- support for ajax reloading data using datatables -> currently only working for contao models since SQL-commands like LIMIT are used
Technical instructions
Usage as a widget in a dca field
Use the inputType "listWidget" for your field.
'someField' => [
'label' => &$GLOBALS['TL_LANG']['tl_my_dca']['someField'],
'exclude' => true,
'inputType' => 'listWidget',
'eval' => [
'listWidget' => [
'ajax' => true,
'ajaxConfig' => [
'load_items_callback' => ['SomeClass', 'loadItems']
],
'header_fields_callback' => function ()
{
$arrHeaderFields = [];
foreach (['academicTitle', 'additionalTitle', 'gender', 'lastname', 'email'] as $strField)
{
$arrHeaderFields[$strField] = \HeimrichHannot\Haste\Dca\General::getLocalizedFieldname($strField, 'tl_dca');
}
return $arrHeaderFields;
},
'table' => 'tl_dca'
]
]
]
Usage in a module
Add the following code e.g. in the generate() method of your BackendModule:
static::$arrListConfig = [
'identifier' => 'module_' . $this->id,
'table' => 'tl_dca',
'ajax' => true,
'ajaxConfig' => [
'load_items_callback' => function($arrConfig, $arrOptions = [], $objContext = null, $objDc = null) {
return $this->loadItems($arrConfig, $arrOptions, $objContext, $objDc);
},
'prepare_items_callback' => function($objItems) {
return $this->parseNewsletters($objItems);
},
],
'columns' => static::getColumns(),
'language' => static::getLanguage()
];
static::$arrListConfig = ListWidget::prepareConfig(static::$arrListConfig, $this);
ListWidget::initAjaxLoading(static::$arrListConfig);
Call this in your module's compile method:
ListWidget::addToTemplate($this->Template, static::$arrListOptions);
Copy the content of list_widget.html5 into your module's template.
Using ajax with custom routes
Since version 1.3 it is possible to use custom routes for ajax requests to have more control or freedom over the returned data.
Use ListWidgetContext class as helper to process the request and return a ListWidgetResponse object.
# /contao/dca/tl_custom.php $GLOBALS['TL_DCA']['tl_custom']['fields']['people'] = [ 'inputType' => 'listWidget', 'eval' => [ 'tl_class' => 'long clr', 'listWidget' => [ 'ajax' => true, 'ajaxConfig' => [ 'route' => 'app_list_widget_people_list', ], 'table' => 'tl_custom', ], ], ]; # /src/Controller/PeopleController.php use Contao\CoreBundle\Framework\ContaoFramework; use Doctrine\Common\Collections\Criteria; use HeimrichHannot\ListWidgetBundle\Controller\ListWidgetContext; use HeimrichHannot\ListWidgetBundle\Controller\ListWidgetResponse; use App\People\PeopleFinder; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Routing\Annotation\Route; #[Route('/app/list_widget/people_list', name: 'app_list_widget_people_list', defaults: ['_scope' => 'backend'])] class PeopleController { public function __construct( private readonly ContaoFramework $framework, private readonly PeopleFinder $people, ) {} public function __invoke(Request $request): ListWidgetResponse { $this->framework->initialize(); try { $context = ListWidgetContext::createFromRequest($request); } catch (\Exception $e) { return new ListWidgetResponse(1, 0, 0, [], $e->getMessage()); } $countTotal = $this->people->countByList($context->id); $fields = ['id', 'email', 'firstname', 'lastname']; $criteria = new Criteria(); $context->applySearchToCriteria($criteria,$fields); $countFiltered = $this->people->countByList($context->id, $criteria); $context->applyListConfigToCriteria($criteria, $fields); $people = $this->people->findByList($context->id, $fields, $criteria); return $context->createResponse($countTotal, $countFiltered, $people); } }
Example load_items_callback
Here you can see an example for overriding the core behavior of loadItems():
public static function loadItemsNew($arrConfig, $arrOptions = [], $objContext = null, $objDc = null)
{
// set an initial filter using the contao options array
$arrOptions = [
'table' => $arrConfig['table'],
'columns' => $arrConfig['columns'],
// filtering
'column' => 'pid',
'value' => $objDc->id
];
// the rest of the function should also be called
return ListWidget::loadItems($arrConfig, $arrOptions, $objContext, $objDc);
}
Config (same structure for DCA -> eval -> listWidget and shortcut functions)
| Name | Possible value | Description |
|---|---|---|
| identifier | string | Needed for distinguishing requests from multiple list widget implementations, e.g. 'module_' . $this->id |
| headerFields | array | Must return an array containing the header fields. The keys must match the keys of the arrays/objects in items/items_callback. |
| header_fields_callback | callback array, function closure | Must return an array containing the header fields. The keys must match the keys of the arrays/objects in items/items_callback. |
| items | array | Must return an array containing the items to be displayed. The item keys must match those in header_fields/header_fields_callback. |
| items_callback | callback array, function closure | Must return an array containing the items to be displayed. The item keys must match those in header_fields/header_fields_callback. |
| table | string (e.g. "tl_dca") | This value is needed for useDbAsHeader and ajax handling |
| useDbAsHeader | boolean | Set to true if the header should contain all fields of a certain database entity ("table" is used) |
| template | string | Specify a custom template |
| language | array | Specify custom localizations (see ListWidget::getLanguage() for details) |
| language_callback | callback array, function closure | Specify custom localizations (see ListWidget::getLanguage() for details) |
| ajax | boolean | Set to true if ajax reloading should take place (no need for items_callback in this case) |
| ajaxConfig -> load_items | array | Override this if custom model options or methods are needed (see ListWidget::loadItems() for details) |
| ajaxConfig -> load_items_callback | callback array, function closure | Override this if custom model options or methods are needed (see ListWidget::loadItems() for details) |
| ajaxConfig -> prepare_items | array | Override this if custom data preparation is needed (see ListWidget::prepareItems() for details) |
| ajaxConfig -> prepare_items_callback | callback array, function closure | Override this if custom data preparation is needed (see ListWidget::prepareItems() for details) |
Callbacks
| Name | Arguments | Expected return value | Description |
|---|---|---|---|
| headerFields_callback | $objDc, $arrDca, $objWidget | array containing field and label pairs (['field1' => 'fieldLabel1', 'field2' => 'fieldLabel2', ...]) |
This callback must return the headerFields to be displayed in the list. Array keys need to be the keys in items_callback (see list_widget.html5 for explanation). |
| items_callback | $objDc, $arrDca, $objWidget | array of entity arrays ([['field1' => 'value1', 'field2' => 'value2'], ...]) |
This callback must return the items to be displayed in the list |
| load_callback | $arrOptions, [], $objDc, $arrDca, $objWidget | data array (see ListWidget::loadItems for more details) | Override this method if custom model options or methods are needed |
| prepare_items_callback | $objItems, $arrListOptions, $arrOptions, $objDc, $arrDca, $objWidget | data array (see ListWidget::prepareItems for more details) | Override this method if custom data preparation is needed |
heimrichhannot/contao-list-widget-bundle 适用场景与选型建议
heimrichhannot/contao-list-widget-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 12 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 heimrichhannot/contao-list-widget-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 heimrichhannot/contao-list-widget-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 9
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-or-later
- 更新时间: 2020-12-04
