|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Xetaravel\Http\Livewire\Admin\Blog; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Contracts\Database\Query\Builder; |
|
6
|
|
|
use Illuminate\Contracts\View\View; |
|
7
|
|
|
use Illuminate\Pagination\LengthAwarePaginator; |
|
8
|
|
|
use Livewire\Component; |
|
9
|
|
|
use Livewire\WithPagination; |
|
10
|
|
|
use Xetaravel\Http\Livewire\Traits\WithCachedRows; |
|
11
|
|
|
use Xetaravel\Http\Livewire\Traits\WithSorting; |
|
12
|
|
|
use Xetaravel\Http\Livewire\Traits\WithBulkActions; |
|
13
|
|
|
use Xetaravel\Http\Livewire\Traits\WithPerPagePagination; |
|
14
|
|
|
use Xetaravel\Models\Article; |
|
15
|
|
|
|
|
16
|
|
|
class Articles extends Component |
|
17
|
|
|
{ |
|
18
|
|
|
use WithPagination; |
|
|
|
|
|
|
19
|
|
|
use WithSorting; |
|
20
|
|
|
use WithCachedRows; |
|
21
|
|
|
use WithBulkActions; |
|
|
|
|
|
|
22
|
|
|
use WithPerPagePagination; |
|
|
|
|
|
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* The string to search. |
|
26
|
|
|
* |
|
27
|
|
|
* @var string |
|
28
|
|
|
*/ |
|
29
|
|
|
public string $search = ''; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* Used to update in URL the query string. |
|
33
|
|
|
* |
|
34
|
|
|
* @var string[] |
|
35
|
|
|
*/ |
|
36
|
|
|
protected $queryString = [ |
|
37
|
|
|
'sortField' => ['as' => 'f'], |
|
38
|
|
|
'sortDirection' => ['as' => 'd'], |
|
39
|
|
|
'search' => ['except' => '', 'as' => 's'] |
|
40
|
|
|
]; |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* Used to show the delete modal. |
|
44
|
|
|
* |
|
45
|
|
|
* @var bool |
|
46
|
|
|
*/ |
|
47
|
|
|
public bool $showDeleteModal = false; |
|
48
|
|
|
|
|
49
|
|
|
/** |
|
50
|
|
|
* Number of rows displayed on a page. |
|
51
|
|
|
* @var int |
|
52
|
|
|
*/ |
|
53
|
|
|
public int $perPage = 10; |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* The Livewire Component constructor. |
|
57
|
|
|
* |
|
58
|
|
|
* @return void |
|
59
|
|
|
*/ |
|
60
|
|
|
public function mount(): void |
|
61
|
|
|
{ |
|
62
|
|
|
$this->perPage = config('xetaravel.pagination.blog.article_per_page'); |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
/** |
|
66
|
|
|
* Function to render the component. |
|
67
|
|
|
* |
|
68
|
|
|
* @return View |
|
69
|
|
|
*/ |
|
70
|
|
|
public function render() |
|
71
|
|
|
{ |
|
72
|
|
|
return view('livewire.admin.blog.articles', [ |
|
73
|
|
|
'articles' => $this->rows |
|
|
|
|
|
|
74
|
|
|
]); |
|
75
|
|
|
} |
|
76
|
|
|
|
|
77
|
|
|
/** |
|
78
|
|
|
* Create and return the query for the items. |
|
79
|
|
|
* |
|
80
|
|
|
* @return Builder |
|
81
|
|
|
*/ |
|
82
|
|
|
public function getRowsQueryProperty(): Builder |
|
83
|
|
|
{ |
|
84
|
|
|
$query = Article::query() |
|
85
|
|
|
->search('title', $this->search); |
|
86
|
|
|
|
|
87
|
|
|
return $this->applySorting($query); |
|
88
|
|
|
} |
|
89
|
|
|
|
|
90
|
|
|
/** |
|
91
|
|
|
* Build the query or get it from the cache and paginate it. |
|
92
|
|
|
* |
|
93
|
|
|
* @return LengthAwarePaginator |
|
94
|
|
|
*/ |
|
95
|
|
|
public function getRowsProperty(): LengthAwarePaginator |
|
96
|
|
|
{ |
|
97
|
|
|
return $this->cache(function () { |
|
98
|
|
|
return $this->applyPagination($this->rowsQuery); |
|
|
|
|
|
|
99
|
|
|
}); |
|
100
|
|
|
} |
|
101
|
|
|
|
|
102
|
|
|
/** |
|
103
|
|
|
* Display a flash message regarding the action that fire it and the type of the message, then emit an |
|
104
|
|
|
* `alert ` event. |
|
105
|
|
|
* |
|
106
|
|
|
* @param string $action The action that fire the flash message. |
|
107
|
|
|
* @param string $type The type of the message, success or danger. |
|
108
|
|
|
* @param int $deleteCount If set, the number of categories that has been deleted. |
|
109
|
|
|
* |
|
110
|
|
|
* @return void |
|
111
|
|
|
*/ |
|
112
|
|
|
public function fireFlash(string $action, string $type, int $deleteCount = 0) |
|
113
|
|
|
{ |
|
114
|
|
|
switch ($action) { |
|
115
|
|
|
case 'delete': |
|
116
|
|
|
if ($type == 'success') { |
|
117
|
|
|
session()->flash('success', "<b>{$deleteCount}</b> articles has been deleted successfully !"); |
|
118
|
|
|
} else { |
|
119
|
|
|
session()->flash('danger', "An error occurred while deleting the articles !"); |
|
120
|
|
|
} |
|
121
|
|
|
break; |
|
122
|
|
|
} |
|
123
|
|
|
|
|
124
|
|
|
// Emit the alert event to the front so the DIsmiss can trigger the flash message. |
|
125
|
|
|
$this->emit('alert'); |
|
126
|
|
|
} |
|
127
|
|
|
} |
|
128
|
|
|
|