gamebrary/src/pages/GameBoard.vue
2020-08-12 23:55:56 -07:00

150 lines
3.5 KiB
Vue
Executable file

<template lang="html">
<div v-if="loaded" class="game-board" :class="{ dragging }" >
<game-board-placeholder v-if="loading" />
<list
v-for="(list, listIndex) in gameLists[platform.code]"
v-if="list && !loading"
:name="list.name"
:game-list="list.games"
:list-index="listIndex"
:key="`${list.name}-${listIndex}`"
@dragEnd="dragEnd"
/>
<add-list ref="listAddModal" />
<game-modal />
<game-tags-modal />
</div>
</template>
<script>
import GameBoardPlaceholder from '@/components/GameBoard/GameBoardPlaceholder';
import GameTagsModal from '@/components/GameBoard/GameTagsModal';
import AddList from '@/components/GameBoard/AddList';
import GameModal from '@/components/GameBoard/GameModal';
import List from '@/components/Lists/List';
import { chunk } from 'lodash';
import { mapState } from 'vuex';
import draggable from 'vuedraggable';
export default {
components: {
draggable,
List,
GameBoardPlaceholder,
GameTagsModal,
AddList,
GameModal,
},
data() {
return {
draggingId: null,
loading: false,
gameData: null,
gameDetailListIndex: null,
queryLimit: 500,
};
},
computed: {
...mapState(['user', 'gameLists', 'platform', 'games', 'dragging']),
list() {
return this.gameLists && this.platform && this.gameLists[this.platform.code]
? this.gameLists[this.platform.code]
: null;
},
loaded() {
return this.user && this.platform;
},
},
mounted() {
if (this.platform) {
this.load();
} else {
this.$router.push({ name: 'platforms' });
}
},
methods: {
dragEnd() {
this.draggingId = null;
this.updateLists();
},
async updateLists() {
await this.$store.dispatch('SAVE_LIST', this.gameLists)
.catch(() => {
this.$bvToast.toast('Authentication error', { title: 'Error', variant: 'danger' });
this.$router.push({ name: 'sessionExpired' });
});
this.$bvToast.toast('List saved', {
title: 'Success',
variant: 'success',
});
},
load() {
const flattenedList = this.list ? this.list.map(({ games }) => games).flat() : [];
const hasLists = this.list && this.list.length;
if (!hasLists && flattenedList.length === 0) {
this.$refs.listAddModal.$refs.addList.click();
}
const dedupedList = Array.from(new Set(flattenedList));
return dedupedList.length > this.queryLimit
? this.loadGamesInChunks(dedupedList)
: this.loadGames(dedupedList);
},
loadGames(gameList) {
if (gameList && gameList.length > 0) {
this.loading = true;
this.$store
.dispatch('LOAD_GAMES', gameList.toString())
.then(() => {
this.loading = false;
})
.catch(() => {
this.$bvToast.toast('Error loading games', { title: 'Error', variant: 'error' });
});
}
},
loadGamesInChunks(gameList) {
const chunkedGameList = chunk(gameList, this.queryLimit);
chunkedGameList.forEach((gameListChunk) => {
this.loadGames(gameListChunk);
});
},
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.game-board {
user-select: none;
display: flex;
align-items: flex-start;
height: calc(100vh - 56px);
padding: 0 1rem;
box-sizing: border-box;
overflow-x: auto;
overflow-x: overlay;
display: flex;
}
.list-placeholder {
opacity: 0.25;
}
</style>