You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
217 lines
7.0 KiB
217 lines
7.0 KiB
3 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 02.02.2020
|
||
|
*/
|
||
|
|
||
|
namespace core\components\adminlte3\widgets;
|
||
|
|
||
|
use Yii;
|
||
|
use yii\helpers\ArrayHelper;
|
||
|
use yii\helpers\Html;
|
||
|
use yii\helpers\Url;
|
||
|
|
||
|
class Menu extends \yii\widgets\Menu
|
||
|
{
|
||
|
public $menuCompact = true;
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public $linkTemplate = '<a class="nav-link{active}" href="{url}">{icon} {label}</a>';
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
* Styles all labels of items on sidebar by AdminLTE
|
||
|
*/
|
||
|
public $itemOptions = ['class' => 'nav-item'];
|
||
|
public $labelTemplate = '{label}';
|
||
|
public $submenuTemplate = "\n<ul class='nav nav-treeview' {show}>\n{items}\n</ul>\n";
|
||
|
public $activateParents = true;
|
||
|
//public $options = ['class' => 'nav nav-pills nav-sidebar flex-column nav-compact text-sm nav-legacy', 'data-widget' => 'treeview', 'role' => 'menu', 'data-accordion' => 'false'];
|
||
|
public $options = ['class' => 'nav nav-pills nav-sidebar flex-column text-sm nav-legacy', 'data-widget' => 'treeview', 'role' => 'menu', 'data-accordion' => 'false'];
|
||
|
|
||
|
|
||
|
private $noDefaultAction;
|
||
|
private $noDefaultRoute;
|
||
|
|
||
|
/**
|
||
|
* Renders the menu.
|
||
|
*/
|
||
|
public function run()
|
||
|
{
|
||
|
if ($this->route === null && Yii::$app->controller !== null) {
|
||
|
$this->route = Yii::$app->controller->getRoute();
|
||
|
}
|
||
|
if ($this->params === null) {
|
||
|
$this->params = Yii::$app->request->getQueryParams();
|
||
|
}
|
||
|
$posDefaultAction = strpos($this->route, Yii::$app->controller->defaultAction);
|
||
|
if ($posDefaultAction) {
|
||
|
$this->noDefaultAction = rtrim(substr($this->route, 0, $posDefaultAction), '/');
|
||
|
} else {
|
||
|
$this->noDefaultAction = false;
|
||
|
}
|
||
|
$posDefaultRoute = strpos($this->route, Yii::$app->controller->module->defaultRoute);
|
||
|
if ($posDefaultRoute) {
|
||
|
$this->noDefaultRoute = rtrim(substr($this->route, 0, $posDefaultRoute), '/');
|
||
|
} else {
|
||
|
$this->noDefaultRoute = false;
|
||
|
}
|
||
|
$items = $this->normalizeItems($this->items, $hasActiveChild);
|
||
|
if (!empty($items)) {
|
||
|
$options = $this->options;
|
||
|
$tag = ArrayHelper::remove($options, 'tag', 'ul');
|
||
|
|
||
|
echo Html::tag($tag, $this->renderItems($items), $options);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
protected function renderItem($item)
|
||
|
{
|
||
|
if (isset($item['items'])) {
|
||
|
$labelTemplate = '<a class="nav-link{active}" href="{url}">{icon} <p>{label} <i class="right fa fa-angle-left"></i></p></a>';
|
||
|
$linkTemplate = '<a class="nav-link{active}" href="{url}">{icon} <p>{label} <i class="right fa fa-angle-left"></i></p></a>';
|
||
|
} else {
|
||
|
$labelTemplate = '<p>' . $this->labelTemplate . '</p>';
|
||
|
$linkTemplate = '<a class="nav-link{active}" ' . (isset($item['target']) ? 'target="' . $item['target'] . '"' : '') . ' href="{url}">{icon} <p>{label}</p></a>';
|
||
|
}
|
||
|
|
||
|
$replacements = [
|
||
|
'{label}' => strtr($this->labelTemplate, ['{label}' => $item['label'],]),
|
||
|
'{icon}' => empty($item['icon']) ? ''
|
||
|
: '<i class="nav-icon ' . $item['icon'] . '"></i> ',
|
||
|
'{url}' => isset($item['url']) ? Url::to($item['url']) : 'javascript:void(0);',
|
||
|
'{active}' => $item['active'] ? ' ' . $this->activeCssClass : '',
|
||
|
];
|
||
|
|
||
|
$template = ArrayHelper::getValue($item, 'template', isset($item['url']) ? $linkTemplate : $labelTemplate);
|
||
|
|
||
|
return strtr($template, $replacements);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Recursively renders the menu items (without the container tag).
|
||
|
* @param array $items the menu items to be rendered recursively
|
||
|
* @return string the rendering result
|
||
|
*/
|
||
|
protected function renderItems($items)
|
||
|
{
|
||
|
$n = count($items);
|
||
|
$lines = [];
|
||
|
foreach ($items as $i => $item) {
|
||
|
$options = array_merge($this->itemOptions, ArrayHelper::getValue($item, 'options', []));
|
||
|
$tag = ArrayHelper::remove($options, 'tag', 'li');
|
||
|
$class = [];
|
||
|
if ($item['active']) {
|
||
|
$class[] = $this->activeCssClass;
|
||
|
if (!empty($item['items'])) {
|
||
|
$class[] = 'menu-open';
|
||
|
}
|
||
|
}
|
||
|
if ($i === 0 && $this->firstItemCssClass !== null) {
|
||
|
$class[] = $this->firstItemCssClass;
|
||
|
}
|
||
|
if ($i === $n - 1 && $this->lastItemCssClass !== null) {
|
||
|
$class[] = $this->lastItemCssClass;
|
||
|
}
|
||
|
if (!empty($class)) {
|
||
|
if (empty($options['class'])) {
|
||
|
$options['class'] = implode(' ', $class);
|
||
|
} else {
|
||
|
$options['class'] .= ' ' . implode(' ', $class);
|
||
|
}
|
||
|
}
|
||
|
$menu = $this->renderItem($item);
|
||
|
if (!empty($item['items'])) {
|
||
|
$menu .= strtr($this->submenuTemplate, [
|
||
|
'{show}' => $item['active'] ? "style='display: block'" : '',
|
||
|
'{items}' => $this->renderItems($item['items']),
|
||
|
]);
|
||
|
if (isset($options['class'])) {
|
||
|
$options['class'] .= ' has-treeview';
|
||
|
} else {
|
||
|
$options['class'] = 'has-treeview';
|
||
|
}
|
||
|
}
|
||
|
$lines[] = Html::tag($tag, $menu, $options);
|
||
|
}
|
||
|
return implode("\n", $lines);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
protected function normalizeItems($items, &$active)
|
||
|
{
|
||
|
foreach ($items as $i => $item) {
|
||
|
if (isset($item['visible']) && !$item['visible']) {
|
||
|
unset($items[$i]);
|
||
|
continue;
|
||
|
}
|
||
|
if (!isset($item['label'])) {
|
||
|
$item['label'] = '';
|
||
|
}
|
||
|
$encodeLabel = isset($item['encode']) ? $item['encode'] : $this->encodeLabels;
|
||
|
$items[$i]['label'] = $encodeLabel ? Html::encode($item['label']) : $item['label'];
|
||
|
$items[$i]['icon'] = isset($item['icon']) ? $item['icon'] : '';
|
||
|
$hasActiveChild = false;
|
||
|
if (isset($item['items'])) {
|
||
|
$items[$i]['items'] = $this->normalizeItems($item['items'], $hasActiveChild);
|
||
|
if (empty($items[$i]['items']) && $this->hideEmptyItems) {
|
||
|
unset($items[$i]['items']);
|
||
|
if (!isset($item['url'])) {
|
||
|
unset($items[$i]);
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
if (!isset($item['active'])) {
|
||
|
if ($this->activateParents && $hasActiveChild || $this->activateItems && $this->isItemActive($item)) {
|
||
|
$active = $items[$i]['active'] = true;
|
||
|
} else {
|
||
|
$items[$i]['active'] = false;
|
||
|
}
|
||
|
} elseif ($item['active']) {
|
||
|
$active = true;
|
||
|
}
|
||
|
}
|
||
|
return array_values($items);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 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 = ltrim(Yii::$app->controller->module->getUniqueId() . '/' . $route, '/');
|
||
|
}
|
||
|
$route = ltrim($route, '/');
|
||
|
if ($route != $this->route && $route !== $this->noDefaultRoute && $route !== $this->noDefaultAction) {
|
||
|
return false;
|
||
|
}
|
||
|
unset($item['url']['#']);
|
||
|
if (count($item['url']) > 1) {
|
||
|
foreach (array_splice($item['url'], 1) as $name => $value) {
|
||
|
if ($value !== null && (!isset($this->params[$name]) || $this->params[$name] != $value)) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|