整理后台菜单

This commit is contained in:
Edward Yang 2022-07-25 21:23:23 +08:00
parent 210325cf05
commit ed8a5fa1f1
1 changed files with 47 additions and 21 deletions

View File

@ -8,6 +8,7 @@ use Illuminate\View\Component;
class Sidebar extends Component
{
public array $links = [];
private string $adminName;
/**
* Create a new component instance.
@ -16,53 +17,78 @@ class Sidebar extends Component
*/
public function __construct()
{
//
$this->adminName = admin_name();
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
* @return mixed
*/
public function render()
{
$routeName = request()->route()->getName();
if (Str::startsWith($routeName, [admin_name() . '.products.', admin_name() . '.categories.'])) {
$this->addLink('商品分类', admin_route('categories.index'), 'fa fa-tachometer-alt', false);
$this->addLink('商品列表', admin_route('products.index'), 'fa fa-tachometer-alt', false);
$adminName = $this->adminName;
$routeNameWithPrefix = request()->route()->getName();
$routeName = str_replace($adminName . '.', '', $routeNameWithPrefix);
if (Str::startsWith($routeName, ['products.', 'categories.'])) {
$this->addLink('商品分类', admin_route('categories.index'), 'fa fa-tachometer-alt', $this->equalRoute('categories.index'));
$this->addLink('商品列表', admin_route('products.index'), 'fa fa-tachometer-alt', $this->equalRoute('products.index'));
$this->addLink('回收站', admin_route('products.index', ['trashed' => 1]), 'fa fa-tachometer-alt', false);
}
// if (Str::startsWith($routeName, [admin_name() . '.plugins.'])) {
// $this->addLink('插件列表', admin_route('categories.index'), 'fa fa-tachometer-alt', $routeName == admin_name() . '.plugins.index');
// }
if (Str::startsWith($routeName, [admin_name() . '.customers.', admin_name() . '.customer_groups.'])) {
$this->addLink('会员管理', admin_route('customers.index'), 'fa fa-tachometer-alt', $routeName == admin_name() . '.customers.index');
$this->addLink('用户组', admin_route('customer_groups.index'), 'fa fa-tachometer-alt', $routeName == admin_name() . '.customer_groups.index');
if (Str::startsWith($routeName, ['customers.', 'customer_groups.'])) {
$this->addLink('会员管理', admin_route('customers.index'), 'fa fa-tachometer-alt', $this->equalRoute('customers.index'));
$this->addLink('用户组', admin_route('customer_groups.index'), 'fa fa-tachometer-alt', $this->equalRoute('customer_groups.index'));
}
if (Str::startsWith($routeName, [admin_name() . '.orders.'])) {
$this->addLink('订单列表', admin_route('orders.index'), 'fa fa-tachometer-alt', $routeName == admin_name() . '.orders.index');
if (Str::startsWith($routeName, ['orders.'])) {
$this->addLink('订单列表', admin_route('orders.index'), 'fa fa-tachometer-alt', $this->equalRoute('orders.index'));
}
if (Str::startsWith($routeName, [admin_name() . '.settings.', admin_name() . '.plugins.'])) {
$this->addLink('系统设置', admin_route('settings.index'), 'fa fa-tachometer-alt', $routeName == admin_name() . '.settings.index');
$this->addLink('插件列表', admin_route('plugins.index'), 'fa fa-tachometer-alt', $routeName == admin_name() . '.plugins.index');
$this->addLink('首页装修', admin_route('design.index'), 'fa fa-tachometer-alt', $routeName == admin_name() . '.design.index', true);
if (Str::startsWith($routeName, ['settings.', 'plugins.'])) {
$this->addLink('系统设置', admin_route('settings.index'), 'fa fa-tachometer-alt', $this->equalRoute('settings.index'));
$this->addLink('插件列表', admin_route('plugins.index'), 'fa fa-tachometer-alt', $this->equalRoute('plugins.index'));
$this->addLink('首页装修', admin_route('design.index'), 'fa fa-tachometer-alt', $this->equalRoute('design.index'), true);
}
return view('admin::components.sidebar');
}
public function addLink($title, $url, $icon, $active, $new_window = false)
/**
* 添加链接
*
* @param $title
* @param $url
* @param $icon
* @param $active
* @param false $newWindow
*/
public function addLink($title, $url, $icon, $active, bool $newWindow = false)
{
$this->links[] = [
'title' => $title,
'url' => $url,
'icon' => $icon,
'active' => $active,
'new_window' => $new_window ?? false
'new_window' => $newWindow
];
}
/**
* 是否为当前访问路由
*
* @param $routeName
* @return bool
*/
private function equalRoute($routeName): bool
{
$adminName = $this->adminName;
$routeNameWithPrefix = request()->route()->getName();
$currentRouteName = str_replace($adminName . '.', '', $routeNameWithPrefix);
return $routeName == $currentRouteName;
}
}