-
Notifications
You must be signed in to change notification settings - Fork 0
/
Modal.php
executable file
·200 lines (166 loc) · 6.06 KB
/
Modal.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
<?php
namespace makroxyz\materializecss;
use Yii;
use yii\helpers\ArrayHelper;
/**
* Class Modal
* @package makroxyz\materializecss
*/
class Modal extends Widget
{
const TYPE_LEAN = 'lean';
const TYPE_FIXED_FOOTER = 'modal-fixed-footer';
const TYPE_BOTTOM_SHEET = 'bottom-sheet';
/**
* @var array the HTML attributes for the widget container tag
*
* @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
*/
public $options = [];
/**
* @var string the different modal types
* @see http://materializecss.com/modals.html
*/
public $modalType = self::TYPE_LEAN; // modal-fixed-footer | bottom-sheet
/**
* @var array|false the options for rendering the close button tag.
* The close button is displayed in the header of the modal window. Clicking
* on the button will hide the modal window. If this is false, no close button will be rendered.
*
* The following special options are supported:
*
* - tag: string, the tag name of the button. Defaults to 'button'.
* - label: string, the label of the button. Defaults to '×'.
*
* The rest of the options will be rendered as the HTML attributes of the button tag.
* Please refer to the [Modal plugin help](http://materializecss.com/modals.html)
* for the supported HTML attributes.
*/
public $closeButton = ['class' => 'waves-effect btn-flat'];
/**
* @var array the options for rendering the toggle button tag.
* The toggle button is used to toggle the visibility of the modal window.
* If this property is false, no toggle button will be rendered.
*
* The following special options are supported:
*
* - tag: string, the tag name of the button. Defaults to 'button'.
* - label: string, the label of the button. Defaults to 'Show'.
*
* The rest of the options will be rendered as the HTML attributes of the button tag.
* Please refer to the [Modal plugin help](http://materializecss.com/modals.html)
* for the supported HTML attributes.
*/
public $toggleButton = [];
/**
* @var string the content of the footer
*/
public $footer;
/**
* @var array the optional HTML attributes for the footer container
*
* @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
*/
public $footerOptions = [];
/**
* Initialize the widget.
*/
public function init()
{
parent::init();
$this->initDefaults();
$options = $this->options;
$html[] = $this->renderToggleButton();
$tag = ArrayHelper::remove($options, 'tag', 'div');
$html[] = Html::beginTag($tag, $options);
$html[] = Html::beginTag('div', ['class' => 'modal-content']);
echo implode("\n", $html);
$this->registerPlugin('leanModal', '.modal-trigger');
}
/**
* Executes the widget.
* @return string the result of widget execution to be outputted.
*/
public function run()
{
$options = $this->options;
$html = [];
$html[] = Html::endTag('div');
$html[] = $this->renderFooter();
$tag = ArrayHelper::remove($options, 'tag', 'div');
$html[] = Html::endTag($tag);
echo implode("\n", $html);
}
/**
* @return null|string
*/
protected function renderToggleButton()
{
if (($toggleButton = $this->toggleButton) !== false) {
$tag = ArrayHelper::remove($toggleButton, 'tag', 'button');
$label = ArrayHelper::remove($toggleButton, 'label', 'Show');
if ($tag === 'button' && !isset($toggleButton['type'])) {
$toggleButton['type'] = 'button';
}
if ($tag === 'button' && !isset($toggleButton['data-target'])) {
$toggleButton['data-target'] = $this->options['id'];
}
return Html::tag($tag, $label, $toggleButton);
} else {
return null;
}
}
/**
* @return null|string
*/
protected function renderCloseButton()
{
if (($closeButton = $this->closeButton) !== false) {
$tag = ArrayHelper::remove($closeButton, 'tag', 'a');
$label = ArrayHelper::remove($closeButton, 'label', Yii::t('yii', 'Close'));
Html::addCssClass($closeButton, 'modal-close modal-action');
if ($tag === 'button' && !isset($closeButton['type'])) {
$closeButton['type'] = 'button';
}
return Html::tag($tag, $label, $closeButton);
} else {
return null;
}
}
/**
* @return string
*/
protected function renderFooter()
{
if (!$this->footer) {
return '';
}
Html::addCssClass($this->footerOptions, ['footer' => 'modal-footer']);
$html[] = Html::beginTag('div', $this->footerOptions);
$html[] = $this->footer;
$html[] = $this->renderCloseButton();
$html[] = Html::endTag('div');
return implode("\n", $html);
}
/**
* Set inital default options.
*/
protected function initDefaults()
{
Html::addCssClass($this->options, ['modalType' => $this->modalType]);
Html::addCssClass($this->options, ['widget' => 'modal']);
if ($this->closeButton !== false) {
$this->closeButton = ArrayHelper::merge([
'class' => 'modal-close',
], $this->closeButton);
}
if ($this->toggleButton !== false) {
$this->toggleButton = ArrayHelper::merge([
'class' => 'modal-trigger btn',
], $this->toggleButton);
}
if ($this->clientOptions !== false) {
$this->clientOptions = ArrayHelper::merge(['show' => false], $this->clientOptions);
}
}
}