intracto/datatables-backend
Composer 安装命令:
composer require intracto/datatables-backend
包简介
Library to handle AJAX calls for datatables.net
关键字:
README 文档
README
Handle AJAX requests for Datatables.net.
Install
composer require intracto/datatables-backend
or
"intracto/datatables-backend" : "dev-master"
Columns
Container class to hold Column objects. This is used to get the field for sorting.
Column
Hold data about a column, can be used for the frontend to render <th> and let DataTables known which fields
are sortable and searchable (via javascript).
DataProvider
Get the data to show in the datatable. Requires Parameters, DataTablesRepository, ColumnTransformer.
Parameters
Container class to hold data from the datatables AJAX request.
DataTablesRepositoryInterface
Defines query functions needed to fetch the data.
DataTablesRepositoryTrait
An implementation of DataTablesRepositoryInterface with general queries. Only available for Doctrine ODM for now.
ColumnTransformerInterface
Transform data fetched from the Repository to format needed for the datatables. The order of the fields is important here.
Example
Columns
class AddressListColumns extends Columns
{
public function __construct()
{
parent::__construct(
array(
// In order of the tables headers
new Column('city', 'city', true, true),
new Column('zip', 'zip', false, false),
new Column('street', 'street', false, false),
new Column('actions', 'actions', false, false),
)
);
}
}
Transformer
class AddressListColumnTransformer implements ColumnTransformerInterface
{
/**
* @var EngineInterface
*/
private $renderEngine;
/**
* AddressListColumnTransformer constructor
*
* @param EngineInterface $renderEngine
*/
public function __construct(EngineInterface $renderEngine)
{
$this->renderEngine = $renderEngine;
}
/**
* @param array $data
*
* @return array
*/
public function transform(array $data)
{
$columns = array();
foreach ($data as $address) {
/**
* @var Address $address
*/
$columns[] = array(
$address->getCity()
$address->getZip()
$address->getStreet()
$this->renderEngine->render('Address/_list.actions.html.twig', array('address' => $address)),
);
}
return $columns;
}
}
Repository
class AddressRepository extends DocumentRepository implements DataTablesRepositoryInterface
{
use DataTablesRepositoryTrait;
}
Controller
public function listAction()
{
$columns = new AddressListColumns();
return array(
'columns' => $columns,
);
}
public function ajaxListAction(Request $request)
{
$parameters = Parameters::fromParameterBag($request->query, new AddressListColumns());
$data = $this->dataTablesDataProvider->getData(
$parameters,
$addressRepository,
$addressListColumnTransformer
);
return new JsonResponse($data);
}
Frontend
External JS
Include ajax-datatables.js after loading the official datatables.js plug-in
Twig html
Make sure the table has the "ajaxdatatable" class Loop all the columns in the table head
<table class="ajaxdatatable">
<thead>
<tr>
{% for column in columns %}
<th>{{ ("translatable.prefix." ~ column.name)|trans }}</th>
{% endfor %}
</tr>
</thead>
</table>
Default sorting needed? Add the class default_sort and asc|desc to the <th> to the correct column
<th {% if column.name == 'email' %} class="default_sort desc"{% endif %}>
...
</th>
Twig JS
On the twig page where the ajax datatable must be loaded, place following script block
The filters are optional, here you can pass searchable/filterable fields
<script>
$(document).ready(function(){
{# define the ajax call path #}
var ajaxCallPath = "{{ path("path_to_your_ajax_call") }}";
{# define which columns are orderable #}
var sortable = [
{% for column in columns %}
{%- if column.orderable -%}
{{ 'null' }}
{%- else -%}
{{ '{ "orderable": false }'}}
{%- endif -%}
{{ ',' }}
{% endfor %}
];
{# page load filter fields, do not add .val() since we need the reference #}
var filters = {
'name': $("#js-filter-naam"),
'address.city': $("#js-filter-city")
};
{# on page load, init the datatable #}
ajaxDatatable(ajaxCallPath, sortable, filters, stateSaveAffix);
{# on submit, change, whenever you want #}
$(document).on("click", "#js-filter-submit", function(){
{# no need to pass the parameters again #}
ajaxDatatable();
});
});
</script>
intracto/datatables-backend 适用场景与选型建议
intracto/datatables-backend 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.34k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2016 年 08 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「ajax」 「datatables」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 intracto/datatables-backend 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 intracto/datatables-backend 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 intracto/datatables-backend 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.
Laravel DataTables plugin to support Mongodb
Plug-ins for DataTables
The bundle for easy using json-rpc api on your project
Selenium4 (WebDriver) driver for Mink framework
Vanilla Components Integration with Laravel
统计信息
- 总下载量: 8.34k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-16