-
Notifications
You must be signed in to change notification settings - Fork 224
/
laravel-echo.blade.php
175 lines (138 loc) · 5.23 KB
/
laravel-echo.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
171
172
173
174
175
* [Introduction](#introduction)
* [Listeners](#listeners)
* [Private & Presence Channels](#private-presence-channels)
## Introduction {#introduction}
Livewire pairs nicely with Laravel Echo to provide real-time functionality on your web-pages using WebSockets.
@component('components.warning')
This feature assumes you have installed Laravel Echo and the `window.Echo` object is globally available. For more info on this, check out the <a href="https://laravel.com/docs/broadcasting#client-side-installation">docs</a>.
@endcomponent
Consider the following Laravel Event:
@component('components.code-component')
@slot('class')
class OrderShipped implements ShouldBroadcast
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public function broadcastOn()
{
return new Channel('orders');
}
}
@endslot
@endcomponent
Let's say you fire this event with Laravel's broadcasting system like this:
@component('components.code', ['lang' => 'php'])
event(new OrderShipped);
@endcomponent
Normally, you would listen for this event in Laravel Echo like so:
@component('components.code', ['lang' => 'js'])
Echo.channel('orders')
.listen('OrderShipped', (e) => {
console.log(e.order.name);
});
@endcomponent
## Listeners {#listeners}
With Livewire all you have to do is register it in your `$listeners` property, with some special syntax to designate that it originates from Echo.
@component('components.code-component')
@slot('class')
class OrderTracker extends Component
{
public $showNewOrderNotification = false;
// Special Syntax: ['echo:{channel},{event}' => '{method}']
protected $listeners = ['echo:orders,OrderShipped' => 'notifyNewOrder'];
public function notifyNewOrder()
{
$this->showNewOrderNotification = true;
}
}
@endslot
@endcomponent
If you have Echo channels with variables in (such as a Order ID) you can use the `getListeners()` function instead of the `$listeners` array.
@component('components.code-component')
@slot('class')
class OrderTracker extends Component
{
public $showNewOrderNotification = false;
public $orderId;
public function getListeners()
{
return [
"echo:orders.{$this->orderId},OrderShipped" => 'notifyNewOrder',
];
}
public function notifyNewOrder()
{
$this->showNewOrderNotification = true;
}
}
@endslot
@endcomponent
@component('components.warning')
<code>getListeners()</code> will only dynamically generate the names of listeners when the component is mounted. Once the listeners are setup, these can't be changed.
@endcomponent
@component('components.warning')
Note that if you're using [Model Broadcasting](https://laravel.com/docs/10.x/broadcasting#model-broadcasting), you need to [prefix the event](https://laravel.com/docs/10.x/broadcasting#listening-for-model-broadcasts) with a '.' so that the right event is listened for, like <code>.MessageCreated</code>.
@endcomponent
Now, Livewire will intercept the received event from Pusher, and act accordingly.
## Private & Presence Channels {#private-presence-channels}
In a similar way to regular public channels, you can also listen to events broadcasted to private and presence channels:
@component('components.warning')
Make sure you have your <a href="https://laravel.com/docs/master/broadcasting#defining-authorization-callbacks">Authentication Callbacks</a> properly defined.
@endcomponent
@component('components.code-component')
@slot('class')
class OrderTracker extends Component
{
public $showNewOrderNotification = false;
public $orderId;
public function mount($orderId)
{
$this->orderId = $orderId;
}
public function getListeners()
{
return [
"echo-private:orders.{$this->orderId},OrderShipped" => 'notifyNewOrder',
// Or:
"echo-presence:orders.{$this->orderId},OrderShipped" => 'notifyNewOrder',
];
}
public function notifyNewOrder()
{
$this->showNewOrderNotification = true;
}
}
@endslot
@endcomponent
This gives you the ability to react to a listen event on those channels with the `OrderShipped` event name.
You can also access the `joining | leaving | here` events of a presence channels with a slight change to the syntax.
@component('components.code-component')
@slot('class')
class OrderTracker extends Component
{
public $showNewOrderNotification = false;
public $orderId;
public function mount($orderId)
{
$this->orderId = $orderId;
}
public function getListeners()
{
return [
// Public Channel
"echo:orders,OrderShipped" => 'notifyNewOrder',
// Private Channel
"echo-private:orders,OrderShipped" => 'notifyNewOrder',
//Presence Channel
"echo-presence:orders,OrderShipped" => 'notifyNewOrder', // Listen
"echo-presence:orders,here" => 'notifyNewOrder', // Here
"echo-presence:orders,joining" => 'notifyNewOrder', // Joining
"echo-presence:orders,leaving" => 'notifyNewOrder', // Leaving
];
}
public function notifyNewOrder()
{
$this->showNewOrderNotification = true;
}
}
@endslot
@endcomponent