-
-
Notifications
You must be signed in to change notification settings - Fork 862
/
Copy pathCollectionDataTable.php
309 lines (266 loc) · 8.75 KB
/
CollectionDataTable.php
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
<?php
namespace Yajra\DataTables;
use Closure;
use Exception;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Resources\Json\AnonymousResourceCollection;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
class CollectionDataTable extends DataTableAbstract
{
/**
* Collection object.
*
* @var \Illuminate\Support\Collection<array-key, array>
*/
public Collection $original;
/**
* The offset of the first record in the full dataset.
*/
private int $offset = 0;
/**
* CollectionEngine constructor.
*
* @param \Illuminate\Support\Collection<array-key, array> $collection
*/
public function __construct(public Collection $collection)
{
$this->request = app('datatables.request');
$this->config = app('datatables.config');
$this->original = $this->collection;
$this->columns = array_keys($this->serialize($this->collection->first()));
}
/**
* Serialize collection.
*/
protected function serialize(mixed $collection): array
{
return $collection instanceof Arrayable ? $collection->toArray() : (array) $collection;
}
/**
* Can the DataTable engine be created with these parameters.
*
* @param mixed $source
* @return bool
*/
public static function canCreate($source)
{
return is_array($source) || $source instanceof Collection;
}
/**
* Factory method, create and return an instance for the DataTable engine.
*
* @param AnonymousResourceCollection|array|\Illuminate\Support\Collection<array-key, array> $source
* @return static
*/
public static function create($source)
{
if (is_array($source)) {
$source = new Collection($source);
}
return parent::create($source);
}
/**
* Count results.
*/
public function count(): int
{
return $this->collection->count();
}
/**
* Perform column search.
*/
public function columnSearch(): void
{
for ($i = 0, $c = count($this->request->columns()); $i < $c; $i++) {
$column = $this->getColumnName($i);
if (is_null($column)) {
continue;
}
if (! $this->request->isColumnSearchable($i) || $this->isBlacklisted($column)) {
continue;
}
$regex = $this->request->isRegex($i);
$keyword = $this->request->columnKeyword($i);
$this->collection = $this->collection->filter(
function ($row) use ($column, $keyword, $regex) {
$data = $this->serialize($row);
/** @var string $value */
$value = Arr::get($data, $column);
if ($this->config->isCaseInsensitive()) {
if ($regex) {
return preg_match('/'.$keyword.'/i', $value) == 1;
}
return str_contains(Str::lower($value), Str::lower($keyword));
}
if ($regex) {
return preg_match('/'.$keyword.'/', $value) == 1;
}
return str_contains($value, $keyword);
}
);
}
}
/**
* Perform pagination.
*/
public function paging(): void
{
$offset = $this->request->start() - $this->offset;
$length = $this->request->length() > 0 ? $this->request->length() : 10;
$this->collection = $this->collection->slice($offset, $length);
}
/**
* Organizes works.
*
* @throws \Exception
*/
public function make(bool $mDataSupport = true): JsonResponse
{
try {
$this->totalRecords = $this->totalCount();
if ($this->totalRecords) {
$results = $this->results();
$processed = $this->processResults($results, $mDataSupport);
$output = $this->transform($results, $processed);
$this->collection = collect($output);
$this->ordering();
$this->filterRecords();
$this->paginate();
$this->revertIndexColumn($mDataSupport);
}
return $this->render($this->collection->values()->all());
} catch (Exception $exception) {
return $this->errorResponse($exception);
}
}
/**
* Get results.
*
* @return \Illuminate\Support\Collection<array-key, array>
*/
public function results(): Collection
{
return $this->collection;
}
/**
* Revert transformed DT_RowIndex back to its original values.
*
* @param bool $mDataSupport
*/
private function revertIndexColumn($mDataSupport): void
{
if ($this->columnDef['index']) {
$indexColumn = config('datatables.index_column', 'DT_RowIndex');
$index = $mDataSupport ? $indexColumn : 0;
$start = $this->request->start();
$this->collection->transform(function ($data) use ($index, &$start) {
$data[$index] = ++$start;
return $data;
});
}
}
/**
* Define the offset of the first item of the collection with respect to
* the FULL dataset the collection was sliced from. It effectively allows the
* collection to be "pre-sliced".
*
* @return static
*/
public function setOffset(int $offset): self
{
$this->offset = $offset;
return $this;
}
/**
* Perform global search for the given keyword.
*/
protected function globalSearch(string $keyword): void
{
$keyword = $this->config->isCaseInsensitive() ? Str::lower($keyword) : $keyword;
$this->collection = $this->collection->filter(function ($row) use ($keyword) {
$data = $this->serialize($row);
foreach ($this->request->searchableColumnIndex() as $index) {
$column = $this->getColumnName($index);
$value = Arr::get($data, $column);
if (! is_string($value)) {
continue;
} else {
$value = $this->config->isCaseInsensitive() ? Str::lower($value) : $value;
}
if (Str::contains($value, $keyword)) {
return true;
}
}
return false;
});
}
/**
* Perform default query orderBy clause.
*/
protected function defaultOrdering(): void
{
$criteria = $this->request->orderableColumns();
if (! empty($criteria)) {
$sorter = $this->getSorter($criteria);
$this->collection = $this->collection
->map(fn ($data) => Arr::dot($data))
->sort($sorter)
->map(function ($data) {
foreach ($data as $key => $value) {
unset($data[$key]);
Arr::set($data, $key, $value);
}
return $data;
});
}
}
/**
* Get array sorter closure.
*/
protected function getSorter(array $criteria): Closure
{
return function ($a, $b) use ($criteria) {
foreach ($criteria as $orderable) {
$column = $this->getColumnName($orderable['column']);
$direction = $orderable['direction'];
if ($direction === 'desc') {
$first = $b;
$second = $a;
} else {
$first = $a;
$second = $b;
}
if (is_numeric($first[$column] ?? null) && is_numeric($second[$column] ?? null)) {
if ($first[$column] < $second[$column]) {
$cmp = -1;
} elseif ($first[$column] > $second[$column]) {
$cmp = 1;
} else {
$cmp = 0;
}
} elseif ($this->config->isCaseInsensitive()) {
$cmp = strnatcasecmp($first[$column] ?? '', $second[$column] ?? '');
} else {
$cmp = strnatcmp($first[$column] ?? '', $second[$column] ?? '');
}
if ($cmp != 0) {
return $cmp;
}
}
// all elements were equal
return 0;
};
}
/**
* Resolve callback parameter instance.
*
* @return array<int|string, mixed>
*/
protected function resolveCallbackParameter(): array
{
return [$this, false];
}
}