- 전체 테넌트 보기 토글 추가 (바로빌본사용) - 테이블에 테넌트 컬럼 표시 (전체 모드에서) - 회원사 등록 시 테넌트 선택 기능 추가 - 통계 API에도 전체 테넌트 모드 적용 - 컨트롤러에서 tenant_id 직접 지정 지원 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
90 lines
7.0 KiB
PHP
90 lines
7.0 KiB
PHP
@if($configs->isEmpty())
|
|
<div class="text-center py-12 text-gray-500">
|
|
<svg class="w-12 h-12 mx-auto mb-4 text-gray-300" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
</svg>
|
|
<p>등록된 설정이 없습니다.</p>
|
|
<button type="button" onclick="ConfigModal.openCreate()" class="mt-4 text-blue-600 hover:text-blue-800 font-medium">
|
|
+ 새 설정 추가
|
|
</button>
|
|
</div>
|
|
@else
|
|
<table class="w-full">
|
|
<thead class="bg-gray-50 border-b border-gray-200">
|
|
<tr>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">설정 이름</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">환경</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">인증키</th>
|
|
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">서버 URL</th>
|
|
<th class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">상태</th>
|
|
<th class="px-6 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">관리</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-200">
|
|
@foreach($configs as $config)
|
|
<tr class="hover:bg-gray-50 transition {{ $config->is_active ? 'bg-green-50/30' : '' }}">
|
|
<td class="px-6 py-4">
|
|
<div class="font-medium text-gray-800">{{ $config->name }}</div>
|
|
@if($config->description)
|
|
<div class="text-xs text-gray-500 mt-1">{{ Str::limit($config->description, 50) }}</div>
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium {{ $config->environment === 'test' ? 'bg-yellow-100 text-yellow-800' : 'bg-green-100 text-green-800' }}">
|
|
{{ $config->environment_label }}
|
|
</span>
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
<div class="flex items-center gap-2">
|
|
<code class="text-xs font-mono text-blue-600 bg-gray-50 px-2 py-1 rounded">{{ $config->masked_cert_key }}</code>
|
|
<button type="button" onclick="copyToClipboard('{{ $config->cert_key }}')" class="text-gray-400 hover:text-gray-600" title="복사">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
<span class="text-sm text-gray-600">{{ Str::limit($config->base_url, 35) }}</span>
|
|
</td>
|
|
<td class="px-6 py-4 text-center">
|
|
<button type="button" onclick="toggleConfigActive({{ $config->id }})"
|
|
class="inline-flex items-center px-2.5 py-1 rounded-full text-xs font-medium transition cursor-pointer {{ $config->is_active ? 'bg-green-100 text-green-800 hover:bg-green-200' : 'bg-gray-100 text-gray-600 hover:bg-gray-200' }}">
|
|
@if($config->is_active)
|
|
<svg class="w-3 h-3 mr-1" fill="currentColor" viewBox="0 0 20 20">
|
|
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
|
|
</svg>
|
|
활성
|
|
@else
|
|
<svg class="w-3 h-3 mr-1" fill="currentColor" viewBox="0 0 20 20">
|
|
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z" clip-rule="evenodd" />
|
|
</svg>
|
|
비활성
|
|
@endif
|
|
</button>
|
|
</td>
|
|
<td class="px-6 py-4 text-center">
|
|
<div class="flex items-center justify-center gap-2">
|
|
<button type="button" onclick="ConfigModal.openEdit({{ $config->id }})"
|
|
class="p-1.5 text-gray-400 hover:text-blue-600 hover:bg-blue-50 rounded transition" title="수정">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
|
|
</svg>
|
|
</button>
|
|
@unless($config->is_active)
|
|
<button type="button" onclick="confirmDeleteConfig({{ $config->id }}, '{{ $config->name }}')"
|
|
class="p-1.5 text-gray-400 hover:text-red-600 hover:bg-red-50 rounded transition" title="삭제">
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
|
</svg>
|
|
</button>
|
|
@endunless
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
@endif
|