12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- 'use strict';
- import Vue from 'vue';
- import Vuex from 'vuex';
- Vue.use(Vuex);
- import menu from './menu/menu';
- import game from './game/game';
- import { socketService } from '../main';
- const state = {
- username: '',
- isConnected: false,
- gameId: -1,
- isGameRunning: false,
- messages: []
- };
- const getters = {
- messages(state) {
- return state.messages;
- },
- gameId(state) {
- return state.gameId;
- },
- isGameRunning(state) {
- return state.isGameRunning;
- },
- username(state) {
- return state.username;
- },
- isConnected(state) {
- return state.isConnected;
- }
- };
- const mutations = {
- ADD_MESSAGE: (state, payload) => {
- state.messages.push(payload);
- },
- SET_GAME_ID: (state, payload) => {
- state.gameId = payload;
- },
- SET_IS_GAME_RUNNING: (state, payload) => {
- state.isGameRunning = payload;
- },
- SET_USERNAME: (state, payload) => {
- state.username = payload;
- },
- SET_IS_CONNECTED: (state, payload) => {
- state.isConnected = payload;
- }
- };
- const actions = {
- addMessageToQueue: ({ commit }, payload) => {
- commit('ADD_MESSAGE', payload);
- },
- stopGame: ({ commit, rootState }) => {
- socketService.leaveGame(rootState.username);
- commit('SET_IS_GAME_RUNNING', false);
- localStorage.removeItem('gameId');
- },
- disconnect: ({ commit }) => {
- socketService.disconnect();
- commit('SET_GAME_ID', -1);
- commit('SET_IS_GAME_RUNNING', false);
- commit('SET_USERNAME', '');
- commit('SET_IS_CONNECTED', false);
- commit('menu/RESET_ALL_STATUS');
- localStorage.removeItem('username');
- localStorage.removeItem('gameId');
- }
- };
- export const store = new Vuex.Store({
- state,
- getters,
- mutations,
- actions,
- modules: {
- menu,
- game
- }
- });
|