pagination
This commit is contained in:
@ -23,6 +23,8 @@ class ListJsonTable
|
||||
private string $baseUrl;
|
||||
private array $data;
|
||||
|
||||
private bool $pagination = true;
|
||||
|
||||
private array $actionsArray = [];
|
||||
private array $customActionsArray = [];
|
||||
|
||||
@ -32,6 +34,7 @@ class ListJsonTable
|
||||
$this->json = $json;
|
||||
$this->data = json_decode($this->json, true);
|
||||
$this->baseUrl = $this->data['meta']['baseUrl'] ?? '';
|
||||
$this->pagination = $this->data['meta']['pagination'] ?? true;
|
||||
$this->beforePrintHook = function () {
|
||||
};
|
||||
$this->afterPrintHook = function () {
|
||||
@ -80,7 +83,8 @@ class ListJsonTable
|
||||
foreach ($this->data['data'] as $col) {
|
||||
$this->html .= "<tr>";
|
||||
$this->count += 1;
|
||||
$this->html .= '<td><a href=' . $this->baseUrl . "/" . $col["id"] . '>' . $this->count . '</a></td>';
|
||||
$id = $col["id"] ?? $this->count;
|
||||
$this->html .= '<td><a href=' . $this->baseUrl . "/" . $id . '>' . $id . '</a></td>';
|
||||
foreach ($col as $key => $row) {
|
||||
if ($this->issetColumn($key) and $this->is_fillable($key)) {
|
||||
if ($this->beforePrintCell) {
|
||||
@ -191,13 +195,19 @@ class ListJsonTable
|
||||
public function endTable(): void
|
||||
{
|
||||
$this->html .= "</table>";
|
||||
// $pagination = new Pagination($this->data['meta']['total'], $this->data['meta']['perPage'], $this->data['meta']['currentPage'], $this->baseUrl);
|
||||
$pagination = new Pagination(count($this->data['data']), $this->data['paginationParams'], $this->baseUrl);
|
||||
var_dump(count($this->data['data']));
|
||||
$pagination->create();
|
||||
$this->html .= $pagination->fetch();
|
||||
$hookAfter = $this->afterPrintHook;
|
||||
$this->html .= $hookAfter($this->data['meta']);
|
||||
|
||||
if ($this->pagination){
|
||||
$pagination = new Pagination(
|
||||
$this->data['meta']['total'],
|
||||
$this->data['meta']['perPage'],
|
||||
$this->data['meta']['currentPage'],
|
||||
$this->baseUrl
|
||||
);
|
||||
$pagination->create();
|
||||
$this->html .= $pagination->fetch();
|
||||
}
|
||||
}
|
||||
|
||||
public function render(): void
|
||||
|
@ -14,12 +14,12 @@ class Pagination
|
||||
|
||||
private string $baseUrl;
|
||||
|
||||
// public function __construct($countItem, $perPage, $currentPage, $baseUrl)
|
||||
public function __construct(int $countItem, array $params, string $baseUrl)
|
||||
public function __construct($countItem, $perPage, $currentPage, $baseUrl)
|
||||
// public function __construct(int $countItem, array $params, string $baseUrl)
|
||||
{
|
||||
$this->countItem = $countItem;
|
||||
$this->perPage = $params['perPage'];
|
||||
$this->currentPage = $params['currentPage'];
|
||||
$this->perPage = $perPage;
|
||||
$this->currentPage = $currentPage;
|
||||
$this->baseUrl = $baseUrl;
|
||||
|
||||
$this->countPages = ceil($this->countItem / $this->perPage);
|
||||
|
Reference in New Issue
Block a user