-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathColumnRepository.php
60 lines (46 loc) · 1.31 KB
/
ColumnRepository.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
<?php
namespace AC;
use AC\ColumnRepository\Filter;
use AC\ColumnRepository\Sort;
class ColumnRepository
{
public const ARG_FILTER = 'filter';
public const ARG_SORT = 'sort';
private $list_screen;
public function __construct(ListScreen $list_screen)
{
$this->list_screen = $list_screen;
}
public function find(string $column_name): ?Column
{
return $this->list_screen->get_column_by_name($column_name);
}
/**
* @param array $args
*
* @return Column[]
*/
public function find_all(array $args = []): array
{
$args = array_merge([
self::ARG_SORT => null,
self::ARG_FILTER => [],
], $args);
$columns = $this->list_screen->get_columns();
// Deprecated usage
if ($args[self::ARG_FILTER] instanceof Filter) {
$args[self::ARG_FILTER] = [$args[self::ARG_FILTER]];
}
if ($args[self::ARG_FILTER]) {
foreach ($args[self::ARG_FILTER] as $filter) {
if ($filter instanceof Filter) {
$columns = $filter->filter($columns);
}
}
}
if ($args[self::ARG_SORT] instanceof Sort) {
$columns = $args[self::ARG_SORT]->sort($columns);
}
return $columns;
}
}