- 메뉴 코드(S./A.)로 Strategy와 AI 메뉴 분리 - 분리 불가 시 모든 메뉴를 sMenus로 표시 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
153 lines
8.1 KiB
PHP
153 lines
8.1 KiB
PHP
@props(['menus'])
|
|
|
|
@php
|
|
// Labs 메뉴가 없으면 렌더링하지 않음
|
|
if ($menus->isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
// R&D Labs 그룹 메뉴 찾기
|
|
$labsGroup = $menus->first();
|
|
if (!$labsGroup || !isset($labsGroup->menuChildren) || $labsGroup->menuChildren->isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
// 자식 메뉴를 S(Strategy)와 A(AI/Automation)로 분리
|
|
$labsChildMenus = $labsGroup->menuChildren;
|
|
|
|
// 메뉴 코드로 분리 (S.로 시작하면 Strategy, A.로 시작하면 AI)
|
|
$sMenus = $labsChildMenus->filter(fn($m) => str_starts_with($m->code ?? '', 'S.'));
|
|
$aMenus = $labsChildMenus->filter(fn($m) => str_starts_with($m->code ?? '', 'A.'));
|
|
|
|
// 만약 코드로 분리가 안 되면 모든 메뉴를 sMenus에 넣음
|
|
if ($sMenus->isEmpty() && $aMenus->isEmpty()) {
|
|
$sMenus = $labsChildMenus;
|
|
$aMenus = collect([]);
|
|
}
|
|
@endphp
|
|
|
|
{{-- R&D Labs 그룹 (탭 스타일 + 플라이아웃) --}}
|
|
<li class="lab-menu-container pt-4 pb-1 border-t border-gray-200 mt-2" id="lab-menu-container">
|
|
<!-- 확장 상태: 헤더 + 탭 + 메뉴 -->
|
|
<div class="lab-expanded-view">
|
|
<button onclick="toggleGroup('lab-group'); scrollSidebarToBottom();" class="sidebar-group-header lab-group-header w-full flex items-center justify-between px-3 py-2 text-sm font-semibold text-gray-700 rounded">
|
|
<span class="flex items-center gap-2">
|
|
<svg class="w-4 h-4 text-amber-600 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z" />
|
|
</svg>
|
|
<span class="sidebar-text">R&D Labs</span>
|
|
</span>
|
|
<svg id="lab-group-icon" class="w-3 h-3 transition-transform sidebar-text" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" />
|
|
</svg>
|
|
</button>
|
|
|
|
<!-- 메뉴 콘텐츠 -->
|
|
<div id="lab-group" class="mt-2">
|
|
<!-- S | A 탭 버튼 -->
|
|
<div class="lab-tabs flex mx-2 mb-2 bg-gray-100 rounded-lg p-1">
|
|
<button type="button" onclick="switchLabTab('s')" id="lab-tab-s" class="lab-tab active flex-1 py-1.5 text-xs font-bold rounded-md transition-all text-blue-600">
|
|
S
|
|
</button>
|
|
<button type="button" onclick="switchLabTab('a')" id="lab-tab-a" class="lab-tab flex-1 py-1.5 text-xs font-bold rounded-md transition-all text-purple-600">
|
|
A
|
|
</button>
|
|
</div>
|
|
|
|
<!-- S. Strategy 메뉴 -->
|
|
<ul id="lab-panel-s" class="lab-panel space-y-1">
|
|
@foreach($sMenus as $menu)
|
|
@php
|
|
$routeName = $menu->getRouteName();
|
|
$href = ($routeName && Route::has($routeName)) ? route($routeName) : ($menu->url ?: '#');
|
|
@endphp
|
|
<li>
|
|
<a href="{{ $href }}"
|
|
class="flex items-center gap-2 px-3 py-2 rounded-lg text-sm text-gray-600 hover:bg-gray-100 hover:text-gray-900 transition-colors"
|
|
title="{{ $menu->name }}">
|
|
<x-sidebar.menu-icon :icon="$menu->icon" class="w-4 h-4 flex-shrink-0" />
|
|
<span class="sidebar-text">{{ $menu->name }}</span>
|
|
</a>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
|
|
<!-- A. AI/Automation 메뉴 -->
|
|
<ul id="lab-panel-a" class="lab-panel space-y-1 hidden">
|
|
@foreach($aMenus as $menu)
|
|
@php
|
|
$routeName = $menu->getRouteName();
|
|
$href = ($routeName && Route::has($routeName)) ? route($routeName) : ($menu->url ?: '#');
|
|
@endphp
|
|
<li>
|
|
<a href="{{ $href }}"
|
|
class="flex items-center gap-2 px-3 py-2 rounded-lg text-sm text-gray-600 hover:bg-gray-100 hover:text-gray-900 transition-colors"
|
|
title="{{ $menu->name }}">
|
|
<x-sidebar.menu-icon :icon="$menu->icon" class="w-4 h-4 flex-shrink-0" />
|
|
<span class="font-medium sidebar-text">{{ $menu->name }}</span>
|
|
</a>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 축소 상태: 아이콘 + 플라이아웃 -->
|
|
<div class="lab-collapsed-view hidden">
|
|
<div class="lab-flyout-trigger relative">
|
|
<button type="button" class="flex items-center justify-center w-full p-2 rounded-lg hover:bg-amber-50 transition-colors" title="R&D Labs">
|
|
<svg class="w-5 h-5 text-amber-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z" />
|
|
</svg>
|
|
</button>
|
|
|
|
<!-- 플라이아웃 팝업 -->
|
|
<div class="lab-flyout hidden fixed w-56 bg-white rounded-lg shadow-xl border border-gray-200 z-[9999]">
|
|
<!-- 화살표 -->
|
|
<div class="absolute -left-2 top-3 w-0 h-0 border-t-8 border-b-8 border-r-8 border-transparent border-r-white"></div>
|
|
<div class="absolute -left-[9px] top-3 w-0 h-0 border-t-8 border-b-8 border-r-8 border-transparent border-r-gray-200"></div>
|
|
|
|
<!-- 헤더 -->
|
|
<div class="px-3 py-2 bg-gradient-to-r from-amber-50 to-amber-100 rounded-t-lg border-b border-amber-200">
|
|
<span class="text-xs font-bold text-amber-800 uppercase tracking-wider">R&D Labs</span>
|
|
</div>
|
|
|
|
<!-- 메뉴 패널 -->
|
|
<div class="p-2 max-h-64 overflow-y-auto">
|
|
<!-- S. Strategy -->
|
|
<ul id="lab-flyout-panel-s" class="lab-flyout-panel space-y-0.5">
|
|
@foreach($sMenus as $menu)
|
|
@php
|
|
$routeName = $menu->getRouteName();
|
|
$href = ($routeName && Route::has($routeName)) ? route($routeName) : ($menu->url ?: '#');
|
|
@endphp
|
|
<li>
|
|
<a href="{{ $href }}"
|
|
class="block px-2 py-1 text-xs text-gray-600 rounded hover:bg-gray-100 hover:text-gray-900">
|
|
{{ $menu->name }}
|
|
</a>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
|
|
<!-- A. AI/Automation -->
|
|
<ul id="lab-flyout-panel-a" class="lab-flyout-panel space-y-0.5 hidden">
|
|
@foreach($aMenus as $menu)
|
|
@php
|
|
$routeName = $menu->getRouteName();
|
|
$href = ($routeName && Route::has($routeName)) ? route($routeName) : ($menu->url ?: '#');
|
|
@endphp
|
|
<li>
|
|
<a href="{{ $href }}"
|
|
class="block px-2 py-1 text-xs text-gray-600 rounded hover:bg-gray-100 hover:text-gray-900">
|
|
{{ $menu->name }}
|
|
</a>
|
|
</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|