store.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. 'use strict';
  2. import Vue from 'vue';
  3. import Vuex from 'vuex';
  4. Vue.use(Vuex);
  5. import menu from './menu/menu';
  6. import game from './game/game';
  7. import { socketService } from '../main';
  8. const state = {
  9. username: '',
  10. isConnected: false,
  11. gameId: -1,
  12. isGameRunning: false,
  13. messages: []
  14. };
  15. const getters = {
  16. messages(state) {
  17. return state.messages;
  18. },
  19. gameId(state) {
  20. return state.gameId;
  21. },
  22. isGameRunning(state) {
  23. return state.isGameRunning;
  24. },
  25. username(state) {
  26. return state.username;
  27. },
  28. isConnected(state) {
  29. return state.isConnected;
  30. }
  31. };
  32. const mutations = {
  33. ADD_MESSAGE: (state, payload) => {
  34. state.messages.push(payload);
  35. },
  36. SET_GAME_ID: (state, payload) => {
  37. state.gameId = payload;
  38. },
  39. SET_IS_GAME_RUNNING: (state, payload) => {
  40. state.isGameRunning = payload;
  41. },
  42. SET_USERNAME: (state, payload) => {
  43. state.username = payload;
  44. },
  45. SET_IS_CONNECTED: (state, payload) => {
  46. state.isConnected = payload;
  47. }
  48. };
  49. const actions = {
  50. addMessageToQueue: ({ commit }, payload) => {
  51. commit('ADD_MESSAGE', payload);
  52. },
  53. stopGame: ({ commit, rootState }) => {
  54. socketService.leaveGame(rootState.username);
  55. commit('SET_IS_GAME_RUNNING', false);
  56. localStorage.removeItem('gameId');
  57. },
  58. disconnect: ({ commit }) => {
  59. socketService.disconnect();
  60. commit('SET_GAME_ID', -1);
  61. commit('SET_IS_GAME_RUNNING', false);
  62. commit('SET_USERNAME', '');
  63. commit('SET_IS_CONNECTED', false);
  64. commit('menu/RESET_ALL_STATUS');
  65. localStorage.removeItem('username');
  66. localStorage.removeItem('gameId');
  67. }
  68. };
  69. export const store = new Vuex.Store({
  70. state,
  71. getters,
  72. mutations,
  73. actions,
  74. modules: {
  75. menu,
  76. game
  77. }
  78. });