2020-08-18 18:56:10 +00:00
|
|
|
<template lang="html">
|
2021-03-23 23:52:34 +00:00
|
|
|
<div class="mx-2 mb-2" v-if="user">
|
2021-04-04 05:49:17 +00:00
|
|
|
<!-- TODO: allow reorganizing and save -->
|
|
|
|
<!-- TODO: show public boards -->
|
2020-11-23 18:09:33 +00:00
|
|
|
<empty-state
|
2021-03-23 23:52:34 +00:00
|
|
|
v-if="!loading && sortedBoards.length === 0"
|
2020-11-23 18:09:33 +00:00
|
|
|
title="Boards"
|
|
|
|
message="Use boards to easily organize your video game collections"
|
|
|
|
>
|
2021-04-16 20:47:13 +00:00
|
|
|
<b-button v-b-modal:create-board>
|
2021-02-01 21:11:31 +00:00
|
|
|
{{ $t('boards.create') }}
|
|
|
|
</b-button>
|
2020-11-23 18:09:33 +00:00
|
|
|
</empty-state>
|
2020-11-22 03:31:18 +00:00
|
|
|
|
2021-03-11 00:06:47 +00:00
|
|
|
<portal to="dock">
|
2021-02-01 21:11:31 +00:00
|
|
|
<b-button
|
2021-04-14 23:54:47 +00:00
|
|
|
v-if="showCreateBoard"
|
2021-02-15 23:54:56 +00:00
|
|
|
variant="primary"
|
2021-02-01 21:11:31 +00:00
|
|
|
v-b-modal:create-board
|
|
|
|
>
|
|
|
|
{{ $t('boards.create') }}
|
|
|
|
</b-button>
|
2021-03-11 00:06:47 +00:00
|
|
|
</portal>
|
2020-11-22 03:31:18 +00:00
|
|
|
|
2021-04-07 00:02:09 +00:00
|
|
|
<div class="packery-grid">
|
|
|
|
<div v-if="showPlaceholder">
|
|
|
|
Loading
|
|
|
|
</div>
|
|
|
|
<!-- <div v-if="">
|
|
|
|
<b-card
|
|
|
|
v-for="n in 3"
|
|
|
|
:key="n"
|
|
|
|
no-body
|
|
|
|
class="mb-3 p-1 mt-3"
|
|
|
|
>
|
|
|
|
<b-skeleton-img />
|
|
|
|
</b-card>
|
|
|
|
</div> -->
|
|
|
|
|
|
|
|
<mini-board
|
2021-01-20 21:04:48 +00:00
|
|
|
v-for="board in sortedBoards"
|
|
|
|
:key="board.id"
|
2021-04-07 00:02:09 +00:00
|
|
|
:board="board"
|
|
|
|
:background-image="getWallpaperUrl(board.backgroundUrl)"
|
|
|
|
class="p-relative"
|
|
|
|
@view-board="viewBoard(board.id)"
|
2021-01-20 21:04:48 +00:00
|
|
|
>
|
2021-02-22 02:36:54 +00:00
|
|
|
<b-button
|
2021-02-22 02:37:37 +00:00
|
|
|
class="position-absolute edit-board-button"
|
2021-02-22 02:36:54 +00:00
|
|
|
size="sm"
|
|
|
|
@click.stop="editBoard(board)"
|
|
|
|
>
|
2021-04-07 00:02:09 +00:00
|
|
|
<i class="fas fa-pencil-alt fa-fw" aria-hidden />
|
2021-02-22 02:36:54 +00:00
|
|
|
</b-button>
|
2021-04-07 00:02:09 +00:00
|
|
|
</mini-board>
|
2021-04-14 22:44:55 +00:00
|
|
|
|
|
|
|
<!-- TODO: show public boards -->
|
|
|
|
<!-- <mini-board
|
|
|
|
v-for="board in publicBoards"
|
|
|
|
:key="board.id"
|
|
|
|
:board="board"
|
|
|
|
:background-image="getWallpaperUrl(board.backgroundUrl)"
|
|
|
|
class="p-relative"
|
|
|
|
@view-board="viewPublicBoard(board.id)"
|
|
|
|
>
|
|
|
|
<b-button
|
|
|
|
class="position-absolute edit-board-button"
|
|
|
|
size="sm"
|
|
|
|
@click.stop="editBoard(board)"
|
|
|
|
>
|
|
|
|
<i class="fas fa-pencil-alt fa-fw" aria-hidden />
|
|
|
|
</b-button>
|
|
|
|
</mini-board> -->
|
2021-01-20 21:04:48 +00:00
|
|
|
</div>
|
2021-04-07 00:02:09 +00:00
|
|
|
|
|
|
|
<edit-board-modal />
|
2021-03-11 00:06:47 +00:00
|
|
|
</div>
|
2020-08-18 18:56:10 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-12-16 21:21:23 +00:00
|
|
|
import MiniBoard from '@/components/Board/MiniBoard';
|
2021-02-22 02:36:54 +00:00
|
|
|
import EditBoardModal from '@/components/Board/EditBoardModal';
|
2020-11-22 03:31:18 +00:00
|
|
|
import EmptyState from '@/components/EmptyState';
|
2021-04-07 00:02:09 +00:00
|
|
|
import Packery from 'packery';
|
2020-08-26 18:07:13 +00:00
|
|
|
import { mapState, mapGetters } from 'vuex';
|
2020-08-18 18:56:10 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2020-12-16 21:21:23 +00:00
|
|
|
MiniBoard,
|
2021-02-22 02:36:54 +00:00
|
|
|
EditBoardModal,
|
2020-11-22 03:31:18 +00:00
|
|
|
EmptyState,
|
2020-08-18 18:56:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
loading: false,
|
2021-04-07 00:02:09 +00:00
|
|
|
packery: null,
|
2020-08-18 18:56:10 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2021-04-14 23:54:36 +00:00
|
|
|
...mapState(['publicBoards', 'user', 'boards', 'wallpapers']),
|
2021-04-16 20:47:13 +00:00
|
|
|
...mapGetters(['isBoardOwner', 'platformNames', 'sortedBoards']),
|
2020-09-06 14:53:04 +00:00
|
|
|
|
2020-12-17 19:26:08 +00:00
|
|
|
showPlaceholder() {
|
2020-12-18 04:46:31 +00:00
|
|
|
return this.loading && Object.keys(this.boards).length === 0;
|
2020-12-17 19:26:08 +00:00
|
|
|
},
|
2021-04-14 22:44:55 +00:00
|
|
|
|
2021-04-14 23:54:47 +00:00
|
|
|
showCreateBoard() {
|
|
|
|
return !this.loading && Object.keys(this.boards).length;
|
|
|
|
},
|
|
|
|
|
2021-04-14 22:44:55 +00:00
|
|
|
allBoards() {
|
|
|
|
// return this.publicBoards
|
|
|
|
return [
|
|
|
|
...this.sortedBoards,
|
|
|
|
...this.publicBoards,
|
|
|
|
];
|
|
|
|
},
|
2020-08-18 18:56:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.load();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
load() {
|
2021-04-07 00:02:09 +00:00
|
|
|
this.renderGrid();
|
2020-08-22 12:24:24 +00:00
|
|
|
this.loadPlatforms();
|
|
|
|
},
|
|
|
|
|
2021-02-22 02:36:54 +00:00
|
|
|
editBoard(board) {
|
|
|
|
this.$store.commit('SET_ACTIVE_BOARD', board);
|
|
|
|
this.$bvModal.show('edit-board');
|
|
|
|
},
|
|
|
|
|
2021-02-27 05:14:49 +00:00
|
|
|
getWallpaperUrl(url) {
|
|
|
|
if (!url) {
|
2021-02-27 05:35:08 +00:00
|
|
|
return '';
|
2021-02-27 05:14:49 +00:00
|
|
|
}
|
2020-08-28 21:56:20 +00:00
|
|
|
|
2021-02-27 05:14:49 +00:00
|
|
|
if (url && url.includes('igdb.com')) {
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2021-02-27 05:35:08 +00:00
|
|
|
const wallpaperObject = this.wallpapers.find(({ fullPath }) => fullPath === url);
|
2021-02-27 05:14:49 +00:00
|
|
|
|
2021-02-27 05:35:08 +00:00
|
|
|
return wallpaperObject && wallpaperObject.url
|
2021-02-27 05:14:49 +00:00
|
|
|
? wallpaperObject.url
|
2021-02-27 05:35:08 +00:00
|
|
|
: '';
|
2020-08-28 21:56:20 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getPlatformImage(id) {
|
|
|
|
const { platformNames } = this;
|
|
|
|
|
|
|
|
return id && platformNames && platformNames[id] && platformNames[id].logoFormat
|
2021-04-04 05:48:59 +00:00
|
|
|
? `/static/logos/platforms/${platformNames[id].slug}.${platformNames[id].logoFormat}`
|
2020-08-28 21:56:20 +00:00
|
|
|
: '';
|
|
|
|
},
|
|
|
|
|
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();
|
2021-04-14 22:44:55 +00:00
|
|
|
|
|
|
|
this.$store.dispatch('LOAD_PUBIC_BOARDS');
|
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;
|
2021-04-07 00:02:09 +00:00
|
|
|
this.renderGrid();
|
|
|
|
},
|
|
|
|
|
|
|
|
renderGrid() {
|
|
|
|
this.packery = this.showPlaceholder && this.user
|
|
|
|
? null
|
|
|
|
: new Packery('.packery-grid', { itemSelector: '.mini-board', gutter: 8 });
|
2020-08-18 18:56:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
viewBoard(id) {
|
|
|
|
this.$router.push({ name: 'board', params: { id } });
|
|
|
|
},
|
|
|
|
|
2021-04-14 22:44:55 +00:00
|
|
|
viewPublicBoard(id) {
|
|
|
|
this.$router.push({ name: 'public-board', params: { id } });
|
|
|
|
},
|
|
|
|
|
2020-08-18 18:56:10 +00:00
|
|
|
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
|
|
|
|
2020-12-16 21:21:23 +00:00
|
|
|
<style lang="scss" rel="stylesheet/scss" scoped>
|
2021-02-22 02:36:54 +00:00
|
|
|
.edit-board-button {
|
|
|
|
right: .5rem;
|
2021-04-07 00:02:09 +00:00
|
|
|
top: .5rem;
|
2021-02-22 02:36:54 +00:00
|
|
|
}
|
2020-08-26 21:23:28 +00:00
|
|
|
</style>
|