-
Notifications
You must be signed in to change notification settings - Fork 0
/
Columns.php
151 lines (135 loc) · 3.29 KB
/
Columns.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
<?php
namespace Polinome\Trieur;
use ArrayIterator;
use IteratorAggregate;
use Solire\Conf\Conf;
/**
* Columns configuration.
*
* @author polinome <contact@polinome.com>
* @license MIT http://mit-license.org/
*/
class Columns implements IteratorAggregate
{
protected static $fields = [
'label' => [
'fields' => [
'name',
],
],
'source' => [
'fields' => [
'name',
],
],
'sourceName' => [
'fields' => [
'name',
],
],
'sourceSort' => [
'fields' => [
'source',
],
],
'sourceFilter' => [
'fields' => [
'source',
],
],
'driverFilterType' => [
'fields' => [
'filterType',
],
'default' => 'text',
],
'sourceFilterType' => [
'fields' => [
'filterType',
],
'default' => 'Contain',
],
];
/**
* List of columns with name index.
*
* @var array
*/
protected $columnsByName = [];
/**
* List of columns with numeric index.
*
* @var array
*/
protected $columnsByIndex = [];
/**
* Constructor.
*
* @param Conf $columns Columns configuration
*/
public function __construct(Conf $columns)
{
$index = 0;
foreach ($columns as $name => $column) {
$this->buildColumnConf($name, $column);
$this->columnsByIndex[$index] = $column;
$this->columnsByName[$name] = $column;
$index++;
}
}
/**
* Build / complete the configuration of a column.
*
* @param type $name The name of the column
* @param Conf $column The column configuration
*
* @return void
*/
protected function buildColumnConf($name, Conf $column)
{
$column->name = $name;
foreach (self::$fields as $fieldName => $defaults) {
if ($column->has($fieldName)) {
continue;
}
foreach ($defaults['fields'] as $field) {
if ($column->has($field)) {
$column->set($column->get($field), $fieldName);
break;
}
}
if ($column->has($fieldName)) {
continue;
}
$column->set($defaults['default'], $fieldName);
}
}
/**
* Get a column by its offset or name.
*
* @param type $index Offset or name
*
* @return Conf
*
* @throws Exception If the index is undefined
*/
public function get($index)
{
if (isset($this->columnsByIndex[$index])) {
return $this->columnsByIndex[$index];
}
if (isset($this->columnsByName[$index])) {
return $this->columnsByName[$index];
}
throw new Exception('Undefined index "' . $index . '" in the columns list');
}
/**
* Method making possible to iterate through the list of columns.
*
* @return ArrayIterator
*/
public function getIterator()
{
return new ArrayIterator($this->columnsByIndex);
}
}