Penambahan Menu Service Provider
This commit is contained in:
parent
9ec32469ce
commit
58606ec9be
72
app/Providers/MenuServiceProvider.php
Normal file
72
app/Providers/MenuServiceProvider.php
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Providers;
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\File;
|
||||||
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
|
||||||
|
class MenuServiceProvider extends ServiceProvider
|
||||||
|
{
|
||||||
|
protected $menus = [];
|
||||||
|
|
||||||
|
public function boot()
|
||||||
|
{
|
||||||
|
$this->loadMenus();
|
||||||
|
$this->shareMenusWithViews();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function loadMenus()
|
||||||
|
{
|
||||||
|
$modulesPath = base_path('Modules');
|
||||||
|
$moduleDirs = File::directories($modulesPath);
|
||||||
|
|
||||||
|
foreach ($moduleDirs as $moduleDir) {
|
||||||
|
$moduleJsonPath = $moduleDir . '/module.json';
|
||||||
|
if (File::exists($moduleJsonPath)) {
|
||||||
|
$moduleConfig = json_decode(File::get($moduleJsonPath), true);
|
||||||
|
if (isset($moduleConfig['menu'])) {
|
||||||
|
$this->mergeMenus($moduleConfig['menu']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function mergeMenus(array $menu)
|
||||||
|
{
|
||||||
|
foreach ($menu as $key => $items) {
|
||||||
|
if (!isset($this->menus[$key])) {
|
||||||
|
$this->menus[$key] = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($items as $newItem) {
|
||||||
|
$existingItemKey = $this->findExistingMenuItem($this->menus[$key], $newItem);
|
||||||
|
|
||||||
|
if ($existingItemKey !== null) {
|
||||||
|
// Merge submenus if the item already exists
|
||||||
|
$this->menus[$key][$existingItemKey]['sub'] = array_merge(
|
||||||
|
$this->menus[$key][$existingItemKey]['sub'] ?? [],
|
||||||
|
$newItem['sub'] ?? []
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
// Add new item if it doesn't exist
|
||||||
|
$this->menus[$key][] = $newItem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function findExistingMenuItem(array $menuItems, array $newItem)
|
||||||
|
{
|
||||||
|
foreach ($menuItems as $index => $item) {
|
||||||
|
if ($item['title'] === $newItem['title'] || $item['path'] === $newItem['path']) {
|
||||||
|
return $index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function shareMenusWithViews()
|
||||||
|
{
|
||||||
|
view()->share('menus', $this->menus);
|
||||||
|
}
|
||||||
|
}
|
@ -2,4 +2,5 @@
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
App\Providers\AppServiceProvider::class,
|
App\Providers\AppServiceProvider::class,
|
||||||
|
App\Providers\MenuServiceProvider::class,
|
||||||
];
|
];
|
||||||
|
@ -5,12 +5,12 @@
|
|||||||
<div class="sidebar-header hidden lg:flex items-center relative justify-between px-3 lg:px-6 shrink-0"
|
<div class="sidebar-header hidden lg:flex items-center relative justify-between px-3 lg:px-6 shrink-0"
|
||||||
id="sidebar_header">
|
id="sidebar_header">
|
||||||
<a class="dark:hidden" href="{{ url('/') }}">
|
<a class="dark:hidden" href="{{ url('/') }}">
|
||||||
<img class="default-logo min-h-[22px] max-w-none" style="height: 53.55px;" src="assets/media/app/logo-agi-croped.png"/>
|
<img class="default-logo min-h-[22px] max-w-none" style="height: 53.55px;" src="assets/media/app/logo-agi-croped.png" />
|
||||||
<img class="small-logo min-h-[22px] max-w-none" style="height: 50px" src="assets/media/app/logo-agi-mini.png"/>
|
<img class="small-logo min-h-[22px] max-w-none" style="height: 50px" src="assets/media/app/logo-agi-mini.png" />
|
||||||
</a>
|
</a>
|
||||||
<a class="light:hidden dark:flex" href="{{ url('/') }}">
|
<a class="light:hidden dark:flex" href="{{ url('/') }}">
|
||||||
<img class="default-logo min-h-[22px] max-w-none" style="height: 53.55px;" src="assets/media/app/logo-agi-croped.png"/>
|
<img class="default-logo min-h-[22px] max-w-none" style="height: 53.55px;" src="assets/media/app/logo-agi-croped.png" />
|
||||||
<img class="small-logo min-h-[22px] max-w-none" style="height: 50px" src="assets/media/app/logo-agi-mini.png"/>
|
<img class="small-logo min-h-[22px] max-w-none" style="height: 50px" src="assets/media/app/logo-agi-mini.png" />
|
||||||
</a>
|
</a>
|
||||||
<button
|
<button
|
||||||
class="btn btn-icon btn-icon-md size-[30px] rounded-lg border border-gray-200 dark:border-gray-300 bg-light text-gray-500 hover:text-gray-700 toggle absolute left-full top-2/4 -translate-x-2/4 -translate-y-2/4"
|
class="btn btn-icon btn-icon-md size-[30px] rounded-lg border border-gray-200 dark:border-gray-300 bg-light text-gray-500 hover:text-gray-700 toggle absolute left-full top-2/4 -translate-x-2/4 -translate-y-2/4"
|
||||||
@ -43,13 +43,7 @@
|
|||||||
$headingMain = 0;
|
$headingMain = 0;
|
||||||
$headingMaster = 0;
|
$headingMaster = 0;
|
||||||
@endphp
|
@endphp
|
||||||
@foreach($module as $row => $key)
|
@php $menus = json_decode(json_encode($menus)); @endphp
|
||||||
@if($key)
|
|
||||||
@if(file_exists(dirname(__FILE__, 4) . '/Modules/'.$row.'/module.json'))
|
|
||||||
@php
|
|
||||||
$module = json_decode(file_get_contents(dirname(__FILE__, 4) . '/Modules/'.$row.'/module.json'));
|
|
||||||
$menus = $module->menu;
|
|
||||||
@endphp
|
|
||||||
@foreach($menus as $key => $value)
|
@foreach($menus as $key => $value)
|
||||||
@foreach($value as $menu)
|
@foreach($value as $menu)
|
||||||
@if($key=='main')
|
@if($key=='main')
|
||||||
@ -135,9 +129,6 @@
|
|||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
@endforeach
|
@endforeach
|
||||||
@endif
|
|
||||||
@endif
|
|
||||||
@endforeach
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user