forked from kartik-v/yii2-widget-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DateTimePicker.php
251 lines (233 loc) · 9.5 KB
/
DateTimePicker.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
<?php
/**
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015
* @package yii2-widgets
* @subpackage yii2-widget-datetimepicker
* @version 1.4.1
*/
namespace kartik\datetime;
use Yii;
use yii\helpers\Html;
use yii\helpers\ArrayHelper;
use yii\base\InvalidConfigException;
use kartik\base\InputWidget;
/**
* DateTimePicker widget is a Yii2 wrapper for the Bootstrap DateTimePicker plugin by smalot
* This is a fork of the DatePicker plugin by @eternicode and adds the time functionality.
*
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @since 1.0
* @see http://www.malot.fr/bootstrap-datetimepicker/
*/
class DateTimePicker extends InputWidget
{
const CALENDAR_ICON = '<i class="glyphicon glyphicon-calendar"></i>';
const TYPE_INPUT = 1;
const TYPE_COMPONENT_PREPEND = 2;
const TYPE_COMPONENT_APPEND = 3;
const TYPE_INLINE = 4;
const TYPE_BUTTON = 5;
/**
* @var string the markup type of widget markup
* must be one of the TYPE constants. Defaults
* to [[TYPE_COMPONENT_PREPEND]]
*/
public $type = self::TYPE_COMPONENT_PREPEND;
/**
* @var string The size of the input - 'lg', 'md', 'sm', 'xs'
*/
public $size;
/**
* @var array the HTML attributes for the button that is rendered for [[DateTimePicker::TYPE_BUTTON]].
* Defaults to `['class'=>'btn btn-default']`. The following special options are recognized:
* - 'label': string the button label. Defaults to `<i class="glyphicon glyphicon-calendar"></i>`
*/
public $buttonOptions = [];
/**
* @var array the HTML attributes for the input tag.
*/
public $options = [];
/**
* @var string the layout template to display the buttons (applicable only when `type` is one of
* TYPE_COMPONENT_PREPEND or TYPE_COMPONENT_APPEND). The following tags will be parsed and replaced:
* - {picker}: will be replaced with the date picker button (rendered as a bootstrap input group addon).
* - {remove}: will be replaced with the date clear/remove button (rendered as a bootstrap input group addon).
* - {input}: will be replaced with the HTML input markup that stores the datetime.
* The `layout` defaults to the following value if not set:
* - {picker}{remove}{input} for TYPE_COMPONENT_PREPEND
* - {input}{remove}{picker} for TYPE_COMPONENT_APPEND
*/
public $layout;
/**
* @var mixed the calendar/time picker button configuration.
* - if this is passed as a string, it will be displayed as is (will not be HTML encoded).
* - if this is set to false, the picker button will not be displayed.
* - if this is passed as an array (this is the DEFAULT) it will treat this as HTML attributes
* for the button (to be displayed as a Bootstrap addon). The following special keys are recognized;
* - icon - string, the bootstrap glyphicon name/suffix. Defaults to 'calendar'.
* - title - string, the title to be displayed on hover. Defaults to 'Select date & time'.
*/
public $pickerButton = [];
/**
* @var mixed the calendar/time remove button configuration.
* - if this is passed as a string, it will be displayed as is (will not be HTML encoded).
* - if this is set to false, the remove button will not be displayed.
* - if this is passed as an array (this is the DEFAULT) it will treat this as HTML attributes
* for the button (to be displayed as a Bootstrap addon). The following special keys are recognized;
* - icon - string, the bootstrap glyphicon name/suffix. Defaults to 'remove'.
* - title - string, the title to be displayed on hover. Defaults to 'Clear field'.
*/
public $removeButton = [];
/**
* @var array the HTML options for the DateTimePicker container
*/
private $_container = [];
/**
* Initializes the widget
*
* @throw InvalidConfigException
*/
public function init()
{
$this->_msgCat = 'kvdtime';
parent::init();
if ($this->type < 1 || $this->type > 5 || !is_int($this->type)) {
throw new InvalidConfigException("Invalid value for the property 'type'. Must be an integer between 1 and 5.");
}
$dir = Yii::getAlias('@vendor/kartik-v/yii2-widget-datetimepicker');
$this->initI18N($dir);
$s = DIRECTORY_SEPARATOR;
$this->setLanguage('bootstrap-datetimepicker.', "{$dir}{$s}assets{$s}");
$this->parseDateFormat('datetime');
if (empty($this->_container['id'])) {
$this->_container['id'] = $this->options['id'] . '-datetime';
}
if (empty($this->layout)) {
if ($this->type == self::TYPE_COMPONENT_PREPEND) {
$this->layout = '{picker}{remove}{input}';
}
if ($this->type == self::TYPE_COMPONENT_APPEND) {
$this->layout = '{input}{remove}{picker}';
}
}
$this->registerAssets();
echo $this->renderInput();
}
/**
* Renders the source input for the DateTimePicker plugin.
* Graceful fallback to a normal HTML text input - in
* case JQuery is not supported by the browser
*/
protected function renderInput()
{
if ($this->type == self::TYPE_INLINE) {
if (empty($this->options['readonly'])) {
$this->options['readonly'] = true;
}
if (empty($this->options['class'])) {
$this->options['class'] = 'form-control input-sm text-center';
}
} else {
Html::addCssClass($this->options, 'form-control');
}
$input = $this->type == self::TYPE_BUTTON ? 'hiddenInput' : 'textInput';
return $this->parseMarkup($this->getInput($input));
}
/**
* Returns the addon to render
*
* @param array $options the HTML attributes for the addon
* @param string $type whether the addon is the picker or remove
*
* @return string
*/
protected function renderAddon(&$options, $type = 'picker')
{
if ($options === false) {
return '';
}
if (is_string($options)) {
return $options;
}
Html::addCssClass($options, 'input-group-addon');
$icon = ($type === 'picker') ? 'calendar' : 'remove';
$icon = '<span class="glyphicon glyphicon-' . ArrayHelper::remove($options, 'icon', $icon) . '"></span>';
if (empty($options['title'])) {
$title = ($type === 'picker') ? Yii::t('kvdtime', 'Select date & time') : Yii::t('kvdtime', 'Clear field');
if ($title != false) {
$options['title'] = $title;
}
}
return Html::tag('span', $icon, $options);
}
/**
* Parses the input to render based on markup type
*
* @param string $input
*
* @return string
*/
protected function parseMarkup($input)
{
$css = $this->disabled ? ' disabled' : '';
$size = isset($this->size) ? "input-{$this->size} " : '';
switch ($this->type) {
case self::TYPE_INPUT:
Html::addCssClass($this->options, $size . $css);
return $input;
case self::TYPE_COMPONENT_PREPEND:
case self::TYPE_COMPONENT_APPEND:
$size = isset($this->size) ? "input-group-{$this->size} " : '';
Html::addCssClass($this->_container, "input-group {$size}date");
$out = strtr($this->layout, [
'{picker}' => $this->renderAddon($this->pickerButton),
'{remove}' => $this->renderAddon($this->removeButton, 'remove'),
'{input}' => $input
]);
return Html::tag('div', $out, $this->_container);
case self::TYPE_BUTTON:
Html::addCssClass($this->_container, 'date' . $css);
$label = ArrayHelper::remove($this->buttonOptions, 'label', self::CALENDAR_ICON);
if (!isset($this->buttonOptions['disabled'])) {
$this->buttonOptions['disabled'] = $this->disabled;
}
if (empty($this->buttonOptions['class'])) {
$this->buttonOptions['class'] = 'btn btn-default';
}
$button = Html::button($label, $this->buttonOptions);
Html::addCssStyle($this->_container, 'display:block');
return Html::tag('span', "{$input}{$button}", $this->_container);
case self::TYPE_INLINE:
Html::addCssClass($this->options, $size . $css);
return Html::tag('div', '', $this->_container) . $input;
default:
return '';
}
}
/**
* Registers the needed assets
*/
public function registerAssets()
{
if ($this->disabled) {
return;
}
$view = $this->getView();
if (!empty($this->_langFile)) {
DateTimePickerAsset::register($view)->js[] = $this->_langFile;
} else {
DateTimePickerAsset::register($view);
}
if ($this->type == self::TYPE_INLINE) {
$this->pluginOptions['linkField'] = $this->options['id'];
if (!empty($this->pluginOptions['format'])) {
$this->pluginOptions['linkFormat'] = $this->pluginOptions['format'];
}
}
if ($this->type == self::TYPE_INPUT) {
$this->registerPlugin('datetimepicker');
} else {
$this->registerPlugin('datetimepicker', 'jQuery("#' . $this->_container['id'] . '")');
}
}
}