gamebrary/src/components/Boards.vue

185 lines
4.2 KiB
Vue
Raw Normal View History

2020-08-18 18:56:10 +00:00
<template lang="html">
2020-12-18 04:44:40 +00:00
<b-container class="pt-3">
2020-09-26 00:09:20 +00:00
<!-- TODO: allow board settings to be accessed here -->
2020-12-17 19:26:08 +00:00
<template v-if="showPlaceholder">
<b-card
v-for="n in 3"
:key="n"
no-body
img-left
class="w-100 mb-3 p-2 mt-3"
>
<b-skeleton-img
card-img="left"
width="210px"
/>
<div class="w-50 ml-3">
<b-skeleton class="w-50" />
<b-skeleton class="w-25" />
</div>
</b-card>
</template>
2020-11-23 18:09:33 +00:00
<empty-state
v-else-if="!boards.length"
title="Boards"
message="Use boards to easily organize your video game collections"
>
<create-board />
</empty-state>
2020-11-22 03:31:18 +00:00
2020-12-18 04:44:40 +00:00
<b-row v-else>
<div class="d-flex w-100 justify-content-between align-items-center mb-3">
<h3 class="m-0 mr-a">{{ $t('boards.title') }}</h3>
2020-11-22 03:31:18 +00:00
<create-board />
</div>
<div class="boards">
<b-card
v-for="board in sortedBoards"
:key="board.id"
no-body
:bg-variant="nightMode ? 'dark' : null"
:text-variant="nightMode ? 'white' : null"
class="overflow-hidden clickable"
@click="viewBoard(board.id)"
>
<mini-board
:board="board"
2020-12-18 04:44:40 +00:00
:background-image="getWallpaper(board)"
/>
</b-card>
</div>
2020-12-18 04:44:40 +00:00
</b-row>
</b-container>
2020-08-18 18:56:10 +00:00
</template>
<script>
import CreateBoard from '@/components/Board/CreateBoard';
import MiniBoard from '@/components/Board/MiniBoard';
2020-11-22 03:31:18 +00:00
import EmptyState from '@/components/EmptyState';
2020-08-18 18:56:10 +00:00
2020-08-26 18:07:13 +00:00
import { mapState, mapGetters } from 'vuex';
2020-08-18 18:56:10 +00:00
export default {
components: {
CreateBoard,
MiniBoard,
2020-11-22 03:31:18 +00:00
EmptyState,
2020-08-18 18:56:10 +00:00
},
data() {
return {
loading: false,
};
},
computed: {
2020-10-14 00:36:49 +00:00
...mapState(['boards', 'wallpapers', 'gameLists', 'settings']),
2020-10-14 00:08:56 +00:00
...mapGetters(['platformNames', 'sortedBoards', 'nightMode']),
2020-09-06 14:53:04 +00:00
hasLists() {
return Object.keys(this.gameLists).length > 0;
},
2020-12-17 19:26:08 +00:00
showPlaceholder() {
return this.loading && Object.keys(this.boards).length === 0
},
2020-08-18 18:56:10 +00:00
},
mounted() {
this.load();
},
methods: {
load() {
2020-08-22 12:24:24 +00:00
this.loadPlatforms();
},
getWallpaper({ wallpaper }) {
2020-09-01 22:04:43 +00:00
const boardWallpaper = this.wallpapers.find(({ fullPath }) => fullPath === wallpaper);
2020-08-28 21:56:20 +00:00
return this.wallpapers.length && boardWallpaper && boardWallpaper.url;
2020-08-28 21:56:20 +00:00
},
getPlatformImage(id) {
const { platformNames } = this;
return id && platformNames && platformNames[id] && platformNames[id].logoFormat
? `/static/platform-logos/${platformNames[id].slug}.${platformNames[id].logoFormat}`
: '';
},
2020-08-22 12:24:24 +00:00
async loadPlatforms() {
await this.$store.dispatch('LOAD_IGDB_PLATFORMS')
.catch(() => {
2020-12-10 05:26:57 +00:00
this.$bvToast.toast('There was an error loading platforms', { variant: 'error' });
2020-08-22 12:24:24 +00:00
});
2020-11-22 05:00:17 +00:00
this.loadBoards();
2020-08-18 18:56:10 +00:00
},
async loadBoards() {
this.loading = true;
await this.$store.dispatch('LOAD_BOARDS')
.catch(() => {
this.loading = false;
2020-09-23 23:01:39 +00:00
this.$store.commit('SET_SESSION_EXPIRED', true);
2020-08-18 18:56:10 +00:00
});
this.loading = false;
},
viewBoard(id) {
this.$router.push({ name: 'board', params: { id } });
},
confirmDelete(id) {
this.$bvModal.msgBoxConfirm('Are you sure you want to delete this board?', {
title: 'Delete board',
okVariant: 'danger',
okTitle: 'Yes, delete board',
})
.then((value) => {
if (value) {
this.deleteBoard(id);
}
});
},
async deleteBoard(id) {
this.loading = true;
await this.$store.dispatch('DELETE_BOARD', id)
.catch(() => {
this.loading = false;
2020-12-10 05:26:57 +00:00
this.$bvToast.toast('There was an error deleting board', { variant: 'error' });
2020-08-18 18:56:10 +00:00
});
this.loading = false;
2020-12-10 05:26:57 +00:00
this.$bvToast.toast('Board removed');
2020-08-18 18:56:10 +00:00
},
},
};
</script>
2020-08-26 21:23:28 +00:00
<style lang="scss" rel="stylesheet/scss" scoped>
.boards {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 1rem;
@media(max-width: 780px) {
grid-template-columns: 1fr 1fr;
}
@media(max-width: 480px) {
grid-template-columns: 1fr;
}
2020-08-26 21:23:28 +00:00
}
</style>