2018-10-25 06:33:15 +00:00
|
|
|
import Vue from 'vue';
|
2018-10-19 05:15:28 +00:00
|
|
|
|
|
|
|
export default {
|
2018-10-25 06:33:15 +00:00
|
|
|
SET_USER(state, data) {
|
|
|
|
state.user = {
|
|
|
|
uid: data.uid,
|
|
|
|
displayName: data.displayName,
|
|
|
|
email: data.email,
|
|
|
|
emailVerified: data.emailVerified,
|
|
|
|
dateJoined: data.metadata.creationTime,
|
|
|
|
photoURL: data.photoURL,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
SET_GAME_LISTS(state, lists) {
|
|
|
|
state.gameLists = lists;
|
|
|
|
},
|
|
|
|
|
|
|
|
CLEAR_SESSION(state) {
|
|
|
|
state.user = null;
|
|
|
|
state.platform = null;
|
|
|
|
state.gameLists = null;
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
SET_SEARCH_RESULTS(state, results) {
|
|
|
|
state.results = results;
|
|
|
|
},
|
|
|
|
|
2018-10-25 06:33:15 +00:00
|
|
|
SET_AUTHORIZING_STATUS(state, status) {
|
|
|
|
state.authorizing = status;
|
|
|
|
},
|
|
|
|
|
2018-10-19 05:15:28 +00:00
|
|
|
CLEAR_SEARCH_RESULTS(state) {
|
|
|
|
state.results = [];
|
|
|
|
},
|
|
|
|
|
|
|
|
SET_ACTIVE_GAME(state, game) {
|
|
|
|
state.game = state.games[game];
|
|
|
|
},
|
|
|
|
|
|
|
|
SET_EDIT_GAME(state, { listId, gameId }) {
|
|
|
|
state.editGame = gameId;
|
|
|
|
state.activeList = listId;
|
|
|
|
},
|
|
|
|
|
|
|
|
SET_ACTIVE_LIST(state, listIndex) {
|
|
|
|
state.activeList = listIndex;
|
|
|
|
},
|
|
|
|
|
|
|
|
SET_PLATFORM(state, platform) {
|
|
|
|
state.platform = platform;
|
|
|
|
},
|
|
|
|
|
|
|
|
CLEAR_ACTIVE_GAME(state) {
|
|
|
|
state.game = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
SORT_LIST(state, listIndex) {
|
2018-10-25 06:33:15 +00:00
|
|
|
const games = state.gameLists[state.platform.code][listIndex].games;
|
2018-10-19 05:15:28 +00:00
|
|
|
|
|
|
|
games.sort((a, b) => {
|
|
|
|
const gameA = state.games[a].name.toUpperCase();
|
|
|
|
const gameB = state.games[b].name.toUpperCase();
|
|
|
|
|
|
|
|
if (gameA < gameB) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return gameA > gameB ? 1 : 0;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
UPDATE_LIST_NAME(state, { listIndex, listName }) {
|
2018-10-25 06:33:15 +00:00
|
|
|
state.gameLists[state.platform.code][listIndex].name = listName;
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
SET_SETTINGS(state, settings) {
|
2018-10-25 06:33:15 +00:00
|
|
|
state.settings = settings;
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
REMOVE_LIST(state, index) {
|
2018-10-25 06:33:15 +00:00
|
|
|
state.gameLists[state.platform.code].splice(index, 1);
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
ADD_GAME(state, { gameId, listId }) {
|
2018-10-25 06:33:15 +00:00
|
|
|
const currentList = state.gameLists[state.platform.code][listId];
|
|
|
|
|
|
|
|
currentList.games.push(gameId);
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
ADD_LIST(state, listName) {
|
|
|
|
const newList = {
|
|
|
|
games: [],
|
|
|
|
name: listName,
|
|
|
|
};
|
|
|
|
|
2018-10-25 06:33:15 +00:00
|
|
|
if (!state.gameLists[state.platform.code]) {
|
|
|
|
Vue.set(state.gameLists, state.platform.code, []);
|
|
|
|
}
|
|
|
|
|
|
|
|
state.gameLists[state.platform.code].push(newList);
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
REMOVE_GAME(state, { gameId, listId }) {
|
2018-10-25 06:33:15 +00:00
|
|
|
const currentList = state.gameLists[state.platform.code][listId];
|
|
|
|
|
|
|
|
currentList.games.splice(currentList.games.indexOf(gameId), 1);
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
CACHE_GAME_DATA(state, data) {
|
|
|
|
data.forEach((game) => {
|
|
|
|
state.games[game.id] = { ...game };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|