InputWidget.php
10.4 KB
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
<?php
/**
* @package yii2-krajee-base
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
* @version 1.7.7
*/
namespace kartik\base;
use Yii;
use yii\helpers\FormatConverter;
use yii\helpers\Html;
use yii\helpers\ArrayHelper;
/**
* Base input widget class for Krajee extensions
*
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @since 1.0
*/
class InputWidget extends \yii\widgets\InputWidget
{
use TranslationTrait;
use WidgetTrait;
const LOAD_PROGRESS = '<div class="kv-plugin-loading"> </div>';
/**
* @var string the language configuration (e.g. 'fr-FR', 'zh-CN'). The format for the language/locale is
* ll-CC where ll is a two or three letter lowercase code for a language according to ISO-639 and
* CC is the country code according to ISO-3166.
* If this property not set, then the current application language will be used.
*/
public $language;
/**
* @var boolean whether input is to be disabled
*/
public $disabled = false;
/**
* @var boolean whether input is to be readonly
*/
public $readonly = false;
/**
* @var mixed show loading indicator while plugin loads
*/
public $pluginLoading = true;
/**
* @var array the data (for list inputs)
*/
public $data = [];
/**
* @var string the name of the jQuery plugin
*/
public $pluginName = '';
/**
* @var array widget plugin options
*/
public $pluginOptions = [];
/**
* @var array widget JQuery events. You must define events in
* event-name => event-function format
* for example:
* ~~~
* pluginEvents = [
* "change" => "function() { log("change"); }",
* "open" => "function() { log("open"); }",
* ];
* ~~~
*/
public $pluginEvents = [];
/**
* @var boolean whether the widget should automatically format the date from
* the PHP DateTime format to the javascript/jquery plugin format
* @see http://php.net/manual/en/function.date.php
*/
public $convertFormat = false;
/**
* @var array the the internalization configuration for this widget
*/
public $i18n = [];
/**
* @var string the hashed variable to store the pluginOptions
*/
protected $_dataVar;
/**
* @var string the hashed variable to store the pluginOptions
*/
protected $_hashVar;
/**
* @var string the Json encoded options
*/
protected $_encOptions = '';
/**
* @var string the indicator for loading
*/
protected $_loadIndicator = '';
/**
* @var string the two or three letter lowercase code
* for the language according to ISO-639
*/
protected $_lang = '';
/**
* @var string the language js file
*/
protected $_langFile = '';
/**
* @var string translation message file category name for i18n
*/
protected $_msgCat = '';
/**
* @inheritdoc
*/
public function init()
{
parent::init();
if (!isset($this->language)) {
$this->language = Yii::$app->language;
}
$this->_lang = Config::getLang($this->language);
if ($this->pluginLoading) {
$this->_loadIndicator = self::LOAD_PROGRESS;
}
if ($this->hasModel()) {
$this->name = empty($this->options['name']) ? Html::getInputName($this->model, $this->attribute) :
$this->options['name'];
$this->value = Html::getAttributeValue($this->model, $this->attribute);
}
$this->initDisability($this->options);
$view = $this->getView();
WidgetAsset::register($view);
}
/**
* Validates and sets disabled or readonly inputs
*
* @param array $options the HTML attributes for the input
*/
protected function initDisability(&$options)
{
if ($this->disabled && !isset($options['disabled'])) {
$options['disabled'] = true;
}
if ($this->readonly && !isset($options['readonly'])) {
$options['readonly'] = true;
}
}
/**
* Initialize the plugin language
*
* @param string $property the name of language property in [[pluginOptions]].
* @param boolean $full whether to use the full language string. Defaults to `false`
* which is the 2 (or 3) digit ISO-639 format.
* Defaults to 'language'.
*/
protected function initLanguage($property = 'language', $full = false)
{
if (empty($this->pluginOptions[$property])) {
$this->pluginOptions[$property] = $full ? $this->language : $this->_lang;
}
}
/**
* Sets the language JS file if it exists
*
* @param string $assetPath the path to the assets
* @param string $filePath the path to the JS file with the file name prefix
* @param string $suffix the file name suffix - defaults to '.js'
*/
protected function setLanguage($prefix, $assetPath = null, $filePath = null, $suffix = '.js')
{
$pwd = Config::getCurrentDir($this);
$s = DIRECTORY_SEPARATOR;
if ($assetPath === null) {
$assetPath = "{$pwd}{$s}assets{$s}";
} elseif (substr($assetPath, -1) != $s) {
$assetPath .= $s;
}
if ($filePath === null) {
$filePath = "js{$s}locales{$s}";
} elseif (substr($filePath, -1) != $s) {
$filePath .= $s;
}
$full = $filePath . $prefix . $this->language . $suffix;
$fullLower = $filePath . $prefix . strtolower($this->language) . $suffix;
$short = $filePath . $prefix . $this->_lang . $suffix;
if (Config::fileExists($assetPath . $full)) {
$this->_langFile = $full;
$this->pluginOptions['language'] = $this->language;
} elseif (Config::fileExists($assetPath . $fullLower)) {
$this->_langFile = $fullLower;
$this->pluginOptions['language'] = strtolower($this->language);
} elseif (Config::fileExists($assetPath . $short)) {
$this->_langFile = $short;
$this->pluginOptions['language'] = $this->_lang;
} else {
$this->_langFile = '';
}
$this->_langFile = str_replace($s, '/', $this->_langFile);
}
/**
* Generates an input
*/
protected function getInput($type, $list = false)
{
if ($this->hasModel()) {
$input = 'active' . ucfirst($type);
return $list ?
Html::$input($this->model, $this->attribute, $this->data, $this->options) :
Html::$input($this->model, $this->attribute, $this->options);
}
$input = $type;
$checked = false;
if ($type == 'radio' || $type == 'checkbox') {
$this->options['value'] = $this->value;
$checked = ArrayHelper::remove($this->options, 'checked', '');
if (empty($checked) && !empty($this->value)) {
$checked = ($this->value == 0) ? false : true;
} elseif (empty($checked)) {
$checked = false;
}
}
return $list ?
Html::$input($this->name, $this->value, $this->data, $this->options) :
(($type == 'checkbox' || $type == 'radio') ?
Html::$input($this->name, $checked, $this->options) :
Html::$input($this->name, $this->value, $this->options));
}
/**
* Automatically convert the date format from PHP DateTime to Javascript DateTime format
*
* @see http://php.net/manual/en/function.date.php
* @see http://bootstrap-datetimepicker.readthedocs.org/en/release/options.html#format
*
* @param string $format the PHP date format string
*
* @return string
*/
protected static function convertDateFormat($format)
{
return strtr($format, [
// meridian lowercase
'a' => 'p',
// meridian uppercase
'A' => 'P',
// second (with leading zeros)
's' => 'ss',
// minute (with leading zeros)
'i' => 'ii',
// hour in 12-hour format (no leading zeros)
'g' => 'H',
// hour in 24-hour format (no leading zeros)
'G' => 'h',
// hour in 12-hour format (with leading zeros)
'h' => 'HH',
// hour in 24-hour format (with leading zeros)
'H' => 'hh',
// day of month (no leading zero)
'j' => 'd',
// day of month (two digit)
'd' => 'dd',
// day name short is always 'D'
// day name long
'l' => 'DD',
// month of year (no leading zero)
'n' => 'm',
// month of year (two digit)
'm' => 'mm',
// month name short is always 'M'
// month name long
'F' => 'MM',
// year (two digit)
'y' => 'yy',
// year (four digit)
'Y' => 'yyyy',
]);
}
/**
* Parses date format based on attribute type using yii\helpers\FormatConverter
* Used only within DatePicker and DateTimePicker.
*
* @param string $type the attribute type whether date, datetime, or time
*
* @return mixed|string
* @throws InvalidConfigException
*/
protected function parseDateFormat($type)
{
if (!$this->convertFormat) {
return;
}
if (isset($this->pluginOptions['format'])) {
$format = $this->pluginOptions['format'];
$format = strncmp($format, 'php:', 4) === 0 ? substr($format,
4) : FormatConverter::convertDateIcuToPhp($format, $type);
$this->pluginOptions['format'] = static::convertDateFormat($format);
return;
}
$attrib = $type . 'Format';
$format = isset(Yii::$app->formatter->$attrib) ? Yii::$app->formatter->$attrib : '';
if (isset($this->dateFormat) && strncmp($this->dateFormat, 'php:', 4) === 0) {
$this->pluginOptions['format'] = static::convertDateFormat(substr($format, 4));
} elseif ($format != '') {
$format = FormatConverter::convertDateIcuToPhp($format, $type);
$this->pluginOptions['format'] = static::convertDateFormat($format);
} else {
throw InvalidConfigException("Error parsing '{$type}' format.");
}
}
}