MIF_E31231070/resources/views/admin/data_user.blade.php

791 lines
23 KiB
PHP

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data User - Carani Estate</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary-blue: #7AB2D3;
--primary-blue-rgb: 122, 178, 211;
--dark-blue: #1E3A5F;
--light-blue: #e6f2f8;
--sidebar-width-collapsed: 80px; /* Lebar saat collapse */
--sidebar-width-expanded: 250px; /* Lebar saat expand */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f8fafc;
display: flex;
height: 100vh;
overflow: hidden;
}
/* Sidebar Styles */
.sidebar {
width: var(--sidebar-width-collapsed); /* Default collapsed */
background: linear-gradient(135deg, var(--dark-blue) 0%, #1E3A5F 100%);
color: white;
display: flex;
flex-direction: column;
position: fixed;
height: 100vh;
z-index: 100;
box-shadow: 5px 0 20px rgba(0,0,0,0.1);
transition: width 0.3s ease;
overflow: hidden;
}
/* Expand sidebar saat hover */
.sidebar:hover {
width: var(--sidebar-width-expanded);
}
.sidebar-header {
padding: 25px 20px;
border-bottom: 1px solid rgba(255,255,255,0.1);
display: flex;
align-items: center;
gap: 15px;
white-space: nowrap;
overflow: hidden;
}
.logo {
width: 40px; /* Lebih kecil saat collapse */
height: 40px;
background: white;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
flex-shrink: 0; /* Mencegah logo mengecil */
}
.logo i {
font-size: 20px; /* Lebih kecil saat collapse */
color: var(--dark-blue);
}
.company-name {
font-weight: 700;
font-size: 0.85rem;
line-height: 1.2;
text-shadow: 0 1px 2px rgba(0,0,0,0.3);
opacity: 0; /* Sembunyikan text saat collapse */
transition: opacity 0.3s ease;
}
/* Tampilkan company name saat hover */
.sidebar:hover .company-name {
opacity: 1;
}
.nav-menu {
padding: 25px 0;
flex-grow: 1;
overflow-y: auto;
}
.nav-menu a {
text-decoration: none;
color: inherit;
display: block;
}
.nav-item {
padding: 15px 20px; /* Padding lebih kecil */
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 15px;
border-left: 4px solid transparent;
white-space: nowrap;
overflow: hidden;
}
.nav-item:hover {
background: rgba(255,255,255,0.08);
border-left-color: var(--primary-blue);
}
.nav-item.active {
background: rgba(255,255,255,0.1);
border-left-color: var(--primary-blue);
}
.nav-item i {
font-size: 18px;
width: 24px;
text-align: center;
flex-shrink: 0; /* Mencegah icon mengecil */
}
.nav-item span {
font-weight: 500;
font-size: 0.95rem;
opacity: 0; /* Sembunyikan text nav saat collapse */
transition: opacity 0.3s ease;
display: inline-block;
}
/* Tampilkan text nav saat hover */
.sidebar:hover .nav-item span {
opacity: 1;
}
.logout-btn {
padding: 15px 20px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 15px;
border-top: 1px solid rgba(255,255,255,0.1);
margin-top: auto;
white-space: nowrap;
overflow: hidden;
}
.logout-btn:hover {
background: rgba(255,255,255,0.08);
}
.logout-btn i {
font-size: 18px;
width: 24px;
text-align: center;
flex-shrink: 0;
}
.logout-btn span {
opacity: 0; /* Sembunyikan text logout saat collapse */
transition: opacity 0.3s ease;
}
/* Tampilkan text logout saat hover */
.sidebar:hover .logout-btn span {
opacity: 1;
}
/* Main Content Styles */
.main-content {
flex: 1;
margin-left: var(--sidebar-width-collapsed); /* Sesuaikan dengan collapsed width */
margin-right: 20px;
overflow-y: auto;
padding: 20px;
background: #f8fafc;
transition: margin-left 0.3s ease;
}
/* Expand main content saat sidebar hover */
.sidebar:hover + .main-content {
margin-left: var(--sidebar-width-expanded);
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
margin-bottom: 25px;
}
.page-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a365d;
}
.search-bar {
display: flex;
align-items: center;
background: #f1f5f9;
border-radius: 8px;
padding: 8px 15px;
width: 300px;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.9),0 6px 14px rgba(0,0,0,0.08);
border: 1px solid #d0d0d0;
}
.search-bar input {
border: none;
background: transparent;
outline: none;
padding: 5px;
width: 100%;
font-size: 0.95rem;
}
.search-bar i {
color: #64748b;
margin-right: 10px;
}
.user-profile {
display: flex;
align-items: center;
gap: 15px;
cursor: pointer;
}
.avatar {
width: 40px;
height: 40px;
background: var(--primary-blue);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: white;
font-size: 18px;
}
.user-info {
text-align: right;
}
.user-name {
font-weight: 600;
color: #1a365d;
}
.user-role {
font-size: 0.85rem;
color: #64748b;
}
/* Data Tables */
.data-table-container {
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
overflow: hidden;
}
.table-header {
padding: 20px;
background: #f8fafc;
border-bottom: 1px solid #e2e8f0;
display: flex;
justify-content: space-between;
align-items: center;
}
.table-title {
font-size: 1.1rem;
font-weight: 700;
color: #1a365d;
}
.table-actions {
display: flex;
gap: 10px;
}
.btn-action {
padding: 8px 15px;
border-radius: 8px;
font-size: 0.9rem;
font-weight: 500;
border: none;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
}
.btn-primary {
background: var(--primary-blue);
color: white;
}
.btn-primary:hover {
background: #6aa5c6;
}
.btn-secondary {
background: #e2e8f0;
color: #4a5568;
}
.btn-secondary:hover {
background: #cbd5e0;
}
.table-responsive {
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 15px;
text-align: left;
border-bottom: 1px solid #e2e8f0;
}
th {
background: #f8fafc;
font-weight: 600;
color: #1a365d;
font-size: 0.95rem;
position: sticky;
top: 0;
z-index: 10;
}
tr:hover {
background: #f1f5f9;
}
.role-badge {
padding: 5px 12px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
}
.role-admin {
background: #dbeafe;
color: #2563eb;
}
.role-user {
background: #d1fae5;
color: #059669;
}
.action-btn {
padding: 6px 12px;
border-radius: 6px;
font-size: 0.85rem;
font-weight: 500;
border: none;
cursor: pointer;
transition: all 0.3s ease;
margin-right: 5px;
}
.btn-edit {
background: #3b82f6;
color: white;
text-decoration: none;
}
.btn-edit:hover {
background: #2563eb;
}
.btn-delete {
background: #ef4444;
color: white;
}
.btn-delete:hover {
background: #dc2626;
}
.btn-view {
background: #6b7280;
color: white;
}
.btn-view:hover {
background: #4b5563;
}
.icon-btn {
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #f1f5f9;
color: #64748b;
cursor: pointer;
transition: all 0.3s ease;
}
.icon-btn:hover {
background: #e2e8f0;
color: #1a365d;
}
/* Responsive Design */
@media (max-width: 1200px) {
.table-actions {
flex-direction: column;
gap: 8px;
}
.search-bar {
width: 250px;
}
}
@media (max-width: 992px) {
.sidebar {
width: 80px;
}
.sidebar-header {
justify-content: center;
padding: 20px;
}
.company-name {
display: none;
}
.nav-item span {
display: none;
}
.nav-item {
justify-content: center;
padding: 15px;
}
.logout-btn {
justify-content: center;
padding: 15px;
}
.main-content {
margin-left: 80px;
}
.header {
flex-direction: column;
gap: 15px;
}
.search-bar {
width: 100%;
}
.page-title {
font-size: 1.3rem;
}
th, td {
padding: 12px 10px;
font-size: 0.85rem;
}
}
@media (max-width: 768px) {
.sidebar {
width: 60px;
}
.sidebar-header {
padding: 15px;
}
.main-content {
margin-left: 60px;
}
.data-table-container {
margin-bottom: 20px;
}
.table-header {
padding: 15px;
}
.table-title {
font-size: 1rem;
}
.btn-action {
padding: 6px 10px;
font-size: 0.8rem;
}
.action-btn {
padding: 4px 8px;
font-size: 0.75rem;
}
}
@media (max-width: 480px) {
.sidebar {
width: 50px;
}
.main-content {
margin-left: 50px;
}
.page-title {
font-size: 1.1rem;
}
.table-header {
padding: 12px 10px;
}
.table-title {
font-size: 0.95rem;
}
th, td {
padding: 10px 8px;
font-size: 0.8rem;
}
.action-btn {
padding: 3px 6px;
font-size: 0.7rem;
}
.role-badge {
padding: 3px 8px;
font-size: 0.75rem;
}
}
</style>
</head>
<body>
<!-- Sidebar -->
<div class="sidebar">
<div class="sidebar-header">
<div class="logo">
<i class="fas fa-home"></i>
</div>
<div class="company-name">PT. Properti Harmoni</div>
</div>
<div class="nav-menu" id="navMenu">
<a href="{{ route('admin.welcome') }}"
class="nav-item {{ request()->routeIs('admin.welcome') ? 'active' : '' }}">
<i class="fas fa-tachometer-alt"></i>
<span>Dashboard</span>
</a>
<a href="{{ route('admin.data_user') }}"
class="nav-item {{ request()->routeIs('admin.data_user') ? 'active' : '' }}">
<i class="fas fa-users"></i>
<span>Data User</span>
</a>
<a href="{{ route('admin.data_rumah') }}"
class="nav-item {{ request()->routeIs('admin.data_rumah') ? 'active' : '' }}">
<i class="fas fa-house"></i>
<span>Data Rumah</span>
</a>
<a href="{{ route('admin.halaman_verifikasi') }}"
class="nav-item {{ request()->routeIs('admin.halaman_verifikasi') ? 'active' : '' }}">
<i class="fas fa-check-circle"></i>
<span>Verifikasi Data</span>
</a>
<a href="{{ route('admin.halaman_chatbot') }}"
class="nav-item {{ request()->routeIs('admin.halaman_chatbot') ? 'active' : '' }}">
<i class="fas fa-comments"></i>
<span>Chatbot</span>
</a>
<div class="logout-btn">
<i class="fas fa-sign-out-alt"></i>
<span>Logout</span>
</div>
</div>
</div>
<!-- Main Content -->
<div class="main-content">
<!-- Header -->
<div class="header">
<h1 class="page-title">Data User</h1>
<div class="user-profile">
<div class="avatar">A</div>
<div class="user-info">
<div class="user-name">Admin Utama</div>
<div class="user-role">Administrator</div>
</div>
</div>
</div>
<form method="GET" action="{{ route('admin.data_user') }}" id="searchForm">
<div class="search-bar">
<i class="fas fa-search"></i>
<input type="text" name="search"
placeholder="Cari data user..."
value="{{ request('search') }}"
oninput="document.getElementById('searchForm').submit()">
</div>
</form>
<!-- Data User Table -->
<div class="data-table-container">
<div class="table-header">
<div class="table-title">Daftar Pengguna Sistem</div>
<div class="table-actions">
<a href="{{ route('admin.tambah-datauser') }}" class="btn-action btn-primary">
<i class="fas fa-plus"></i> Tambah User
</a>
</div>
</div>
@if(session('success'))
<div style="background:#d1fae5; color:#059669; padding:12px;
border-radius:8px; margin-bottom:15px;">
<i class="fas fa-check-circle me-2"></i>{{ session('success') }}
</div>
@endif
<div class="table-responsive">
<table>
<thead>
<tr>
<th>No</th>
<th>Nama User</th>
<th>No HP</th>
<th>Email</th>
<th>Role</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@forelse($users as $user)
<tr>
<td>
@if($isPaginated)
{{ ($users->currentPage() - 1) * $users->perPage() + $loop->iteration }}
@else
{{ $loop->iteration }}
@endif
</td>
<td>{{ $user->nama_user }}</td>
<td>{{ $user->no_hp }}</td>
<td>{{ $user->email_user }}</td>
<td>
@if($user->role_user == 'admin')
<span class="role-badge role-admin">Admin</span>
@else
<span class="role-badge role-user">Pengguna</span>
@endif
</td>
<td>
<a href="{{ route('admin.edit_user', $user->id_user) }}" class="action-btn btn-edit">
<i class="fas fa-edit"></i> Edit
</a>
<form method="POST"
action="{{ route('admin.hapus_user', $user->id_user) }}"
style="display:inline;"
onsubmit="return confirm('Yakin hapus user {{ $user->nama_user }}?')">
@csrf
@method('DELETE')
<button type="submit" class="action-btn btn-delete">
<i class="fas fa-trash"></i> Hapus
</button>
</form>
</td>
</tr>
@empty
<tr>
<td colspan="6" style="text-align:center; padding:30px; color:#64748b;">
Belum ada user
</td>
</tr>
@endforelse
</tbody>
</table>
<div style="display:flex; justify-content:center; margin-top:20px;">
@if($isPaginated)
{{ $users->links() }}
@endif
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Action button functionality
document.querySelectorAll('.action-btn').forEach(btn => {
btn.addEventListener('click', function() {
const action = this.querySelector('i').className;
const row = this.closest('tr');
const userName = row.querySelector('td:nth-child(2)').textContent;
if (action.includes('fa-edit')) {
alert(`Mengedit data user: ${userName}`);
} else if (action.includes('fa-trash')) {
if (confirm(`Apakah Anda yakin ingin menghapus user: ${userName}?`)) {
row.remove();
alert(`User ${userName} berhasil dihapus.`);
}
}
});
});
// Add user button
document.querySelector('.btn-primary').addEventListener('click', function() {
alert('Formulir tambah user akan ditampilkan...');
});
// Export button
document.querySelector('.btn-secondary').addEventListener('click', function() {
alert('Data user sedang diproses untuk export ke Excel...');
});
// Search functionality
});
document.addEventListener('DOMContentLoaded', function() {
const sidebar = document.getElementById('sidebar');
const mainContent = document.getElementById('mainContent');
const isCollapsed = localStorage.getItem('sidebarCollapsed') === 'true';
if (isCollapsed) {
sidebar.classList.add('collapsed');
mainContent.classList.add('expanded');
}
// Hover effect untuk sidebar (opsional - untuk expand temporary)
sidebar.addEventListener('mouseenter', function() {
if (this.classList.contains('collapsed')) {
this.style.width = 'var(--sidebar-width-expanded)';
}
});
sidebar.addEventListener('mouseleave', function() {
if (this.classList.contains('collapsed')) {
this.style.width = 'var(--sidebar-width-collapsed)';
}
});
});
</script>
</body>
</html>