-
-
Notifications
You must be signed in to change notification settings - Fork 657
/
TD.php
399 lines (340 loc) · 9.09 KB
/
TD.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
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
<?php
declare(strict_types=1);
namespace Orchid\Screen;
use Illuminate\Contracts\View\Factory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Str;
use Illuminate\View\View;
use Orchid\Screen\Concerns\ComplexFieldConcern;
use Orchid\Screen\Fields\DateRange;
use Orchid\Screen\Fields\DateTimer;
use Orchid\Screen\Fields\Input;
use Orchid\Screen\Fields\NumberRange;
use Orchid\Screen\Fields\Select;
class TD extends Cell
{
/**
* Align the cell to the left.
*/
public const ALIGN_LEFT = 'start';
/**
* Align the cell to the center.
*/
public const ALIGN_CENTER = 'center';
/**
* Align the cell to the right.
*/
public const ALIGN_RIGHT = 'end';
public const FILTER_TEXT = 'text';
public const FILTER_NUMERIC = 'number';
public const FILTER_DATE = 'date';
public const FILTER_DATE_RANGE = 'dateRange';
public const FILTER_NUMBER_RANGE = 'numberRange';
public const FILTER_SELECT = 'select';
/**
* @var string|null|int
*/
protected $width;
/**
* @var string|null
*/
protected $style;
/**
* @var string|null
*/
protected $class;
/**
* @var string
*/
protected $filter;
/**
* @var bool
*/
protected $sort;
/**
* @var string
*/
protected $align = self::ALIGN_LEFT;
/**
* @var int
*/
protected $colspan = 1;
/**
* Displays whether the user can hide
* or show the column in the browser.
*
* @var bool
*/
protected $allowUserHidden = true;
/**
* Should the user independently enable
* the display of the column.
*
* @var bool
*/
protected $defaultHidden = false;
/**
* Possible options for filters if it's select
*
* @var array
*/
protected $filterOptions = [];
/**
* Callable return filter value in column
*
* @var callable
*/
protected $callbackFilterValue;
/**
* @param string|int $width
*/
public function width($width): self
{
$this->width = $width;
return $this;
}
/**
* @param string $style
*/
public function style($style): self
{
$this->style = $style;
return $this;
}
/**
* @param string $class
*/
public function class($class): self
{
$this->class = $class;
return $this;
}
/**
* @param string|\Orchid\Screen\Field $filter
*/
public function filterOptions(iterable $filterOptions): self
{
$this->filterOptions = $filterOptions;
return $this;
}
public function filterValue(callable $callable): self
{
$this->callbackFilterValue = $callable;
return $this;
}
/**
* @param string $filter
* @param iterable|callable|null $options
*/
public function filter($filter = self::FILTER_TEXT, $options = null): self
{
if (is_iterable($options)) {
$this->filterOptions($options);
}
if (is_callable($options)) {
$this->callbackFilterValue = $options;
}
$this->filter = $filter;
return $this;
}
public function sort(bool $sort = true): self
{
$this->sort = $sort;
return $this;
}
/**
* @return $this
*/
public function align(string $align): self
{
$this->align = $align;
return $this;
}
/**
* @return $this
*/
public function alignLeft(): self
{
$this->align = self::ALIGN_LEFT;
return $this;
}
/**
* @return $this
*/
public function alignRight(): self
{
$this->align = self::ALIGN_RIGHT;
return $this;
}
/**
* @return $this
*/
public function alignCenter(): self
{
$this->align = self::ALIGN_CENTER;
return $this;
}
/**
* @return $this
*/
public function colspan(int $colspan): self
{
$this->colspan = $colspan;
return $this;
}
/**
* Builds a column heading.
*
* @return Factory|View
*/
public function buildTh()
{
return view('platform::partials.layouts.th', [
'width' => is_numeric($this->width) ? $this->width.'px' : $this->width,
'align' => $this->align,
'sort' => $this->sort,
'sortUrl' => $this->buildSortUrl(),
'column' => $this->column,
'title' => $this->title,
'filter' => $this->buildFilter(),
'filterString' => $this->buildFilterString(),
'slug' => $this->sluggable(),
'popover' => $this->popover,
]);
}
/**
* @return \Orchid\Screen\Field|null
*/
protected function buildFilter(): ?Field
{
/** @var \Orchid\Screen\Field $filter */
$filter = $this->filter;
if ($filter === null) {
return null;
}
if (is_string($filter)) {
$filter = $this->detectConstantFilter($filter);
}
return $filter->name("filter[$this->column]")
->placeholder(__('Filter'))
->form('filters')
->value(get_filter($this->column))
->autofocus();
}
/**
* @return \Orchid\Screen\Field
*/
protected function detectConstantFilter(string $filter): Field
{
$input = match ($filter) {
self::FILTER_DATE_RANGE => DateRange::make()->disableMobile(),
self::FILTER_NUMBER_RANGE => NumberRange::make(),
self::FILTER_SELECT => Select::make()->options($this->filterOptions)->multiple(),
self::FILTER_DATE => DateTimer::make()->inline()->format('Y-m-d'),
default => Input::make()->type($filter),
};
return $input;
}
/**
* Builds content for the column.
*
* @param Repository|Model $repository
*
* @return Factory|View
*/
public function buildTd($repository, object $loop = null)
{
$value = $this->render ? $this->handler($repository, $loop) : $repository->getContent($this->name);
return view('platform::partials.layouts.td', [
'align' => $this->align,
'value' => $value,
'render' => $this->render,
'slug' => $this->sluggable(),
'width' => is_numeric($this->width) ? $this->width.'px' : $this->width,
'style' => $this->style,
'class' => $this->class,
'colspan' => $this->colspan,
]);
}
public function isAllowUserHidden(): bool
{
return $this->allowUserHidden;
}
/**
* Builds an item menu for show/hiden column.
*
* @return Factory|View|null
*/
public function buildItemMenu()
{
if (! $this->isAllowUserHidden()) {
return;
}
return view('platform::partials.layouts.selectedTd', [
'title' => $this->title,
'slug' => $this->sluggable(),
'defaultHidden' => var_export($this->defaultHidden, true),
]);
}
protected function sluggable(): string
{
return Str::slug($this->name);
}
/**
* Prevents the user from hiding a column in the interface.
*/
public function cantHide(bool $hidden = false): self
{
$this->allowUserHidden = $hidden;
return $this;
}
/**
* @return $this
*/
public function defaultHidden(bool $hidden = true): self
{
$this->defaultHidden = $hidden;
return $this;
}
public function buildSortUrl(): string
{
$query = request()->collect()->put('sort', revert_sort($this->column))->toArray();
return url()->current().'?'.http_build_query($query);
}
/**
* @param TD[] $columns
*/
public static function isShowVisibleColumns($columns): bool
{
return collect($columns)->filter(fn ($column) => $column->isAllowUserHidden())->isNotEmpty();
}
/**
* Decides whether a filter can be provided with a complex (array-like) value, or it needs a scalar one.
*
* @param \Orchid\Screen\Field $field
*/
protected function isComplexFieldType(Field $field): bool
{
return $field instanceof ComplexFieldConcern;
}
protected function buildFilterString(): ?string
{
$filter = get_filter($this->column);
if ($filter === null) {
return null;
}
if ($this->callbackFilterValue !== null) {
return call_user_func($this->callbackFilterValue, $filter);
}
if (is_array($filter)) {
if (isset($filter['start']) || isset($filter['end'])) {
return ($filter['start'] ?? '').' - '.($filter['end'] ?? '');
}
if ($this->filterOptions) {
$filter = array_map(fn ($val) => $this->filterOptions[$val] ?? $val, $filter);
}
return implode(', ', $filter);
}
return $filter;
}
}