forked from kartik-v/yii2-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataColumn.php
196 lines (175 loc) · 6.71 KB
/
DataColumn.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
<?php
/**
* @package yii2-grid
* @author Kartik Visweswaran <[email protected]>
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
* @version 3.0.1
*/
namespace kartik\grid;
use yii\base\InvalidConfigException;
use yii\helpers\ArrayHelper;
use yii\helpers\Html;
/**
* Extends the Yii's DataColumn for the Grid widget [[\kartik\widgets\GridView]]
* with various enhancements
*
* DataColumn is the default column type for the [[GridView]] widget.
*
* @author Kartik Visweswaran <[email protected]>
* @since 1.0
*/
class DataColumn extends \yii\grid\DataColumn
{
use ColumnTrait;
/**
* @var boolean whether the column is hidden from display. This is different
* than the `visible` property, in the sense, that the column is rendered,
* but hidden from display. This will allow you to still export the column
* using the export function.
*/
public $hidden;
/**
* @var boolean|array whether the column is hidden in export output. If set to boolean `true`,
* it will hide the column for all export formats. If set as an array, it will accept the
* list of GridView export `formats` and hide output only for them.
*/
public $hiddenFromExport = false;
/**
* @var string the horizontal alignment of each column. Should be one of
* 'left', 'right', or 'center'.
*/
public $hAlign;
/**
* @var string the vertical alignment of each column. Should be one of
* 'top', 'middle', or 'bottom'.
*/
public $vAlign;
/**
* @var boolean whether to force no wrapping on all table cells in the column
* @see http://www.w3schools.com/cssref/pr_text_white-space.asp
*/
public $noWrap = false;
/**
* @var string the width of each column (matches the CSS width property).
* @see http://www.w3schools.com/cssref/pr_dim_width.asp
*/
public $width;
/**
* @var string the filter input type for each filter input. You can use one of the
* `GridView::FILTER_` constants or pass any widget classname (extending the
* Yii Input Widget).
*/
public $filterType;
/**
* @var array the options/settings for the filter widget. Will be used only if
* you set `filterType` to a widget classname that exists.
*/
public $filterWidgetOptions = [];
/**
* @var boolean whether to merge the header title row and the filter row
* This will not render the filter for the column and can be used when `filter`
* is set to `false`. Defaults to `false`. This is only applicable when `filterPosition`
* for the grid is set to FILTER_POS_BODY.
*/
public $mergeHeader = false;
/**
* @var boolean|string|Closure the page summary that is displayed above the footer. You can
* set it to one of the following:
* - `false`: the summary will not be displayed.
* - `true`: the page summary for the column will be calculated and displayed using the
* `pageSummaryFunc` setting.
* - any `string`: will be displayed as is
* - `Closure`: you can set it to an anonymous function with the following signature:
* ```
* // example 1
* function ($summary, $data, $widget) { return 'Count is ' . $summary; }
* // example 2
* function ($summary, $data, $widget) { return 'Range ' . min($data) . ' to ' . max($data); }
* ```
* the `$summary` variable will be replaced with the calculated summary using
* the `summaryFunc` setting.
* the `$data` variable will contain array of the selected page rows for the column.
*/
public $pageSummary = false;
/**
* @var string the summary function used to calculate the page summary for the column
*/
public $pageSummaryFunc = GridView::F_SUM;
/**
* @var array HTML attributes for the page summary cell. The following special attributes
* are available:
* - `prepend` string a prefix string that will be prepended before the pageSummary content
* - `append` string a suffix string that will be appended after the pageSummary content
*/
public $pageSummaryOptions = [];
/**
* @var boolean whether to just hide the page summary display but still calculate
* the summary based on `pageSummary` settings
*/
public $hidePageSummary = false;
/**
* @var array of row data for the column for the current page
*/
private $_rows = [];
public function init()
{
if ($this->mergeHeader && !isset($this->vAlign)) {
$this->vAlign = GridView::ALIGN_MIDDLE;
}
if ($this->grid->bootstrap === false) {
Html::removeCssClass($this->filterInputOptions, 'form-control');
}
$this->parseFormat();
$this->parseVisibility();
$this->checkValidFilters();
parent::init();
$this->setPageRows();
}
/**
* @inheritdoc
*/
public function renderDataCell($model, $key, $index)
{
$options = $this->fetchContentOptions($model, $key, $index);
return Html::tag('td', $this->renderDataCellContent($model, $key, $index), $options);
}
/**
* Renders filter inputs based on the `filterType`
*
* @return string
*/
protected function renderFilterCellContent()
{
$content = parent::renderFilterCellContent();
$chkType = !empty($this->filterType) && $this->filterType !== GridView::FILTER_CHECKBOX && $this->filterType !== GridView::FILTER_RADIO && !class_exists(
$this->filterType
);
if ($this->filter === false || empty($this->filterType) || $content === $this->grid->emptyCell || $chkType) {
return $content;
}
$widgetClass = $this->filterType;
$options = [
'model' => $this->grid->filterModel,
'attribute' => $this->attribute,
'options' => $this->filterInputOptions
];
if (is_array($this->filter)) {
if ($this->filterType === GridView::FILTER_SELECT2 || $this->filterType === GridView::FILTER_TYPEAHEAD) {
$options['data'] = $this->filter;
}
if ($this->filterType === GridView::FILTER_RADIO) {
return Html::activeRadioList(
$this->grid->filterModel,
$this->attribute,
$this->filter,
$this->filterInputOptions
);
}
}
if ($this->filterType === GridView::FILTER_CHECKBOX) {
return Html::activeCheckbox($this->grid->filterModel, $this->attribute, $this->filterInputOptions);
}
$options = ArrayHelper::merge($this->filterWidgetOptions, $options);
return $widgetClass::widget($options);
}
}