-
Notifications
You must be signed in to change notification settings - Fork 224
/
traits.blade.php
executable file
·170 lines (137 loc) · 3.16 KB
/
traits.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
* [Introduction](#introduction)
## Introduction {#introduction}
PHP Traits are a great way to re-use functionality between multiple Livewire components.
For example, you might have multiple "data table" components in your application that all share the same logic surrounding sorting.
Rather than duplicating the following sorting boilerplate in every component:
@component('components.code-component')
@slot('class')
@verbatim
class ShowPosts extends Component
{
public $sortBy = '';
public $sortDirection = 'asc';
public function sortBy($field)
{
$this->sortDirection = $this->sortBy === $field
? $this->reverseSort()
: 'asc';
$this->sortBy = $field;
}
public function reverseSort()
{
return $this->sortDirection === 'asc'
? 'desc'
: 'asc';
}
...
}
@endverbatim
@endslot
@endcomponent
You could instead extract this behavior into a re-usable trait called `WithSorting`:
@component('components.code-component')
@slot('class')
@verbatim
class ShowPosts extends Component
{
use WithSorting;
...
}
@endverbatim
@endslot
@endcomponent
@component('components.code-component')
@slot('class')
@verbatim
trait WithSorting
{
public $sortBy = '';
public $sortDirection = 'asc';
public function sortBy($field)
{
$this->sortDirection = $this->sortBy === $field
? $this->reverseSort()
: 'asc';
$this->sortBy = $field;
}
public function reverseSort()
{
return $this->sortDirection === 'asc'
? 'desc'
: 'asc';
}
}
@endverbatim
@endslot
@endcomponent
Additionally, if you want to use Livewire's lifecycle hooks inside your traits but still be able to use them inside your component, Livewire offers a syntax that allows you to do this:
@component('components.code-component')
@slot('class')
@verbatim
trait WithSorting
{
...
public function bootWithSorting()
{
//
}
public function bootedWithSorting()
{
//
}
public function mountWithSorting()
{
//
}
public function updatingWithSorting($name, $value)
{
//
}
public function updatedWithSorting($name, $value)
{
//
}
public function hydrateWithSorting()
{
//
}
public function dehydrateWithSorting()
{
//
}
public function renderingWithSorting()
{
//
}
public function renderedWithSorting($view)
{
//
}
}
@endverbatim
@endslot
@endcomponent
Livewire offers hooks for query strings as well.
@component('components.code-component')
@slot('class')
@verbatim
trait WithSorting
{
...
protected $queryStringWithSorting = [
'sortBy' => ['except' => 'id'],
'sortDirection' => ['except' => 'asc'],
];
// or as a method
public function queryStringWithSorting()
{
return [
'sortBy' => ['except' => 'id'],
'sortDirection' => ['except' => $this->defaultSortDirection()],
];
}
}
@endverbatim
@endslot
@endcomponent
Note that you are allowed to override any query string in your component class.