Nav.php 6.19 KB
Newer Older
1 2 3 4 5 6 7 8 9
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\bootstrap;

10
use Yii;
11
use yii\base\InvalidConfigException;
12
use yii\helpers\ArrayHelper;
13 14 15
use yii\helpers\Html;

/**
16
 * Nav renders a nav HTML component.
17
 *
18 19 20
 * For example:
 *
 * ```php
Alexander Makarov committed
21 22 23
 * echo Nav::widget([
 *     'items' => [
 *         [
24
 *             'label' => 'Home',
Alexander Makarov committed
25 26
 *             'url' => ['site/index'],
 *             'linkOptions' => [...],
Alexander Makarov committed
27
 *         ],
Alexander Makarov committed
28
 *         [
29
 *             'label' => 'Dropdown',
Alexander Makarov committed
30
 *             'items' => [
31
 *                  ['label' => 'Level 1 - Dropdown A', 'url' => '#'],
32 33
 *                  '<li class="divider"></li>',
 *                  '<li class="dropdown-header">Dropdown Header</li>',
34
 *                  ['label' => 'Level 1 - Dropdown B', 'url' => '#'],
Alexander Makarov committed
35 36 37 38
 *             ],
 *         ],
 *     ],
 * ]);
39
 * ```
40
 *
41
 * Note: Multilevel dropdowns beyond Level 1 are not supported in Bootstrap 3.
42
 *
43 44
 * @see http://getbootstrap.com/components.html#dropdowns
 * @see http://getbootstrap.com/components/#nav
45
 *
46 47 48 49 50 51 52
 * @author Antonio Ramirez <amigo.cobos@gmail.com>
 * @since 2.0
 */
class Nav extends Widget
{
	/**
	 * @var array list of items in the nav widget. Each array element represents a single
Qiang Xue committed
53
	 * menu item which can be either a string or an array with the following structure:
54
	 *
55 56
	 * - label: string, required, the nav item label.
	 * - url: optional, the item's URL. Defaults to "#".
57
	 * - visible: boolean, optional, whether this menu item is visible. Defaults to true.
58 59 60
	 * - linkOptions: array, optional, the HTML attributes of the item's link.
	 * - options: array, optional, the HTML attributes of the item container (LI).
	 * - active: boolean, optional, whether the item should be on active state or not.
61
	 * - items: array|string, optional, the configuration array for creating a [[Dropdown]] widget,
Qiang Xue committed
62
	 *   or a string representing the dropdown menu. Note that Bootstrap does not support sub-dropdown menus.
Qiang Xue committed
63
	 *
Alexander Makarov committed
64
	 * If a menu item is a string, it will be rendered directly without HTML encoding.
65
	 */
Alexander Makarov committed
66
	public $items = [];
67 68 69 70
	/**
	 * @var boolean whether the nav items labels should be HTML-encoded.
	 */
	public $encodeLabels = true;
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
	/**
	 * @var boolean whether to automatically activate items according to whether their route setting
	 * matches the currently requested route.
	 * @see isItemActive
	 */
	public $activateItems = true;
	/**
	 * @var string the route used to determine if a menu item is active or not.
	 * If not set, it will use the route of the current request.
	 * @see params
	 * @see isItemActive
	 */
	public $route;
	/**
	 * @var array the parameters used to determine if a menu item is active or not.
	 * If not set, it will use `$_GET`.
	 * @see route
	 * @see isItemActive
	 */
	public $params;
91 92 93 94 95 96 97


	/**
	 * Initializes the widget.
	 */
	public function init()
	{
98
		parent::init();
99 100 101 102
		if ($this->route === null && Yii::$app->controller !== null) {
			$this->route = Yii::$app->controller->getRoute();
		}
		if ($this->params === null) {
103
			$this->params = Yii::$app->request->getQueryParams();
104
		}
105
		Html::addCssClass($this->options, 'nav');
106 107 108 109 110 111 112 113
	}

	/**
	 * Renders the widget.
	 */
	public function run()
	{
		echo $this->renderItems();
114
		BootstrapAsset::register($this->getView());
115 116 117 118 119 120 121
	}

	/**
	 * Renders widget items.
	 */
	public function renderItems()
	{
Alexander Makarov committed
122
		$items = [];
123 124 125 126 127
		foreach ($this->items as $i => $item) {
			if (isset($item['visible']) && !$item['visible']) {
				unset($items[$i]);
				continue;
			}
128 129 130 131 132 133 134 135
			$items[] = $this->renderItem($item);
		}

		return Html::tag('ul', implode("\n", $items), $this->options);
	}

	/**
	 * Renders a widget's item.
136
	 * @param string|array $item the item to render.
137 138 139 140 141 142 143 144 145 146 147
	 * @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.");
		}
148
		$label = $this->encodeLabels ? Html::encode($item['label']) : $item['label'];
Alexander Makarov committed
149
		$options = ArrayHelper::getValue($item, 'options', []);
Mojtaba Salehi committed
150
		$items = ArrayHelper::getValue($item, 'items');
151
		$url = Html::url(ArrayHelper::getValue($item, 'url', '#'));
Alexander Makarov committed
152
		$linkOptions = ArrayHelper::getValue($item, 'linkOptions', []);
153

154 155 156 157 158 159 160
		if (isset($item['active'])) {
			$active = ArrayHelper::remove($item, 'active', false);
		} else {
			$active = $this->isItemActive($item);
		}

		if ($active) {
161
			Html::addCssClass($options, 'active');
162
		}
163

Mojtaba Salehi committed
164
		if ($items !== null) {
165
			$linkOptions['data-toggle'] = 'dropdown';
166
			Html::addCssClass($options, 'dropdown');
167
			Html::addCssClass($linkOptions, 'dropdown-toggle');
Alexander Makarov committed
168
			$label .= ' ' . Html::tag('b', '', ['class' => 'caret']);
Mojtaba Salehi committed
169
			if (is_array($items)) {
Alexander Makarov committed
170
				$items = Dropdown::widget([
Mojtaba Salehi committed
171
					'items' => $items,
172
					'encodeLabels' => $this->encodeLabels,
Qiang Xue committed
173
					'clientOptions' => false,
174
					'view' => $this->getView(),
Alexander Makarov committed
175
				]);
Qiang Xue committed
176
			}
177 178
		}

Mojtaba Salehi committed
179
		return Html::tag('li', Html::a($label, $url, $linkOptions) . $items, $options);
180
	}
181 182 183 184 185 186 187 188 189 190 191 192 193 194


	/**
	 * 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)
	{
195 196 197 198 199 200 201 202
		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;
			}
203 204 205
			unset($item['url']['#']);
			if (count($item['url']) > 1) {
				foreach (array_splice($item['url'], 1) as $name => $value) {
Qiang Xue committed
206
					if ($value !== null && (!isset($this->params[$name]) || $this->params[$name] != $value)) {
207 208 209 210 211 212 213 214
						return false;
					}
				}
			}
			return true;
		}
		return false;
	}
Qiang Xue committed
215
}