table component added
This commit is contained in:
parent
24a63e924b
commit
817dac463c
|
@ -8,62 +8,56 @@ class Table extends Component
|
||||||
{
|
{
|
||||||
public $columns = [];
|
public $columns = [];
|
||||||
public $rows = [];
|
public $rows = [];
|
||||||
public $search = '';
|
public $selected = []; // Holds the selected row IDs
|
||||||
public $sortField = '';
|
public $selectAll = false; // To track if 'Select All' is checked
|
||||||
public $sortDirection = 'asc';
|
public $hasActions = false;
|
||||||
public $currentPage = 1;
|
public $isViewPage = false;
|
||||||
public $perPage = 10;
|
|
||||||
public $checkboxes = false;
|
|
||||||
public $showActions = false;
|
|
||||||
public $actions = [];
|
|
||||||
public $addButtonLabel = '';
|
|
||||||
public $searchable = false; // Add this property
|
|
||||||
|
|
||||||
// Sort the table by the given field
|
// Add new methods for handling actions
|
||||||
public function sortBy($field)
|
public function editRow($rowId)
|
||||||
{
|
{
|
||||||
if ($this->sortField === $field) {
|
// Logic for editing a row (e.g., redirect to the edit page or open modal)
|
||||||
$this->sortDirection = $this->sortDirection === 'asc' ? 'desc' : 'asc';
|
session()->flash('message', 'Edit action for user ID: ' . $rowId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteRow($rowId)
|
||||||
|
{
|
||||||
|
// Logic for deleting a row (e.g., delete from database)
|
||||||
|
session()->flash('message', 'Delete action for user ID: ' . $rowId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function viewRow($rowId)
|
||||||
|
{
|
||||||
|
// Logic for viewing a row (e.g., redirect to the view page or open a modal)
|
||||||
|
session()->flash('message', 'View action for user ID: ' . $rowId);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public function selectAllRows()
|
||||||
|
{
|
||||||
|
// Convert rows to a collection if it is an array, then pluck the 'id'
|
||||||
|
if ($this->selectAll) {
|
||||||
|
$this->selected = collect($this->rows)->pluck('id')->toArray();
|
||||||
} else {
|
} else {
|
||||||
$this->sortField = $field;
|
$this->selected = [];
|
||||||
$this->sortDirection = 'asc';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate total pages for pagination
|
public function selectRow($rowId)
|
||||||
public function calculateTotalPages()
|
|
||||||
{
|
{
|
||||||
return ceil(count($this->rows) / $this->perPage);
|
if (in_array($rowId, $this->selected)) {
|
||||||
}
|
$this->selected = array_diff($this->selected, [$rowId]);
|
||||||
|
} else {
|
||||||
// Get the paginated rows for the current page
|
$this->selected[] = $rowId;
|
||||||
public function getPaginatedRowsProperty()
|
|
||||||
{
|
|
||||||
$sorted = collect($this->rows);
|
|
||||||
|
|
||||||
if ($this->sortField) {
|
|
||||||
$sorted = $this->sortDirection === 'asc'
|
|
||||||
? $sorted->sortBy($this->sortField)
|
|
||||||
: $sorted->sortByDesc($this->sortField);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $sorted
|
|
||||||
->slice(($this->currentPage - 1) * $this->perPage, $this->perPage)
|
|
||||||
->values();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Set the current page for pagination
|
|
||||||
public function setPage($page)
|
|
||||||
{
|
|
||||||
$this->currentPage = max(1, min($this->calculateTotalPages(), $page));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function render()
|
public function render()
|
||||||
{
|
{
|
||||||
return view('livewire.components.table', [
|
return view('livewire.components.table');
|
||||||
'paginatedRows' => $this->paginatedRows, // 👈 explicitly pass computed property
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,33 @@ namespace App\Livewire;
|
||||||
use Livewire\Component;
|
use Livewire\Component;
|
||||||
class Notification extends Component
|
class Notification extends Component
|
||||||
{
|
{
|
||||||
|
public $search = '';
|
||||||
|
public $notifs = [];
|
||||||
|
|
||||||
|
// protected $queryString = ['search'];
|
||||||
|
|
||||||
|
// // Reset the current page when search is updated
|
||||||
|
// public function updatingSearch()
|
||||||
|
// {
|
||||||
|
// $this->search = $this->search;
|
||||||
|
// }
|
||||||
|
|
||||||
|
public function mount()
|
||||||
|
{
|
||||||
|
$this->loadNotifications();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get filtered users based on the search input
|
||||||
|
public function loadNotifications()
|
||||||
|
{
|
||||||
|
$this->notifs = collect(json_decode(file_get_contents(storage_path('app/notifs.json')), true));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public function render()
|
public function render()
|
||||||
{
|
{
|
||||||
return view('livewire.notification.notification');
|
return view('livewire.notification.notification', [
|
||||||
|
'notification' => $this->notifs, // Pass filtered notifs here
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,35 +9,27 @@ class UserManagement extends Component
|
||||||
public $search = '';
|
public $search = '';
|
||||||
public $users = [];
|
public $users = [];
|
||||||
|
|
||||||
protected $queryString = ['search'];
|
// protected $queryString = ['search'];
|
||||||
|
|
||||||
// Reset the current page when search is updated
|
// // Reset the current page when search is updated
|
||||||
public function updatingSearch()
|
// public function updatingSearch()
|
||||||
{
|
// {
|
||||||
$this->search = $this->search;
|
// $this->search = $this->search;
|
||||||
}
|
// }
|
||||||
|
|
||||||
public function mount()
|
public function mount()
|
||||||
{
|
{
|
||||||
$this->loadUsers();
|
$this->loadUsers();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Get filtered users based on the search input
|
// Get filtered users based on the search input
|
||||||
public function loadUsers()
|
public function loadUsers()
|
||||||
{
|
{
|
||||||
$users = collect(json_decode(file_get_contents(storage_path('app/users.json')), true));
|
$this->users = collect(json_decode(file_get_contents(storage_path('app/users.json')), true));
|
||||||
|
|
||||||
if ($this->search) {
|
|
||||||
$this->users = $users->filter(function ($user) {
|
|
||||||
return str_contains(strtolower($user['username']), strtolower($this->search)) ||
|
|
||||||
str_contains(strtolower($user['first_name']), strtolower($this->search)) ||
|
|
||||||
str_contains(strtolower($user['last_name']), strtolower($this->search)) ||
|
|
||||||
str_contains(strtolower($user['email']), strtolower($this->search));
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
$this->users = $users;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function render()
|
public function render()
|
||||||
{
|
{
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="icon" href="{{ asset('assets/favicon_unioil.ico') }}" type="image/x-icon">
|
<link rel="icon" href="{{ asset('assets/favicon_unioil.ico') }}" type="image/x-icon">
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
|
||||||
<title>Unioil</title>
|
<title>Unioil</title>
|
||||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||||
@livewireStyles <!-- Add Livewire Styles -->
|
@livewireStyles <!-- Add Livewire Styles -->
|
||||||
|
|
|
@ -1,112 +1,72 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="p-4 bg-white rounded shadow">
|
<div class="p-4 bg-white rounded-lg shadow-md">
|
||||||
<div class="flex justify-between items-center mb-4">
|
<table class="table-auto w-full">
|
||||||
@if ($searchable)
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
placeholder="Search"
|
|
||||||
class="border p-2 rounded w-1/3"
|
|
||||||
wire:model.debounce.300ms="search"
|
|
||||||
>
|
|
||||||
@endif
|
|
||||||
@if ($addButtonLabel)
|
|
||||||
<button class="bg-orange-500 text-white px-4 py-2 rounded hover:bg-orange-600">
|
|
||||||
{{ $addButtonLabel }}
|
|
||||||
</button>
|
|
||||||
@endif
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<table class="min-w-full text-sm text-left border border-gray-200">
|
|
||||||
<thead class="bg-gray-100">
|
<thead class="bg-gray-100">
|
||||||
<tr>
|
<tr>
|
||||||
@if ($checkboxes)
|
<!-- Select All Checkbox -->
|
||||||
<th class="p-2"><input type="checkbox" /></th>
|
<th class="px-4 py-2 text-left">
|
||||||
@endif
|
<input type="checkbox" wire:model="selectAll" wire:change="selectAllRows" class="cursor-pointer">
|
||||||
|
</th>
|
||||||
|
|
||||||
@foreach ($columns as $col)
|
@foreach ($columns as $column)
|
||||||
<th
|
<th class="px-4 py-2 text-left cursor-pointer">
|
||||||
class="p-2 cursor-pointer select-none"
|
{{ $column['label'] }}
|
||||||
wire:click="sortBy('{{ $col['field'] }}')"
|
|
||||||
>
|
|
||||||
<div class="flex items-center space-x-1">
|
|
||||||
<span>{{ $col['label'] }}</span>
|
|
||||||
|
|
||||||
{{-- Sort Icons --}}
|
|
||||||
@if ($sortField === $col['field'])
|
|
||||||
@if ($sortDirection === 'asc')
|
|
||||||
{{-- Ascending Icon --}}
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 text-orange-500" fill="currentColor" viewBox="0 0 20 20">
|
|
||||||
<path fill-rule="evenodd" d="M10 3l4 6H6l4-6z" clip-rule="evenodd" />
|
|
||||||
</svg>
|
|
||||||
@else
|
|
||||||
{{-- Descending Icon --}}
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 text-orange-500" fill="currentColor" viewBox="0 0 20 20">
|
|
||||||
<path fill-rule="evenodd" d="M10 17l-4-6h8l-4 6z" clip-rule="evenodd" />
|
|
||||||
</svg>
|
|
||||||
@endif
|
|
||||||
@else
|
|
||||||
{{-- Neutral Sort Icon --}}
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 text-gray-400" fill="currentColor" viewBox="0 0 20 20">
|
|
||||||
<path fill-rule="evenodd" d="M6 7h8l-4-4-4 4zm0 6h8l-4 4-4-4z" clip-rule="evenodd" />
|
|
||||||
</svg>
|
|
||||||
@endif
|
|
||||||
</div>
|
|
||||||
</th>
|
</th>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
{{-- Status Column --}}
|
@if ($hasActions) <!-- Show the Actions column only if hasActions is true -->
|
||||||
|
<th class="px-4 py-2 text-left">Actions</th>
|
||||||
{{-- Actions Column --}}
|
|
||||||
|
|
||||||
|
|
||||||
@if ($showActions)
|
|
||||||
<th class="p-2">Action</th>
|
|
||||||
@endif
|
@endif
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@forelse ($paginatedRows as $row)
|
@forelse ($rows as $row)
|
||||||
<tr class="hover:bg-gray-50">
|
<tr class="hover:bg-gray-50">
|
||||||
@if ($checkboxes)
|
<!-- Row Checkbox -->
|
||||||
<td class="p-2"><input type="checkbox" /></td>
|
<td class="px-4 py-2">
|
||||||
@endif
|
<input type="checkbox" wire:click="selectRow('{{ $row['id'] }}')"
|
||||||
|
@if(in_array($row['id'], $selected)) checked @endif class="cursor-pointer">
|
||||||
|
</td>
|
||||||
|
|
||||||
@foreach ($columns as $col)
|
@foreach ($columns as $column)
|
||||||
<td class="p-2 {{ $col['field'] === 'status' ? 'text-blue-500' : '' }}">
|
<td class="px-4 py-2">
|
||||||
{{ $row[$col['field']] ?? '-' }}
|
{{ $row[$column['field']] ?? '' }}
|
||||||
</td>
|
</td>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
@if ($showActions)
|
@if ($hasActions) <!-- Show action icons only if hasActions is true -->
|
||||||
<td class="p-2 flex space-x-2 text-orange-500">
|
<td class="px-4 py-2 text-center">
|
||||||
@foreach ($actions as $action)
|
@if($isViewPage) <!-- Check if it's the "View" page -->
|
||||||
<button wire:click="{{ $action['method'] }}({{ $row['id'] ?? 'null' }})">
|
<!-- Only Show View Button for View Page -->
|
||||||
{{ $action['icon'] }}
|
<button wire:click="view({{ $row['id'] }})" class="text-green-500 hover:text-green-700">
|
||||||
|
<i class="fas fa-eye"></i> <!-- Font Awesome View Icon -->
|
||||||
</button>
|
</button>
|
||||||
@endforeach
|
@else
|
||||||
|
<!-- Show Edit, View, and Delete Icons for Non-View Pages -->
|
||||||
|
<!-- Edit Icon -->
|
||||||
|
<button wire:click="edit({{ $row['id'] }})" class="text-blue-500 hover:text-blue-700">
|
||||||
|
<i class="fas fa-edit"></i> <!-- Font Awesome Edit Icon -->
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- View Icon (only shown when it's NOT the View page) -->
|
||||||
|
<button wire:click="view({{ $row['id'] }})" class="text-green-500 hover:text-green-700">
|
||||||
|
<i class="fas fa-eye"></i> <!-- Font Awesome View Icon -->
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<!-- Delete Icon -->
|
||||||
|
<button wire:click="delete({{ $row['id'] }})" class="text-red-500 hover:text-red-700">
|
||||||
|
<i class="fas fa-trash-alt"></i> <!-- Font Awesome Delete Icon -->
|
||||||
|
</button>
|
||||||
|
@endif
|
||||||
</td>
|
</td>
|
||||||
@endif
|
@endif
|
||||||
</tr>
|
</tr>
|
||||||
@empty
|
@empty
|
||||||
<tr>
|
<tr>
|
||||||
<td class="p-2 text-center" colspan="{{ count($columns) + ($checkboxes ? 1 : 0) + ($showActions ? 1 : 0) }}">
|
<td colspan="{{ count($columns) + 1 }}" class="text-center p-4">No data available</td>
|
||||||
No data found.
|
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
@endforelse
|
@endforelse
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
{{-- Pagination Controls --}}
|
|
||||||
<div class="mt-4 flex justify-center space-x-2">
|
|
||||||
@for ($page = 1; $page <= $this->calculateTotalPages(); $page++)
|
|
||||||
<button
|
|
||||||
wire:click="setPage({{ $page }})"
|
|
||||||
class="px-3 py-1 border rounded {{ $currentPage === $page ? 'bg-orange-500 text-white' : 'bg-white text-gray-700' }}"
|
|
||||||
>
|
|
||||||
{{ $page }}
|
|
||||||
</button>
|
|
||||||
@endfor
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +1,17 @@
|
||||||
<div>
|
<div>
|
||||||
{{-- Top Nav --}}
|
{{-- Top Nav --}}
|
||||||
@include('livewire.notification.top-nav.notification')
|
@include('livewire.notification.top-nav.notification')
|
||||||
<h1>This is notification page</h1>
|
<livewire:components.table
|
||||||
|
:columns="[
|
||||||
|
['label' => 'Subject', 'field' => 'subject'],
|
||||||
|
['label' => 'Content', 'field' => 'content'],
|
||||||
|
['label' => 'Is Scheduled', 'field' => 'is_scheduled'],
|
||||||
|
['label' => 'Schedule', 'field' => 'schedule'],
|
||||||
|
['label' => 'Expiration', 'field' => 'expiration'],
|
||||||
|
]"
|
||||||
|
:rows="$notifs"
|
||||||
|
:hasActions="false"
|
||||||
|
/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -5,20 +5,12 @@
|
||||||
['label' => 'Username', 'field' => 'username'],
|
['label' => 'Username', 'field' => 'username'],
|
||||||
['label' => 'First Name', 'field' => 'first_name'],
|
['label' => 'First Name', 'field' => 'first_name'],
|
||||||
['label' => 'Last Name', 'field' => 'last_name'],
|
['label' => 'Last Name', 'field' => 'last_name'],
|
||||||
['label' => 'Role', 'field' => 'role'],
|
|
||||||
['label' => 'Email', 'field' => 'email'],
|
['label' => 'Email', 'field' => 'email'],
|
||||||
|
['label' => 'Role', 'field' => 'role'],
|
||||||
['label' => 'Status', 'field' => 'status'],
|
['label' => 'Status', 'field' => 'status'],
|
||||||
]"
|
]"
|
||||||
:rows="$users"
|
:rows="$users"
|
||||||
:searchable="true"
|
:hasActions="true"
|
||||||
:search="$search"
|
:isViewPage="false"
|
||||||
:checkboxes="true"
|
/>
|
||||||
:showActions="true"
|
|
||||||
:actions="[
|
|
||||||
['method' => 'editUser', 'icon' => '✏️'],
|
|
||||||
['method' => 'deleteUser', 'icon' => '🗑️'],
|
|
||||||
['method' => 'scheduleUser', 'icon' => '⏱️'],
|
|
||||||
]"
|
|
||||||
addButtonLabel="Add User"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue