user crud
This commit is contained in:
@ -42,4 +42,11 @@ class Database
|
||||
|
||||
$this->schema = $this->capsule->schema();
|
||||
}
|
||||
|
||||
public function createBuilder(string $table_name): \Illuminate\Database\Query\Builder
|
||||
{
|
||||
$builder = new \Illuminate\Database\Query\Builder($this->schema->getConnection());
|
||||
$builder->from($table_name);
|
||||
return $builder;
|
||||
}
|
||||
}
|
78
kernel/IGTabel/EloquentDataProvider.php
Normal file
78
kernel/IGTabel/EloquentDataProvider.php
Normal file
@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
namespace kernel\IGTabel;
|
||||
|
||||
use app\helpers\Debug;
|
||||
use Exception;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class EloquentDataProvider
|
||||
{
|
||||
protected int $totalCount;
|
||||
|
||||
protected int $perPage = 10;
|
||||
|
||||
protected int $currentPage = 1;
|
||||
|
||||
protected Model $model;
|
||||
|
||||
protected $queryBuilder = false;
|
||||
|
||||
protected array $options = [];
|
||||
protected array $meta = [];
|
||||
protected string $jsonStr = '';
|
||||
|
||||
/**
|
||||
* @throws Exception
|
||||
*/
|
||||
public function __construct($source, array $options)
|
||||
{
|
||||
if (is_string($source)) {
|
||||
$this->queryBuilder = $source::query();
|
||||
$model = new $source();
|
||||
} elseif (is_object($source)) {
|
||||
$this->queryBuilder = $source;
|
||||
$model = $source->getModel();
|
||||
} else {
|
||||
throw new Exception(message: "source is not valid");
|
||||
}
|
||||
$this->options = $options;
|
||||
$this->currentPage = $this->options['currentPage'] ?? 1;
|
||||
$this->perPage = $this->options['perPage'] ?? 10;
|
||||
$this->meta['total'] = $model->count();
|
||||
$this->meta['totalWithFilters'] = $this->queryBuilder->count();
|
||||
$this->meta['columns'] = $options['columns'] ?? $model->labels();
|
||||
$this->meta['perPage'] = $options['perPage'] ?? 10;
|
||||
$this->meta['currentPage'] = $options['currentPage'] ?? 1;
|
||||
$this->meta['baseUrl'] = $options['baseUrl'] ?? $model->table;
|
||||
$this->meta['params'] = $options['params'] ?? [];
|
||||
$this->meta['actions'] = $options['actions'] ?? [];
|
||||
$this->createQuery();
|
||||
|
||||
$this->jsonStr = (new JSONCreator($this->meta, $this->getCollection()->toArray()))->getJson();
|
||||
|
||||
}
|
||||
|
||||
public function createQuery(): void
|
||||
{
|
||||
if ($this->currentPage > 1) {
|
||||
$this->queryBuilder->skip(($this->currentPage - 1) * $this->perPage)->take($this->perPage);
|
||||
} else {
|
||||
$this->queryBuilder->take($this->perPage);
|
||||
}
|
||||
}
|
||||
|
||||
public function getCollection()
|
||||
{
|
||||
return $this->queryBuilder->get();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string|null
|
||||
*/
|
||||
public function getJson(): string|null
|
||||
{
|
||||
return $this->jsonStr;
|
||||
}
|
||||
|
||||
}
|
@ -13,16 +13,7 @@ class JSONCreator
|
||||
$params = empty($meta['params']) ? ["class" => "table table-bordered", "border" => "1"] : $meta['params'];
|
||||
if ($meta) {
|
||||
$this->informationArray = [
|
||||
"meta" => [
|
||||
"columns" => $meta['columns'] ?? [],
|
||||
"rows" => $meta['rows'] ?? [],
|
||||
"perPage" => $meta['perPage'] ?? 10,
|
||||
"currentPage" => $meta['currentPage'] ?? 1,
|
||||
"baseUrl" => $meta['baseUrl'] ?? '',
|
||||
"actions" => $meta['actions'] ?? '',
|
||||
"params" => $params
|
||||
|
||||
],
|
||||
"meta" => $meta,
|
||||
"data" => $data ?? []
|
||||
];
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ return new class extends Migration
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('{{ table }}', function (Blueprint $table) {
|
||||
\kernel\App::$db->schema->create('{{ table }}', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
});
|
||||
@ -22,6 +22,6 @@ return new class extends Migration
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('{{ table }}');
|
||||
\kernel\App::$db->schema->dropIfExists('{{ table }}');
|
||||
}
|
||||
};
|
||||
|
@ -11,7 +11,7 @@ return new class extends Migration
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('{{ table }}', function (Blueprint $table) {
|
||||
\kernel\App::$db->schema->table('{{ table }}', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
@ -21,7 +21,7 @@ return new class extends Migration
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('{{ table }}', function (Blueprint $table) {
|
||||
\kernel\App::$db->schema->table('{{ table }}', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user