-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathDatatable.php
More file actions
654 lines (551 loc) · 15.2 KB
/
Datatable.php
File metadata and controls
654 lines (551 loc) · 15.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
<?php
namespace Sebastienheyd\Boilerplate\Datatables;
use Closure;
use Exception;
use Illuminate\Http\JsonResponse;
use Illuminate\Support\Facades\Auth;
use Yajra\DataTables\DataTableAbstract;
use Yajra\DataTables\DataTables;
abstract class Datatable
{
public $slug = '';
protected object $datasource;
protected bool $checkboxes = false;
protected string $checkboxesField = 'id';
protected ?Closure $filter = null;
protected int $filteredRecords = 0;
protected ?int $offset = null;
protected array $rowAttr = [];
protected string|Closure $rowClass = '';
protected array $rowData = [];
protected string|Closure $rowId = '';
protected bool $skipPaging = false;
protected int $totalRecords = 0;
protected array $locale = [];
protected array $permissions = ['backend_access'];
protected array $orderAttr = [];
protected array $attributes = [
'filters' => true,
'info' => true,
'lengthChange' => true,
'order' => [],
'ordering' => true,
'pageLength' => 10,
'paging' => true,
'pagingType' => 'simple_numbers',
'searching' => true,
'stateSave' => false,
'condensed' => false,
'lengthMenu' => [[10, 25, 50, 100, -1], [10, 25, 50, 100, '∞']],
'buttons' => ['filters'],
'footerCallback' => null,
];
/**
* Renders the DataTable Json that will be used by the ajax call.
*
* @return JsonResponse
*
* @throws Exception
*/
public function make(): JsonResponse
{
$this->setUp();
if (! Auth::user()->ability(['admin'], $this->permissions)) {
abort(503);
}
if ($this->datasource() instanceof DataTableAbstract) {
$datatable = $this->datasource();
} else {
$datatable = DataTables::of($this->datasource());
}
if ($this->filter) {
$datatable->filter($this->filter);
}
if ($this->offset) {
$datatable->setOffset($this->offset);
}
if ($this->totalRecords) {
$datatable->setTotalRecords($this->totalRecords);
}
if ($this->filteredRecords) {
$datatable->setFilteredRecords($this->filteredRecords);
}
if ($this->skipPaging) {
$datatable->skipPaging();
}
$raw = [];
foreach (['rowAttr', 'rowClass', 'rowData', 'rowId'] as $attr) {
if ($this->{$attr}) {
$datatable->{'set'.ucfirst($attr)}($this->{$attr});
}
}
foreach ($this->getColumns() as $column) {
if (empty($column->data)) {
continue;
}
if ($column->filter) {
$datatable->filterColumn($column->name ?? $column->data, $column->filter);
}
if ($column->order) {
$datatable->orderColumn($column->name ?? $column->data, $column->order);
}
if ($column->raw) {
$raw[] = $column->data;
$datatable->editColumn($column->data, $column->raw);
}
}
if (! empty($raw)) {
$datatable->rawColumns($raw);
}
return $datatable->make(true);
}
public function setUp()
{
}
abstract public function datasource();
abstract public function columns(): array;
/**
* Gets all columns, including checkboxes column.
*
* @return array
*/
public function getColumns()
{
$columns = $this->columns();
if ($this->checkboxes) {
$cbid = uniqid('checkbox_');
array_unshift($columns, Column::add(
'<div class="icheck-primary mb-0 mt-0">
<input type="checkbox" name="dt-check-all" id="'.$cbid.'" autocomplete="off">
<label for="'.$cbid.'"></label>
</div>'
)
->notSearchable()
->notOrderable()
->data('checkbox', function ($data) {
$cbid = uniqid('checkbox_');
$id = $data[$this->checkboxesField] ?? '';
return '<div class="icheck-primary mb-0">
<input type="checkbox" name="dt-checkbox['.$id.']" id="'.$cbid.'" autocomplete="off">
<label for="'.$cbid.'"></label>
</div>';
}));
}
return $columns;
}
public function locale(array $locale)
{
$this->locale = $locale;
return $this;
}
public function getLocale()
{
return collect(__('boilerplate::datatable'))->merge($this->locale)->toJson();
}
/**
* Sets the DataTable order by column name and direction.
*
* @param $column
* @param string $order
* @return $this
*/
public function order($column, string $order = 'asc'): Datatable
{
if (! is_array($column)) {
$column = [$column => $order];
}
$this->orderAttr = $column;
return $this;
}
/**
* Gets the column index number by column name.
*
* @param $column
* @return int|string
*/
protected function getColumnIndex($column)
{
if (is_int($column)) {
return $column;
}
foreach ($this->getColumns() as $k => $c) {
if ($c->data === $column) {
return $k;
}
}
return 0;
}
/**
* Set permissions.
*
* @param mixed ...$permissions
* @return $this
*/
public function permissions(...$permissions): Datatable
{
$this->permissions = is_array($permissions[0]) ? $permissions[0] : $permissions;
return $this;
}
/**
* Set buttons to show.
*
* @param mixed ...$buttons
* @return $this
*/
public function buttons(...$buttons): Datatable
{
if (is_array($buttons[0])) {
$buttons = $buttons[0];
}
$this->attributes['buttons'] = collect($buttons)->filter(function ($i) {
return in_array($i, ['filters', 'colvis', 'csv', 'excel', 'copy', 'print', 'refresh']);
})->toArray();
return $this;
}
/**
* Get buttons to show.
*
* @return string
*/
public function getButtons()
{
$buttons = '';
$icons = [
'colvis' => 'eye',
'csv' => 'file-csv',
'excel' => 'file-excel',
];
foreach ($this->attributes['buttons'] as $button) {
$buttons .= view('boilerplate::components.datatablebutton', compact('button', 'icons'))->render();
}
return $buttons;
}
/**
* Sets attributes on all rows.
*
* @param array $rowAttr
* @return $this
*/
public function setRowAttr(array $rowAttr): Datatable
{
$this->rowAttr = $rowAttr;
return $this;
}
/**
* Sets class on all rows.
*
* @param string|Closure $rowClass
* @return $this
*/
public function setRowClass(string|Closure $rowClass): Datatable
{
$this->rowClass = $rowClass;
return $this;
}
/**
* Sets data on all rows.
*
* @param array $rowData
* @return $this
*/
public function setRowData(array $rowData): Datatable
{
$this->rowData = $rowData;
return $this;
}
/**
* Sets id on all rows.
*
* @param string|Closure $rowId
* @return $this
*/
public function setRowId(string|Closure $rowId): Datatable
{
$this->rowId = $rowId;
return $this;
}
/**
* Manual filtering.
*
* @param Closure $query
* @return $this
*/
public function filter(Closure $query): Datatable
{
$this->filter = $query;
return $this;
}
/**
* Defines the array of values to use for the length selection menu.
*
* @param array $value
* @return $this
*/
public function lengthMenu(array $value): Datatable
{
$this->attributes['lengthMenu'] = $value;
return $this;
}
/**
* Sets the paging type to use. Can be numbers, simple, simple_numbers, full, full_numbers, first_last_numbers.
*
* @param $type
* @return $this
*/
public function pagingType($type): Datatable
{
if (in_array($type, ['numbers', 'simple', 'simple_numbers', 'full', 'full_numbers', 'first_last_numbers'])) {
$this->attributes['pagingType'] = $type;
}
return $this;
}
/**
* Sets the default page length.
*
* @param int $length
* @return $this
*/
public function pageLength(int $length = 10): Datatable
{
$this->attributes['pageLength'] = $length;
return $this;
}
/**
* Enable state saving. Stores state information such as pagination position, display length, filtering and sorting.
*
* @return $this
*/
public function stateSave(): Datatable
{
$this->attributes['stateSave'] = true;
return $this;
}
/**
* Shows checkboxes as first column.
*
* @return $this
*/
public function showCheckboxes($field = 'id')
{
$this->checkboxes = true;
$this->checkboxesField = $field;
return $this;
}
/**
* Disables the paging.
*
* @return $this
*/
public function noPaging(): Datatable
{
$this->attributes['paging'] = false;
return $this;
}
/**
* Disables the user's ability to change the paging display length.
*
* @return $this
*/
public function noLengthChange(): Datatable
{
$this->attributes['lengthChange'] = false;
return $this;
}
/**
* Alias of noOrdering.
*
* @return $this
*/
public function noSorting(): DataTable
{
return $this->noOrdering();
}
/**
* Disable the ordering (sorting).
*
* @return $this
*/
public function noOrdering(): Datatable
{
$this->attributes['ordering'] = false;
return $this;
}
/**
* Disables the searching.
*
* @return $this
*/
public function noSearching(): Datatable
{
$this->attributes['searching'] = false;
return $this;
}
/**
* Disables the table information.
*
* @return $this
*/
public function noInfo(): Datatable
{
$this->attributes['info'] = false;
return $this;
}
/**
* Table must be condensed.
*
* @return $this
*/
public function condensed(): Datatable
{
$this->attributes['condensed'] = true;
return $this;
}
/**
* When using API, set the current offset.
*
* @param int $offset
* @return $this
*/
public function setOffset($offset)
{
$this->offset = $offset;
return $this;
}
/**
* When using API, set the current total records.
*
* @param int $total
* @return $this
*/
public function setTotalRecords($total)
{
$this->totalRecords = $total;
return $this;
}
/**
* When using API, set the filter records.
*
* @param int $filteredRecords
* @return $this
*/
public function setFilteredRecords(int $filteredRecords)
{
$this->filteredRecords = $filteredRecords;
return $this;
}
/**
* Skip Datatables paging.
*
* @return $this
*/
public function skipPaging()
{
$this->skipPaging = true;
return $this;
}
/**
* Get a search value by the column name.
*
* @param $name
* @return mixed
*/
protected function getRequestSearchValue($name)
{
$idx = $this->getColumnIndex($name);
return request()->input('columns')[$idx]['search']['value'];
}
/**
* Gets the DataTable global search value.
*
* @return string|null
*/
protected function getGlobalSearchValue(): ?string
{
return request()->input('search.value');
}
/**
* Get columns that must calculate a sum.
*
* @return array
*/
public function getSumColumns(): array
{
$sumColumns = [];
foreach ($this->getColumns() as $index => $column) {
if ($column->sum) {
$sumColumns[] = $index;
}
}
return $sumColumns;
}
/**
* Magic method to get property or attribute.
*
* @param $name
* @return false|mixed|string|null
*/
public function __get($name)
{
if (property_exists($this, $name)) {
return $this->$name;
}
if (in_array($name, ['order', 'lengthMenu'])) {
if ($name === 'order') {
foreach ($this->orderAttr as $c => $o) {
$this->attributes['order'][] = [$this->getColumnIndex($c), $o];
}
}
return json_encode($this->attributes[$name]);
}
if ($name === 'footerCallback') {
$sumColumns = $this->getSumColumns();
if (! empty($sumColumns)) {
$columnsJson = json_encode($sumColumns);
return "function (row, data, start, end, display) {
var api = this.api();
var sumColumns = $columnsJson;
sumColumns.forEach(function(colIndex) {
var total = api
.column(colIndex, {page: 'current'})
.data()
.reduce(function (a, b) {
// Extract numeric value from HTML content if present
var val = b;
if (typeof b === 'string' && b.includes('<')) {
// Extract text content from HTML tags
var tempDiv = document.createElement('div');
tempDiv.innerHTML = b;
val = tempDiv.textContent || tempDiv.innerText || '';
// Replace '.' with 0 for empty level indicators
val = val === '.' ? '0' : val;
}
return a + (parseFloat(val) || 0);
}, 0);
\$(api.column(colIndex).footer()).html(total.toLocaleString());
});
}";
}
return $this->attributes[$name];
}
if (isset($this->attributes[$name])) {
return $this->attributes[$name];
}
return null;
}
/**
* Magic method to check if property or attribute is set or not.
*
* @param $name
* @return bool
*/
public function __isset($name)
{
if (property_exists($this, $name)) {
return true;
}
if (isset($this->attributes[$name])) {
return true;
}
return false;
}
}