Code Monkey home page Code Monkey logo

Comments (4)

gil0mendes avatar gil0mendes commented on August 26, 2024 1

The idea is the same as native Vuex. You can use async code on actions, but you must not use it on mutations.

from vue-socket.io.

ivoribeiro avatar ivoribeiro commented on August 26, 2024

The same way but with the prefix SOCKET_

from vue-socket.io.

FPierre avatar FPierre commented on August 26, 2024

A basic lifecycle with Action:

// 1. in App.vue (client side)
// Emit Socket event to server
this.$socket.emit('move', currentPosition)

// 2. server.js (server side)
// Get Socket event from client and send a new one
socket.on('move', (currentPosition) => {
  // ...
  socket.emit('moved', newPosition)
})

// 3. in actions.js (Vuex, client side)
// Get Socket event from server
socket_moved: (context, newPosition) => {
  // Commit standard Mutation
  context.commit('position', newPosition)
}

I'm right?

But I still don't understand how to use Socket Mutations. A lifecycle example could be interesting.

from vue-socket.io.

fyyyyy avatar fyyyyy commented on August 26, 2024

https://www.youtube.com/watch?v=kRI4YLMjgHQ&index=4&list=PL55RiY5tL51pT0DNJraU93FhMzhXxtDAo
good explanation

from vue-socket.io.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.