Vue 2 integration for the Laravel Echo library.
This Vue plugin injects a Laravel Echo instance into all of your vue instances, allowing for a simple channel subscription on each instance, or using Laravel Echo through this.$echo
.
npm install vue-echo --save
First you'll need to register the plugin and, optionally, initialize the Echo instance.
import VueEcho from 'vue-echo';
Vue.use(VueEcho, {
broadcaster: 'pusher',
key: 'PUSHER KEY'
});
/**
* Alternatively you can pass an echo instance:
* ********************************************
* import Echo from 'laravel-echo';
*
* const EchoInstance = new Echo({
* broadcaster: 'pusher',
* key: 'PUSHER KEY'
* });
* Vue.use(VueEcho, EchoInstance);
*/
Once vue-echo is registered, every vue instance is able to subscribe to channels and listen to events through the this.$echo
property on the connection you specified earlier.
var vm = new Vue({
mounted() {
// Listen for the 'NewBlogPost' event in the 'team.1' private channel
this.$echo.private('team.1').listen('NewBlogPost', (payload) => {
console.log(payload);
});
}
});
You can subscribe a vue instance to a single standard channel if needed and define your events.
var vm = new Vue({
channel: 'blog',
echo: {
'BlogPostCreated': (payload, vm) => {
console.log('blog post created', payload);
},
'BlogPostDeleted': (payload, vm) => {
console.log('blog post deleted', payload);
}
}
});
Since the scope of this
would be the same as the scope where you declare your Vue instance a second parameter is added to these locally registered events. This parameter is a direct reference to your Vue instance, you can make any changes you need through there.
Laravel Echo allows you to subscribe to: normal, private and presence channels.
In the example above, we subscribed to a standard channel.
If you would like to subscribe to a private channel instead, prefix your channel name with private:
var vm = new Vue({
channel: 'private:team.1',
echo: {
'BlogPostCreated': (payload, vm) => {
console.log('blog post created', payload);
},
'BlogPostDeleted': (payload, vm) => {
console.log('blog post deleted', payload);
}
}
});
If you would like to subscribe to presence channel instead, prefix your channel name with presence:
var vm = new Vue({
channel: 'presence:team.1.chat',
echo: {
'NewMessage': (payload, vm) => {
console.log('new message from team', payload);
}
}
});
You might want to subscribe to a channel that's name is dynamic. For example, a private poker table where the naming convention is: pokertable.${id}
.
In order to make the name dynamic, we need to change the channel value from a string, to a function that returns a string.
//channel: 'private:pokerTable' <-- old way
channel(vm) {
return 'private:pokerTable'
},
The channel function has one parameter with the current vue instance. vm
in the example below.
This means that if you want to use this
inside the channel function, you have to use the parameter vm
instead.
var vm = new Vue({
props: {
pokerTable: {
type: Number
}
},
channel(vm) {
return 'private:pokerTable.' + vm.pokerTable,
},
echo: {
'bet': (payload, vm) => {
console.log('New bet from', payload);
},
},
mounted(){
if(window.user.role == 'admin'){
this.channel.listen('BlogPostEdited', (payload) => {
console.log('As admin I get notified of edits', payload);
});
}
}
});
If there's a scenario where you want to listen to events after certain conditions are met, you can do so through this.channel
:
var vm = new Vue({
channel: 'private:team.1',
echo: {
'BlogPostCreated': (payload, vm) => {
console.log('blog post created', payload);
},
'BlogPostDeleted': (payload, vm) => {
console.log('blog post deleted', payload);
}
},
mounted(){
if(window.user.role == 'admin'){
this.channel.listen('BlogPostEdited', (payload) => {
console.log('As admin I get notified of edits', payload);
});
}
}
});