update view json table

This commit is contained in:
2024-07-23 15:17:16 +03:00
parent 85c4a850b1
commit 48e6d645d9
3 changed files with 62 additions and 19 deletions

View File

@ -23,7 +23,7 @@ class ViewJsonTable
{
$this->json = $json;
$this->data = json_decode($this->json, true);
$this->dataJson = json_decode($this->data['data']['data'], true);
$this->dataJson = $this->data['data'];
}
@ -31,20 +31,25 @@ class ViewJsonTable
public function beginTable(): void
{
$paramsStr = $this->createParams($this->data['meta']['params']);
$hook = $this->beforePrintTable;
$this->html = $hook();
//Хук перед выводом ячейки
if (isset($this->beforePrintTable)){
$hook = $this->beforePrintTable;
$this->html = $hook();
}
$this->html .= "<table $paramsStr>";
}
public function createColum(): string
public function createRows(): string
{
foreach ($this->data['meta']['columns'] as $key => $column){
if ($this->issetColumn($key)){
if ($this->beforePrintCell){
foreach ($this->data['meta']['rows'] as $key => $row){
if ($this->issetRow($key)){
if (isset($this->beforePrintCell)){
$hook = $this->beforePrintCell;
$this->dataJson[$key] = $hook($key, $this->dataJson[$key]);
}
$this->html .= "<tr><th>" . $column . ": </th><td>" . $this->dataJson[$key] . "</td></tr>";
$this->html .= "<tr><th>" . $row . ": </th><td>" . $this->dataJson[$key] . "</td></tr>";
}
}
@ -53,11 +58,11 @@ class ViewJsonTable
return $this->html;
}
private function issetColumn($column)
private function issetRow($column): bool
{
if (isset($this->data['meta']['columns'])){
foreach ($this->data['meta']['columns'] as $key => $currentColumn){
if (isset($this->data['meta']['rows'])){
foreach ($this->data['meta']['rows'] as $key => $currentColumn){
if ($key === $column){
return true;
}
@ -67,18 +72,20 @@ class ViewJsonTable
return false;
}
public function endTable()
public function endTable(): void
{
$this->html .= "</table>";
$hookAfter = $this->afterPrintTable;
$this->html .= $hookAfter();
if(isset($this->afterPrintTable)){
$hookAfter = $this->afterPrintTable;
$this->html .= $hookAfter();
}
}
public function create()
public function create(): void
{
$this->beginTable();
$this->createColum();
$this->createRows();
$this->endTable();
}
@ -93,11 +100,9 @@ class ViewJsonTable
$this->afterPrintTable = $closure;
}
public function render()
public function render(): void
{
echo $this->html;
}
public function setBeforePrintCell(\Closure $closure): void