-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOffCanvas.php
169 lines (144 loc) · 4.39 KB
/
OffCanvas.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
<?php
namespace demogorgorn\uikit;
use Yii;
use yii\helpers\ArrayHelper;
use yii\helpers\Html;
/**
* OffCanvas renders an OffCanvas uikit component.
*
* For example,
*
* ```php
* echo OffCanvas::widget([
* 'toggleButton' => [
* 'label' => 'Click me',
* 'tag' => 'a',
* ],
* 'body' => 'Say hello...',
* ]);
* ```
*
* The following example will show the content enclosed between the [[begin()]]
* and [[end()]] calls within the OffCanvas menu:
*
* ```php
* OffCanvas::begin([
* 'toggleButton' => [
* 'label' => 'Click me',
* 'tag' => 'a',
* ]
* ]);
*
* echo 'Say hello...';
*
* OffCanvas::end();
* ```
*
* @see http://www.getuikit.com/docs/offcanvas.html
* @author Oleg Martemjanov <[email protected]>
* @since 2.0
*
*/
class OffCanvas extends Widget
{
/**
* @var string the body content in the OffCanvas component. Note that anything between
* the [[begin()]] and [[end()]] calls of the OffCanvas widget will also be treated
* as the body content, and will be rendered before this.
*/
public $body;
/**
* @var array the options for rendering the toggle 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 null, 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 none.
* - href: string
*
* The rest of the options will be rendered as the HTML attributes of the button tag.
* Please refer to the [OffCanvas documentation](http://www.getuikit.com/docs/offcanvas.html)
* for the supported HTML attributes.
*/
public $toggleButton = [];
/**
* @var bool adjust offcanvas alignment, so that it slides in from the right.
*/
public $isFlip = false;
/**
* @var array the HTML attributes of the inner bar
*/
public $barOptions = [];
/**
* Initializes the widget.
*/
public function init()
{
parent::init();
$this->initOptions();
echo $this->renderToggleButton() . "\n";
echo Html::beginTag('div', $this->options) . "\n";
echo Html::beginTag('div', $this->barOptions) . "\n";
}
/**
* Renders the widget.
*/
public function run()
{
echo "\n" . $this->renderBody();
echo "\n" . Html::endTag('div');
echo "\n" . Html::endTag('div');
$this->registerAsset();
}
/**
* Renders the offcanvas body (if any).
* @return string the rendering result
*/
protected function renderBody()
{
return $this->body . "\n";
}
/**
* Renders the toggle button.
* @return string the rendering result
*/
protected function renderToggleButton()
{
if ($this->toggleButton !== null) {
$tag = ArrayHelper::remove($this->toggleButton, 'tag', 'button');
$label = ArrayHelper::remove($this->toggleButton, 'label', 'Show');
if ($tag === 'button' && !isset($this->toggleButton['type'])) {
$this->toggleButton['type'] = 'button';
}
if ($tag === 'a' && !isset($this->toggleButton['href'])) {
$this->toggleButton['href'] = '#' . $this->options['id'];
}
return Html::tag($tag, $label, $this->toggleButton);
} else {
return null;
}
}
/**
* Initializes the widget options.
* This method sets the default values for various options.
*/
protected function initOptions()
{
Html::addCssClass($this->options, 'uk-offcanvas');
Html::addCssClass($this->barOptions, 'uk-offcanvas-bar');
if ($this->isFlip)
Html::addCssClass($this->barOptions, 'uk-offcanvas-bar-flip');
if ($this->toggleButton !== null) {
if (!isset($this->toggleButton['data-uk-offcanvas'])) {
if (!isset($this->toggleButton['href'])) {
$id = $this->options['id'];
$this->toggleButton['data-uk-offcanvas'] = "{target:'#{$id}'}";
}
else
$this->toggleButton['data-uk-offcanvas'] = '';
}
}
}
}