Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
f11d155606 | |||
557fa1e22b | |||
33d7069708 | |||
8063ec0735 |
@ -5,12 +5,12 @@ namespace Itguild\Tables\Filter;
|
||||
abstract class Filter
|
||||
{
|
||||
public string $html = '';
|
||||
public string|array $param;
|
||||
public string|array $params;
|
||||
public string $name;
|
||||
public string $value;
|
||||
public function __construct(array $source)
|
||||
{
|
||||
$this->param = $source['param'] ?? '';
|
||||
$this->params = $source['params'] ?? '';
|
||||
$this->name = $source['name'];
|
||||
$this->value = $source['value'] ?? '';
|
||||
}
|
||||
|
@ -9,6 +9,7 @@ use Itguild\Tables\ActionColumn\ViewActionColumn;
|
||||
use Itguild\Tables\Filter\InputTextFilter;
|
||||
use Itguild\Tables\traits\CreateParams;
|
||||
use JetBrains\PhpStorm\NoReturn;
|
||||
use kernel\helpers\Debug;
|
||||
|
||||
class ListJsonTable extends JasonTable
|
||||
{
|
||||
@ -18,6 +19,7 @@ class ListJsonTable extends JasonTable
|
||||
|
||||
private int $count = 0;
|
||||
private string $baseUrl;
|
||||
private string $searchPrefix;
|
||||
private array $data;
|
||||
|
||||
private bool $pagination = true;
|
||||
@ -35,6 +37,7 @@ class ListJsonTable extends JasonTable
|
||||
$this->json = $json;
|
||||
$this->data = json_decode($this->json, true);
|
||||
$this->baseUrl = $this->data['meta']['baseUrl'] ?? '';
|
||||
$this->searchPrefix = $this->data['meta']['searchPrefix'] ?? '/search';
|
||||
$this->pagination = $this->data['meta']['pagination'] ?? true;
|
||||
$this->showActionColumn = $this->data['meta']['showActionColumn'] ?? true;
|
||||
$this->showFiltersRow = $this->data['meta']['showFiltersRow'] ?? true;
|
||||
@ -270,14 +273,14 @@ class ListJsonTable extends JasonTable
|
||||
|
||||
private function getFilters(array $columnKeys): void
|
||||
{
|
||||
$this->html .= "<tr><form action='$this->baseUrl/search'>";
|
||||
$this->html .= "<tr><form action='$this->baseUrl$this->searchPrefix'>";
|
||||
$flag = false;
|
||||
foreach ($columnKeys as $key) {
|
||||
if ($this->issetFilter($key)) {
|
||||
$flag = true;
|
||||
$filter = $this->getCurrentFilter($key);
|
||||
$params = [
|
||||
'param' => $filter['param'] ?? '',
|
||||
'params' => $filter['params'] ?? '',
|
||||
'name' => $key,
|
||||
'value' => $filter['value'] ?? '',
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user