Files
sam-manage/resources/views/users/index.blade.php
김보곤 5ebca1402d feat: [users] 재직/휴직/퇴직 상태 검색 필터 추가
- index.blade.php에 employee_status 필터 select 추가
- UserService에 tenant_user_profiles 기반 필터링 로직 추가
2026-02-28 08:31:14 +09:00

153 lines
5.9 KiB
PHP

@extends('layouts.app')
@section('title', '사용자 관리')
@section('content')
<!-- 페이지 헤더 -->
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center gap-4 mb-6">
<h1 class="text-2xl font-bold text-gray-800">사용자 관리</h1>
<a href="{{ route('users.create') }}" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg transition text-center w-full sm:w-auto">
+ 사용자
</a>
</div>
<!-- 필터 영역 -->
<x-filter-collapsible id="filterForm">
<form id="filterForm" class="flex flex-wrap gap-2 sm:gap-4">
<!-- 검색 -->
<div class="flex-1 min-w-0 w-full sm:w-auto">
<input type="text"
name="search"
placeholder="이름, 이메일, 연락처로 검색..."
class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<!-- 재직 상태 필터 -->
<div class="w-full sm:w-40">
<select name="employee_status" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
<option value="">전체</option>
<option value="active">재직</option>
<option value="leave">휴직</option>
<option value="resigned">퇴직</option>
</select>
</div>
<!-- 활성 상태 필터 -->
<div class="w-full sm:w-40">
<select name="is_active" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
<option value="">전체 활성</option>
<option value="1">활성</option>
<option value="0">비활성</option>
</select>
</div>
<!-- 검색 버튼 -->
<button type="submit" class="bg-gray-600 hover:bg-gray-700 text-white px-6 py-2 rounded-lg transition w-full sm:w-auto">
검색
</button>
</form>
</x-filter-collapsible>
<!-- 테이블 영역 (HTMX로 로드) -->
<div id="user-table"
hx-get="/api/admin/users?per_page=100"
hx-trigger="load, filterSubmit from:body"
hx-include="#filterForm"
hx-headers='{"X-CSRF-TOKEN": "{{ csrf_token() }}"}'
class="bg-white rounded-lg shadow-sm overflow-hidden">
<!-- 로딩 스피너 -->
<div class="flex justify-center items-center p-12">
<div class="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600"></div>
</div>
</div>
@endsection
@push('scripts')
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
<script>
// 폼 제출 시 HTMX 이벤트 트리거
document.getElementById('filterForm').addEventListener('submit', function(e) {
e.preventDefault();
htmx.trigger('#user-table', 'filterSubmit');
});
// HTMX 응답 후 필요한 초기화 처리
document.body.addEventListener('htmx:afterSwap', function(event) {
if (event.detail.target.id === 'user-table') {
// 필요시 테이블 로드 후 초기화 작업
}
});
// 삭제 확인
window.confirmDelete = function(id, name) {
showDeleteConfirm(name, () => {
htmx.ajax('DELETE', `/api/admin/users/${id}`, {
target: '#user-table',
swap: 'none',
headers: {
'X-CSRF-TOKEN': '{{ csrf_token() }}'
}
}).then(() => {
htmx.trigger('#user-table', 'filterSubmit');
});
});
};
// 복원 확인
window.confirmRestore = function(id, name) {
showConfirm(`"${name}" 사용자를 복원하시겠습니까?`, () => {
htmx.ajax('POST', `/api/admin/users/${id}/restore`, {
target: '#user-table',
swap: 'none',
headers: {
'X-CSRF-TOKEN': '{{ csrf_token() }}'
}
}).then(() => {
htmx.trigger('#user-table', 'filterSubmit');
});
}, { title: '복원 확인', icon: 'question' });
};
// 영구삭제 확인
window.confirmForceDelete = function(id, name) {
showPermanentDeleteConfirm(name, () => {
htmx.ajax('DELETE', `/api/admin/users/${id}/force`, {
target: '#user-table',
swap: 'none',
headers: {
'X-CSRF-TOKEN': '{{ csrf_token() }}'
}
}).then(() => {
htmx.trigger('#user-table', 'filterSubmit');
});
});
};
// DEV 사이트 접속 (자동 로그인)
window.openDevSite = function(id, name) {
showConfirm(`"${name}" 사용자로 DEV 사이트에 접속하시겠습니까?`, () => {
// 토큰 생성 API 호출
fetch(`/api/admin/users/${id}/login-token`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-CSRF-TOKEN': '{{ csrf_token() }}'
}
})
.then(response => response.json())
.then(data => {
if (data.success && data.data?.url) {
// 새 창에서 DEV 사이트 열기
window.open(data.data.url, '_blank');
} else {
showAlert(data.message || 'DEV 접속 토큰 생성에 실패했습니다.', 'error');
}
})
.catch(error => {
console.error('DEV 접속 오류:', error);
showAlert('DEV 접속 중 오류가 발생했습니다.', 'error');
});
}, { title: 'DEV 사이트 접속', icon: 'question' });
};
</script>
@endpush