forked from livewire/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
traits.blade.php
executable file
·126 lines (103 loc) · 2.36 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
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 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