gamebrary/src/pages/Board.vue
2020-08-24 21:23:22 -07:00

160 lines
3.5 KiB
Vue
Executable file

<template lang="html">
<div :class="['board', { dragging }]" :style="wallpaper" >
<board-placeholder v-if="loading" />
<template v-else>
<list
v-for="(list, listIndex) in board.lists"
:list="list"
:listIndex="listIndex"
:key="list.name"
/>
</template>
<div class="d-flex flex-column pr-3">
<add-list />
<board-settings />
</div>
<game-modal />
</div>
</template>
<script>
import BoardSettings from '@/components/Settings/BoardSettings';
import BoardPlaceholder from '@/components/Board/BoardPlaceholder';
import AddList from '@/components/Board/AddList';
import GameModal from '@/components/Game/GameModal';
import List from '@/components/Lists/List';
import chunk from 'lodash.chunk';
import { mapState } from 'vuex';
import draggable from 'vuedraggable';
export default {
components: {
draggable,
List,
BoardPlaceholder,
AddList,
BoardSettings,
GameModal,
},
data() {
return {
loading: true,
queryLimit: 500,
wallpaperUrl: null,
};
},
computed: {
...mapState(['user', 'dragging', 'board']),
wallpaper() {
const { wallpaperUrl } = this;
return wallpaperUrl
? `background-image: url('${wallpaperUrl}');`
: '';
},
},
mounted() {
this.load();
this.$bus.$on('RELOAD_WALLPAPER', this.loadBoardWallpaper);
},
destroyed() {
this.$store.commit('CLEAR_BOARD');
this.$bus.$off('RELOAD_WALLPAPER', this.loadBoardWallpaper);
},
methods: {
load() {
// TODO: handle loading public board
if (this.$route.params.id && this.user) {
this.loadBoard(this.$route.params.id);
} else {
this.$router.push({ name: 'dashboard' });
}
},
async loadBoard(id) {
this.loading = true;
await this.$store.dispatch('LOAD_BOARD', id)
.catch(() => {
this.$router.replace({ path: '/' });
});
this.loadBoardGames();
this.loadBoardWallpaper();
},
async loadBoardWallpaper() {
this.wallpaperUrl = this.board.wallpaper
? await this.$store.dispatch('LOAD_FIRESTORE_FILE', this.board.wallpaper)
: null;
},
loadBoardGames() {
const { lists } = this.board;
if (lists.length === 0) {
this.$bvModal.show('add-list');
}
const boardGames = Array.from(new Set(lists.map(({ games }) => games).flat()));
if (boardGames.length === 0) {
this.loading = false;
return boardGames;
}
return boardGames.length > this.queryLimit
? this.loadGamesInChunks(boardGames)
: this.loadGames(boardGames);
},
async loadGames(gameList) {
this.loading = true;
await this.$store.dispatch('LOAD_BOARD_GAMES', gameList.toString())
.catch(() => {
this.$bvToast.toast('Error loading games', { title: 'Error', variant: 'error' });
});
this.loading = false;
},
loadGamesInChunks(gameList) {
const chunkedGameList = chunk(gameList, this.queryLimit);
chunkedGameList.forEach((gameListChunk) => {
this.loadGames(gameListChunk);
});
},
},
};
</script>
<style lang="scss" rel="stylesheet/scss" scoped>
.board {
user-select: none;
display: flex;
background-size: cover;
align-items: flex-start;
height: 100vh;
padding: 58px 1rem 0;
box-sizing: border-box;
overflow-x: auto;
overflow-x: overlay;
display: flex;
}
.list-placeholder {
opacity: 0.25;
}
</style>