probil / vue-socket.io-extended

:v::zap: Socket.io bindings for Vue.js and Vuex (inspired by Vue-Socket.io)
MIT License
628 stars 38 forks source link

Can we listen to io events from the client side? #539

Open PushyPants opened 2 years ago

PushyPants commented 2 years ago

first off, thank you so much for creating and maintaining this package! You've saved me so much time and energy!

I'm trying to listen to reconnect events and the current syntax listens to the socket instance only (as far as I know).

sockets: {
    listener(data) {
    // do something with data
    }
}

but as noted below as of 3+ the socket instance no longer listens to reconnect events image

is there a way for us to listen to IO events? or is there a reserved reconnect method provided by the package that we can listen to?

I've tried:

sockets: {
    reconnect(data) {
    }
}

and:

mounted() {
    this.$socket.client.io.on('reconnect', () => {
        //do stuff
    })
}

in either instance I'm not able to listen to reconnect events.

misterdudu commented 2 years ago

What's the socket.io-client and socket.io server version you are using?

I'm using both on 4.x and this works fine:

this.$socket.client.on('reconnect', attempts => console.log(attempts))

would be nice to integrate this to

sockets: {
    reconnect(data) {
    }
}