forked from worstinme/yii2-uikit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNav.php
163 lines (147 loc) · 5.13 KB
/
Nav.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
<?php
namespace worstinme\uikit;
use Yii;
use yii\base\InvalidConfigException;
use yii\helpers\ArrayHelper;
use yii\helpers\Html;
use yii\helpers\Url;
class Nav extends Widget
{
public $items = [];
public $encodeLabels = false;
public $activateItems = true;
public $route;
public $params;
public $accordion = false;
public $navbar = false;
public $containerTag = 'div';
public $containerOptions = [];
public $navClass = 'uk-nav';
/**
* Initializes the widget.
*/
public function init()
{
parent::init();
if ($this->route === null && Yii::$app->controller !== null) {
$this->route = Yii::$app->controller->getRoute();
}
if ($this->params === null) {
$this->params = $_GET;
}
Html::addCssClass($this->options, $this->navbar ? 'uk-navbar-nav' : $this->navClass);
if ($this->accordion) {
$this->options['data-uk-nav'] = $this->jsonClientOptions();
}
}
/**
* Renders the widget.
*/
public function run()
{
echo $this->renderItems();
if ($this->accordion) {
$this->registerAsset();
}
}
/**
* Renders widget items.
*/
public function renderItems()
{
$items = [];
foreach ($this->items as $i => $item) {
if (isset($item['visible']) && !$item['visible']) {
unset($items[$i]);
continue;
}
$items[] = $this->renderItem($item);
}
if (count($this->containerOptions)) {
return Html::tag($this->containerTag,Html::tag('ul', implode("\n", $items), $this->options),$this->containerOptions);
}
else {
return Html::tag('ul', implode("\n", $items), $this->options);
}
}
/**
* Renders a widget's item.
* @param string|array $item the item to render.
* @return string the rendering result.
* @throws InvalidConfigException
*/
public function renderItem($item)
{
if (is_string($item)) {
return $item;
}
if (!isset($item['label'])) {
throw new InvalidConfigException("The 'label' option is required.");
}
$label = $this->encodeLabels ? Html::encode($item['label']) : $item['label'];
$options = ArrayHelper::getValue($item, 'options', []);
$items = ArrayHelper::getValue($item, 'items');
if (!count($items)) {
$items = null;
}
$url = Url::to(ArrayHelper::getValue($item, 'url', false));
$linkOptions = ArrayHelper::getValue($item, 'linkOptions', []);
if (isset($item['active'])) {
$active = ArrayHelper::remove($item, 'active', false);
} else {
$active = $this->isItemActive($item);
}
if ($active) {
Html::addCssClass($options, 'uk-active');
}
if ($items !== null && is_array($items) && count($items)) {
Html::addCssClass($options, 'uk-parent');
if ($this->navbar) {
$options['data-uk-dropdown'] = "{pos:'bottom'}";
$items = self::widget(['items' => $items,'containerOptions'=>['class'=>'uk-dropdown uk-dropdown-navbar'], 'options' => ['class' => 'uk-nav-navbar']]);
}
else {
$items = self::widget(['items' => $items, 'options' => ['class' => 'uk-nav-sub']]);
}
}
$link = $label;
if ($url) {
$link = Html::a($label, $url, $linkOptions);
}
return Html::tag('li', $link . $items, $options);
}
/**
* Checks whether a menu item is active.
* This is done by checking if [[route]] and [[params]] match that specified in the `url` option of the menu item.
* When the `url` option of a menu item is specified in terms of an array, its first element is treated
* as the route for the item and the rest of the elements are the associated parameters.
* Only when its route and parameters match [[route]] and [[params]], respectively, will a menu item
* be considered active.
* @param array $item the menu item to be checked
* @return boolean whether the menu item is active
*/
protected function isItemActive($item)
{
if (isset($item['url']) && is_array($item['url']) && isset($item['url'][0])) {
$route = $item['url'][0];
if ($route[0] !== '/' && Yii::$app->controller) {
$route = Yii::$app->controller->module->getUniqueId() . '/' . $route;
}
if (ltrim($route, '/') !== $this->route) {
return false;
}
unset($item['url']['#']);
if (count($item['url']) > 1) {
$params = $item['url'];
unset($params[0]);
foreach ($params as $name => $value) {
if ($value !== null && (!isset($this->params[$name]) || $this->params[$name] != $value)) {
return false;
}
}
}
return true;
}
return false;
}
}