MIF_E31230910_MP-HRIS-WEB/resources/views/face-approval/index.blade.php

294 lines
20 KiB
PHP

@php use App\Enums\StatusVerifikasiWajah; @endphp
@extends('layouts.app')
@section('title', 'Verifikasi Wajah')
@section('content')
<div class="space-y-6">
<x-page-header title="Verifikasi Wajah Karyawan" subtitle="Monitor dan kelola data Face ID seluruh karyawan." />
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<a href="{{ route('face.index', ['status' => 'pending']) }}"
class="bg-white rounded-xl border border-slate-200 p-4 hover:shadow-md transition-all {{ $status === 'pending' ? 'ring-2 ring-amber-400' : '' }}">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-full bg-amber-100 flex items-center justify-center">
<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="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
<div>
<div class="text-2xl font-extrabold text-slate-800">{{ $stats['pending'] }}</div>
<div class="text-xs font-semibold text-slate-500">Menunggu</div>
</div>
</div>
</a>
<a href="{{ route('face.index', ['status' => 'approved']) }}"
class="bg-white rounded-xl border border-slate-200 p-4 hover:shadow-md transition-all {{ $status === 'approved' ? 'ring-2 ring-emerald-400' : '' }}">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-full bg-emerald-100 flex items-center justify-center">
<svg class="w-5 h-5 text-emerald-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
<div>
<div class="text-2xl font-extrabold text-slate-800">{{ $stats['approved'] }}</div>
<div class="text-xs font-semibold text-slate-500">Terverifikasi</div>
</div>
</div>
</a>
<a href="{{ route('face.index', ['status' => 'rejected']) }}"
class="bg-white rounded-xl border border-slate-200 p-4 hover:shadow-md transition-all {{ $status === 'rejected' ? 'ring-2 ring-red-400' : '' }}">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-full bg-red-100 flex items-center justify-center">
<svg class="w-5 h-5 text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
<div>
<div class="text-2xl font-extrabold text-slate-800">{{ $stats['rejected'] }}</div>
<div class="text-xs font-semibold text-slate-500">Ditolak</div>
</div>
</div>
</a>
<a href="{{ route('face.index', ['status' => 'unregistered']) }}"
class="bg-white rounded-xl border border-slate-200 p-4 hover:shadow-md transition-all {{ $status === 'unregistered' ? 'ring-2 ring-slate-400' : '' }}">
<div class="flex items-center gap-3">
<div class="w-10 h-10 rounded-full bg-slate-100 flex items-center justify-center">
<svg class="w-5 h-5 text-slate-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.364 18.364A9 9 0 005.636 5.636m12.728 12.728A9 9 0 015.636 5.636m12.728 12.728L5.636 5.636"></path>
</svg>
</div>
<div>
<div class="text-2xl font-extrabold text-slate-800">{{ $stats['unregistered'] }}</div>
<div class="text-xs font-semibold text-slate-500">Belum Daftar</div>
</div>
</div>
</a>
</div>
<div class="bg-white rounded-xl shadow-sm border border-slate-200 overflow-hidden">
<div class="p-4 border-b border-slate-100 bg-slate-50/50">
<form action="{{ route('face.index') }}" method="GET" class="flex flex-wrap gap-4 items-end">
<div class="w-full md:w-48">
<x-select label="Status" name="status" onchange="this.form.submit()" class="!mb-0">
<option value="">Semua (Terdaftar)</option>
<option value="pending" {{ $status === 'pending' ? 'selected' : '' }}>Menunggu Verifikasi</option>
<option value="approved" {{ $status === 'approved' ? 'selected' : '' }}>Terverifikasi</option>
<option value="rejected" {{ $status === 'rejected' ? 'selected' : '' }}>Ditolak</option>
<option value="unregistered" {{ $status === 'unregistered' ? 'selected' : '' }}>Belum Registrasi</option>
</x-select>
</div>
<div class="flex-1 min-w-[200px]">
<x-input type="text" name="search" label="Cari Pegawai" value="{{ request('search') }}" placeholder="Nama/NIK..."
class="!mb-0" />
</div>
<div>
<x-button type="submit" variant="secondary" class="h-[44px]">
Filter
</x-button>
</div>
@if($status || request('search'))
<div>
<a href="{{ route('face.index') }}" class="inline-flex items-center h-[44px] px-4 text-sm font-medium text-slate-500 hover:text-slate-800 transition">
<svg class="w-4 h-4 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path></svg>
Reset Filter
</a>
</div>
@endif
</form>
</div>
<x-table>
<x-slot:header>
<th class="px-6 py-5 text-xs font-bold text-slate-500 uppercase text-left">Karyawan</th>
<th class="px-6 py-5 text-xs font-bold text-slate-500 uppercase text-left">Divisi / Jabatan</th>
<th class="px-6 py-5 text-xs font-bold text-slate-500 uppercase text-center">Preview Foto</th>
<th class="px-6 py-5 text-xs font-bold text-slate-500 uppercase text-center">Status</th>
<th class="px-6 py-5 text-xs font-bold text-slate-500 uppercase text-center">Aksi</th>
</x-slot:header>
@forelse ($users as $user)
@php
$dw = $user->dataWajah;
$faceStatus = 'unregistered';
if ($dw) {
if ($dw->is_verified == StatusVerifikasiWajah::PENDING) $faceStatus = 'pending';
elseif ($dw->is_verified == StatusVerifikasiWajah::APPROVED) $faceStatus = 'approved';
elseif ($dw->is_verified == StatusVerifikasiWajah::REJECTED) $faceStatus = 'rejected';
}
@endphp
<tr class="hover:bg-slate-50 transition-colors">
<td class="px-6 py-4">
<div class="flex items-center">
@if($user->foto)
<img class="h-10 w-10 rounded-full object-cover mr-3"
src="{{ asset('storage/' . $user->foto) }}" alt="">
@else
<x-avatar :name="$user->nama_lengkap" class="mr-3" />
@endif
<div>
<div class="text-sm font-medium text-slate-900">{{ $user->nama_lengkap }}</div>
<div class="text-xs text-slate-500">{{ $user->nik ?? '-' }} {{ $user->email }}</div>
</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-slate-900">{{ $user->divisi->nama_divisi ?? '-' }}</div>
<div class="text-xs text-slate-500">{{ $user->jabatan->nama_jabatan ?? '-' }}</div>
</td>
<td class="px-6 py-4">
@if($faceStatus !== 'unregistered')
<div class="flex items-center justify-center gap-2">
@php
$poses = ['depan' => 'Depan', 'kanan' => 'Kanan', 'kiri' => 'Kiri', 'bawah' => 'Bawah'];
@endphp
@foreach($poses as $poseKey => $poseLabel)
@if(isset($user->face_photos[$poseKey]))
<div class="relative group cursor-pointer" onclick="openFacePreview('{{ route('face.photo', [$user->id, $poseKey]) }}', '{{ $user->nama_lengkap }}', '{{ $poseLabel }}')">
<img src="{{ route('face.photo', [$user->id, $poseKey]) }}"
class="w-12 h-12 rounded-lg object-cover border-2 border-slate-200 group-hover:border-primary transition-colors shadow-sm">
<span class="absolute -bottom-1 left-1/2 -translate-x-1/2 text-[9px] font-bold bg-slate-800 text-white px-1.5 py-0.5 rounded-full leading-none whitespace-nowrap">{{ $poseLabel }}</span>
</div>
@else
<div class="w-12 h-12 rounded-lg bg-slate-100 border-2 border-dashed border-slate-300 flex items-center justify-center relative">
<svg class="w-4 h-4 text-slate-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
</svg>
<span class="absolute -bottom-1 left-1/2 -translate-x-1/2 text-[9px] font-bold bg-slate-400 text-white px-1.5 py-0.5 rounded-full leading-none whitespace-nowrap">{{ $poseLabel }}</span>
</div>
@endif
@endforeach
</div>
@else
<div class="text-center text-xs text-slate-400 italic">Belum ada foto</div>
@endif
</td>
<td class="px-6 py-4 whitespace-nowrap text-center">
@if($faceStatus === 'pending')
<span class="inline-flex items-center px-2.5 py-1 rounded-full text-xs font-bold bg-amber-100 text-amber-800">
<span class="w-1.5 h-1.5 rounded-full bg-amber-500 mr-1.5 animate-pulse"></span>
Menunggu Verifikasi
</span>
@elseif($faceStatus === 'approved')
<span class="inline-flex items-center px-2.5 py-1 rounded-full text-xs font-bold bg-emerald-100 text-emerald-800">
<svg class="w-3 h-3 mr-1" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"></path></svg>
Terverifikasi
</span>
@elseif($faceStatus === 'rejected')
<span class="inline-flex items-center px-2.5 py-1 rounded-full text-xs font-bold bg-red-100 text-red-800">
<svg class="w-3 h-3 mr-1" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
Ditolak
</span>
@else
<span class="inline-flex items-center px-2.5 py-1 rounded-full text-xs font-bold bg-slate-100 text-slate-500">
Belum Registrasi
</span>
@endif
</td>
<td class="px-6 py-4 whitespace-nowrap text-center text-sm font-medium">
<div class="flex justify-center gap-2">
@if($faceStatus === 'pending')
<form id="approve-form-{{ $user->id }}" action="{{ route('face.approve', $user->id) }}"
method="POST" class="hidden">
@csrf
@method('PUT')
</form>
<button
onclick="confirmAction(event, 'approve-form-{{ $user->id }}', 'Apakah Anda yakin wajah ini sesuai dengan karyawan tersebut?', '#16a34a', 'Ya, Terima!')"
class="inline-flex items-center px-3 py-1.5 border border-transparent text-xs font-medium rounded-lg text-white bg-green-600 hover:bg-green-700 transition-colors shadow-sm"
title="Terima Wajah">
<svg class="w-4 h-4 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
Terima
</button>
<form id="reject-form-{{ $user->id }}" action="{{ route('face.reject', $user->id) }}"
method="POST" class="hidden">
@csrf
@method('DELETE')
</form>
<button
onclick="confirmAction(event, 'reject-form-{{ $user->id }}', 'Data wajah akan dihapus dan karyawan harus scan ulang. Lanjutkan?', '#dc2626', 'Ya, Tolak!')"
class="inline-flex items-center px-3 py-1.5 border border-transparent text-xs font-medium rounded-lg text-white bg-red-600 hover:bg-red-700 transition-colors shadow-sm"
title="Tolak / Reset">
<svg class="w-4 h-4 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
</svg>
Tolak
</button>
@elseif($faceStatus === 'approved')
<form id="reset-form-{{ $user->id }}" action="{{ route('face.reset', $user->id) }}"
method="POST" class="hidden">
@csrf
@method('DELETE')
</form>
<button
onclick="confirmAction(event, 'reset-form-{{ $user->id }}', 'Data wajah akan dihapus dan karyawan harus melakukan registrasi ulang. Lanjutkan?', '#f59e0b', 'Ya, Reset!')"
class="inline-flex items-center px-3 py-1.5 border border-amber-200 text-xs font-medium rounded-lg text-amber-700 bg-amber-50 hover:bg-amber-100 transition-colors shadow-sm"
title="Reset Face ID">
<svg class="w-4 h-4 mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"></path>
</svg>
Reset
</button>
@else
<span class="text-xs text-slate-400 italic"></span>
@endif
</div>
</td>
</tr>
@empty
<x-empty-state colspan="5" message="Tidak ada data karyawan yang sesuai filter." />
@endforelse
</x-table>
</div>
</div>
<div id="facePreviewOverlay" class="fixed inset-0 z-50 hidden items-center justify-center bg-black/60 backdrop-blur-sm" onclick="closeFacePreview()">
<div class="relative max-w-lg w-full mx-4" onclick="event.stopPropagation()">
<div class="bg-white rounded-2xl shadow-2xl overflow-hidden">
<div class="flex items-center justify-between px-5 py-3 border-b border-slate-100">
<div>
<h3 class="font-bold text-slate-800 text-sm" id="previewNama">Nama</h3>
<p class="text-xs text-slate-500" id="previewPose">Pose</p>
</div>
<button onclick="closeFacePreview()" class="p-1.5 hover:bg-slate-100 rounded-lg transition">
<svg class="w-5 h-5 text-slate-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
</svg>
</button>
</div>
<div class="p-4 bg-slate-50">
<img id="previewImage" src="" class="w-full rounded-xl shadow-sm border border-slate-200">
</div>
</div>
</div>
</div>
@endsection
@section('script')
<script>
function openFacePreview(src, nama, pose) {
document.getElementById('previewImage').src = src;
document.getElementById('previewNama').innerText = nama;
document.getElementById('previewPose').innerText = 'Pose: ' + pose;
const overlay = document.getElementById('facePreviewOverlay');
overlay.classList.remove('hidden');
overlay.classList.add('flex');
}
function closeFacePreview() {
const overlay = document.getElementById('facePreviewOverlay');
overlay.classList.add('hidden');
overlay.classList.remove('flex');
}
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') closeFacePreview();
});
</script>
@endsection