itGuild tables

This commit is contained in:
Билай Станислав 2024-07-12 13:46:44 +03:00
parent 91dc9194e0
commit 0d077fb641
6 changed files with 97 additions and 5 deletions

View File

@ -2,8 +2,10 @@
namespace app\controllers; namespace app\controllers;
use app\foo;
use app\models\Question; use app\models\Question;
use app\models\User; use app\models\User;
use Itguild\Tables\ListJsonTable;
use kernel\Controller; use kernel\Controller;
class UserController extends Controller{ class UserController extends Controller{
@ -35,7 +37,14 @@ class UserController extends Controller{
{ {
$userArr[$i++] = $user; $userArr[$i++] = $user;
} }
echo $this->twig->render('userTable.html', ['userArr' => $userArr]); echo $this->twig->render('user_table.html.twig', ['userArr' => $userArr]);
$json = new foo();
$userArr = $json->createJsonArray(User::labels(), $userArr, "form1");
$table = new ListJsonTable($userArr);
$table->create();
$table->render();
} }
public function actionView($id): void public function actionView($id): void

46
app/foo.php Normal file
View File

@ -0,0 +1,46 @@
<?php
namespace app;
class foo
{
public array $informationArray;
/**
* @param array $columns
* @param array $data
* @return string|null
*/
public function createJsonArray(array $columns, array $data, string $title): ?string
{
if ($columns && $data) {
$this->informationArray = [
"meta" => [
"title" => $title,
"columns" => $columns,
"perPage" => 10,
"currentPage" => 1,
"params" =>
[
"class" => "table table-bordered",
"border" => "1"
]
],
"data" => $data
];
return $this->toJson($this->informationArray);
}
return null;
}
/**
* @param array $infArr
* @return string|null
*/
protected function toJson(array $infArr): ?string
{
if ($infArr)
return json_encode($infArr, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
return null;
}
}

View File

@ -5,5 +5,15 @@ use Illuminate\Database\Eloquent\Model;
class User extends Model { class User extends Model {
protected $table = 'user'; protected $table = 'user';
protected $fillable = ['username', 'email', 'password_hash', 'role']; protected $fillable = ['username', 'email', 'password_hash', 'role'];
protected $dates = ['deleted at']; protected array $dates = ['deleted at'];
public static function labels(): array
{
return [
'username' => 'Логин',
'email' => 'Email',
'created_at' => 'Создан',
'updated_at' => 'Обновлен'
];
}
} }

View File

@ -6,7 +6,8 @@
"illuminate/database": "^11.14", "illuminate/database": "^11.14",
"craft-group/phroute": "^2.1", "craft-group/phroute": "^2.1",
"vlucas/phpdotenv": "^5.6", "vlucas/phpdotenv": "^5.6",
"twig/twig": "^3.0" "twig/twig": "^3.0",
"itguild/tables": "^0.1.0"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {

28
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "ec1e05ff0752e8d6ad1df75a5cae6188", "content-hash": "479a64315f08eb4456be2e2425d4ba60",
"packages": [ "packages": [
{ {
"name": "brick/math", "name": "brick/math",
@ -723,6 +723,32 @@
}, },
"time": "2024-07-08T14:46:56+00:00" "time": "2024-07-08T14:46:56+00:00"
}, },
{
"name": "itguild/tables",
"version": "0.1",
"source": {
"type": "git",
"url": "https://git.itguild.info/ItGuild/tables",
"reference": "42ab26a3db1cef8319985fc3a0f5d23d2dff4e3b"
},
"type": "library",
"autoload": {
"psr-4": {
"Itguild\\Tables\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Kavalar",
"email": "apuc06@mail.ru"
}
],
"time": "2024-05-27T09:59:44+00:00"
},
{ {
"name": "nesbot/carbon", "name": "nesbot/carbon",
"version": "3.6.0", "version": "3.6.0",

View File

@ -1,4 +1,4 @@
{% extends "mainLayout.html" %} {% extends "main_layout.html.twig" %}
{% block content %} {% block content %}
<table border="1" style="width: 80%;"> <table border="1" style="width: 80%;">