MicroFrameWork/kernel/modules/post/views/index.php

97 lines
2.9 KiB
PHP
Raw Normal View History

2024-07-25 16:15:18 +03:00
<?php
/**
2024-07-26 11:57:05 +03:00
* @var \Illuminate\Database\Eloquent\Collection $contents
2024-08-07 15:30:45 +03:00
* @var int $page_number
2024-12-12 14:06:47 +03:00
* @var \kernel\CgView $view
2024-07-25 16:15:18 +03:00
*/
2024-09-06 16:53:20 +03:00
use kernel\modules\post\models\Post;
use kernel\modules\user\models\User;
2024-08-07 15:30:45 +03:00
use Itguild\EloquentTable\EloquentDataProvider;
use Itguild\EloquentTable\ListEloquentTable;
2024-11-20 12:45:02 +03:00
use kernel\widgets\IconBtn\IconBtnCreateWidget;
use kernel\widgets\IconBtn\IconBtnDeleteWidget;
use kernel\widgets\IconBtn\IconBtnEditWidget;
use kernel\widgets\IconBtn\IconBtnViewWidget;
2024-07-25 16:15:18 +03:00
2024-12-25 11:40:33 +03:00
$get = (new \kernel\Request())->get();
2024-12-24 16:38:28 +03:00
2024-08-07 15:30:45 +03:00
$table = new ListEloquentTable(new EloquentDataProvider(Post::class, [
'currentPage' => $page_number,
'perPage' => 3,
2024-07-25 16:15:18 +03:00
'params' => ["class" => "table table-bordered", "border" => "2"],
2024-12-23 15:47:03 +03:00
'baseUrl' => "/admin/post",
2024-12-24 16:38:28 +03:00
'searchPrefix' => "",
2024-12-26 14:04:35 +03:00
'searchParams' => $get,
2024-08-07 15:30:45 +03:00
]));
2024-11-28 16:25:51 +03:00
2024-12-12 14:06:47 +03:00
$view->setTitle("Список постов");
$view->setMeta([
'description' => 'Список постов системы'
]);
2024-11-28 16:25:51 +03:00
$entityRelation = new \kernel\EntityRelation();
$additionals = $entityRelation->getEntityRelationsBySlug("post");
foreach ($additionals as $additional) {
$table->addColumn($additional, $additional, function ($id) use ($entityRelation, $additional) {
return $entityRelation->getAdditionalPropertyByEntityId("post", $id, $additional);
});
}
2024-12-24 16:38:28 +03:00
//\kernel\helpers\Debug::dd($request);
2024-08-07 15:30:45 +03:00
2024-12-24 16:38:28 +03:00
$table->columns([
'title' => [
'filter' => [
2024-12-26 14:04:35 +03:00
'class' => \kernel\filters\BootstrapTextFilter::class,
2024-12-25 11:40:33 +03:00
'value' => $get['title'] ?? ''
2024-12-24 16:38:28 +03:00
]
],
'content' => [
'filter' => [
2024-12-26 14:04:35 +03:00
'class' => \kernel\filters\BootstrapTextFilter::class,
2024-12-25 11:40:33 +03:00
'value' => $get['content'] ?? ''
2024-12-24 16:38:28 +03:00
]
],
'created_at' => [
'format' => 'date:d-m-Y',
],
2024-08-07 15:30:45 +03:00
'updated_at' => function ($data) {
2024-12-24 16:38:28 +03:00
if (!$data) {
2024-08-07 15:30:45 +03:00
return null;
}
2024-07-26 12:42:44 +03:00
2024-08-07 15:30:45 +03:00
return (new DateTimeImmutable($data))->format("d-m-Y");
},
2024-12-24 16:38:28 +03:00
'user_id' => [
'value' => function ($data) {
return User::find($data)->username;
},
'filter' => [
2024-12-27 13:50:37 +03:00
'class' => \kernel\filters\BootstrapSelectFilter::class,
'params' => [
'options' => \kernel\modules\user\service\UserService::createUsernameArr(),
'prompt' => 'Не выбрано'
],
2024-12-26 14:04:35 +03:00
'value' => $get['user_id'] ?? '',
],
2024-12-24 16:38:28 +03:00
]
2024-08-07 15:30:45 +03:00
]);
2024-11-20 12:45:02 +03:00
2024-12-24 16:38:28 +03:00
2024-08-07 15:30:45 +03:00
$table->beforePrint(function () {
2024-11-20 12:45:02 +03:00
return IconBtnCreateWidget::create(['url' => '/admin/post/create'])->run();
});
2024-12-24 16:38:28 +03:00
$table->addAction(function ($row) {
2024-11-20 12:45:02 +03:00
return IconBtnViewWidget::create(['url' => '/admin/post/view/' . $row['id']])->run();
});
2024-12-24 16:38:28 +03:00
$table->addAction(function ($row) {
2024-11-20 12:45:02 +03:00
return IconBtnEditWidget::create(['url' => '/admin/post/update/' . $row['id']])->run();
});
2024-12-24 16:38:28 +03:00
$table->addAction(function ($row) {
2024-11-20 12:45:02 +03:00
return IconBtnDeleteWidget::create(['url' => '/admin/post/delete/' . $row['id']])->run();
2024-07-25 16:15:18 +03:00
});
$table->create();
$table->render();