2018-10-19 05:15:28 +00:00
|
|
|
<template lang="html">
|
|
|
|
<div
|
|
|
|
class="lists"
|
|
|
|
ref="lists"
|
|
|
|
@dragscrollstart="dragScrollActive = true"
|
|
|
|
@dragscrollend="dragScrollActive = false"
|
2018-11-21 02:39:49 +00:00
|
|
|
:class="{ dark: settings && settings.nightMode, 'drag-scroll-active': dragScrollActive }"
|
2018-10-19 05:15:28 +00:00
|
|
|
v-dragscroll:nochilddrag
|
|
|
|
>
|
2018-11-17 22:21:50 +00:00
|
|
|
<template v-if="loading">
|
|
|
|
Loading...
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-else>
|
|
|
|
<list
|
|
|
|
:name="list.name"
|
|
|
|
:games="list.games"
|
|
|
|
:listIndex="listIndex"
|
|
|
|
:key="`${list.name}-${listIndex}`"
|
|
|
|
v-if="list"
|
|
|
|
v-for="(list, listIndex) in gameLists[platform.code]"
|
|
|
|
@end="dragEnd"
|
|
|
|
@remove="tryDelete(listIndex)"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<add-list
|
|
|
|
@update="updateLists()"
|
|
|
|
@scroll="scroll"
|
|
|
|
/>
|
|
|
|
</template>
|
2018-10-19 05:15:28 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { dragscroll } from 'vue-dragscroll';
|
|
|
|
import AddList from '@/components/Lists/AddList';
|
2018-11-21 02:39:49 +00:00
|
|
|
import { $success, $error, swal } from '@/shared/modals';
|
2018-10-19 05:15:28 +00:00
|
|
|
import List from '@/components/GameBoard/List';
|
|
|
|
import draggable from 'vuedraggable';
|
|
|
|
import { mapState } from 'vuex';
|
2018-11-05 02:26:27 +00:00
|
|
|
import firebase from 'firebase/app';
|
|
|
|
import 'firebase/firestore';
|
2018-10-19 05:15:28 +00:00
|
|
|
|
2018-10-25 06:33:15 +00:00
|
|
|
const db = firebase.firestore();
|
|
|
|
|
|
|
|
db.settings({
|
|
|
|
timestampsInSnapshots: true,
|
|
|
|
});
|
|
|
|
|
2018-10-19 05:15:28 +00:00
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
draggable,
|
|
|
|
List,
|
|
|
|
AddList,
|
|
|
|
},
|
|
|
|
|
|
|
|
directives: {
|
|
|
|
dragscroll,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
dragging: false,
|
|
|
|
draggingId: null,
|
2018-11-17 22:21:50 +00:00
|
|
|
loading: false,
|
2018-10-19 05:15:28 +00:00
|
|
|
gameData: null,
|
|
|
|
activeList: null,
|
|
|
|
showDeleteConfirm: false,
|
|
|
|
dragScrollActive: false,
|
|
|
|
listDraggableOptions: {
|
|
|
|
animation: 500,
|
|
|
|
handle: '.list-drag-handle',
|
|
|
|
group: { name: 'lists' },
|
|
|
|
draggable: '.list',
|
|
|
|
ghostClass: 'list-placeholder',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2018-11-02 01:42:43 +00:00
|
|
|
...mapState(['user', 'gameLists', 'platform', 'settings']),
|
2018-10-19 05:15:28 +00:00
|
|
|
|
2018-10-25 06:33:15 +00:00
|
|
|
list() {
|
|
|
|
return this.gameLists[this.platform.code];
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
nightMode() {
|
|
|
|
return this.user && this.user.settings ? this.user.settings.nightMode : false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2018-10-25 06:33:15 +00:00
|
|
|
this.loadGameData();
|
2018-11-05 02:27:14 +00:00
|
|
|
|
|
|
|
document.title = `${this.platform.name} - Gamebrary`;
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
scroll() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
const lists = this.$refs.lists;
|
|
|
|
lists.scrollLeft = lists.scrollWidth;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
tryDelete(index) {
|
2018-10-25 06:33:15 +00:00
|
|
|
const hasGames = this.list[index].games.length > 0;
|
2018-10-19 05:15:28 +00:00
|
|
|
|
|
|
|
if (hasGames) {
|
|
|
|
this.showDeleteConfirm = true;
|
|
|
|
this.activeList = index;
|
|
|
|
|
2018-11-21 02:39:49 +00:00
|
|
|
swal({
|
2018-10-19 05:15:28 +00:00
|
|
|
title: 'Are you sure?',
|
|
|
|
text: 'This lists contains games, all games will be deleted as well.',
|
|
|
|
showCancelButton: true,
|
|
|
|
buttonsStyling: false,
|
|
|
|
confirmButtonClass: 'primary small',
|
|
|
|
cancelButtonClass: 'small',
|
|
|
|
confirmButtonText: 'Delete',
|
|
|
|
}).then(({ value }) => {
|
|
|
|
if (value) {
|
|
|
|
this.deleteList(this.activeList);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.deleteList(index);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteList(index) {
|
|
|
|
this.$store.commit('REMOVE_LIST', index);
|
|
|
|
this.updateLists();
|
2018-11-21 02:39:49 +00:00
|
|
|
$success('List deleted');
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
dragEnd() {
|
|
|
|
this.dragging = false;
|
|
|
|
this.draggingId = null;
|
|
|
|
this.updateLists();
|
|
|
|
},
|
|
|
|
|
2018-10-25 06:33:15 +00:00
|
|
|
updateLists() {
|
|
|
|
db.collection('lists').doc(this.user.uid).set(this.gameLists, { merge: true })
|
2018-10-19 05:15:28 +00:00
|
|
|
.then(() => {
|
2018-11-21 02:39:49 +00:00
|
|
|
$success('List saved');
|
2018-10-25 06:33:15 +00:00
|
|
|
})
|
|
|
|
.catch(() => {
|
2018-11-21 02:39:49 +00:00
|
|
|
$error('Authentication error');
|
2018-10-19 05:15:28 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
loadGameData() {
|
2018-10-25 06:33:15 +00:00
|
|
|
if (this.list) {
|
2018-11-21 02:39:49 +00:00
|
|
|
const gameList = this.list.map(({ games }) => games).join().replace(/(^,)|(,$)/g, '');
|
2018-10-25 06:33:15 +00:00
|
|
|
|
|
|
|
if (gameList.length > 0) {
|
2018-11-17 22:21:50 +00:00
|
|
|
this.loading = true;
|
|
|
|
|
2018-10-25 06:33:15 +00:00
|
|
|
this.$store.dispatch('LOAD_GAMES', gameList)
|
|
|
|
.catch(() => {
|
2018-11-21 02:39:49 +00:00
|
|
|
swal({
|
2018-10-25 06:33:15 +00:00
|
|
|
title: 'Uh no!',
|
|
|
|
text: 'There was an error loading your game data',
|
|
|
|
type: 'error',
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonClass: 'primary',
|
|
|
|
confirmButtonText: 'Retry',
|
|
|
|
}).then(({ value }) => {
|
|
|
|
if (value) {
|
|
|
|
this.loadGameData();
|
|
|
|
}
|
|
|
|
});
|
2018-11-17 22:21:50 +00:00
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
this.loading = false;
|
2018-10-25 06:33:15 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-10-19 05:15:28 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" rel="stylesheet/scss" scoped>
|
|
|
|
@import "~styles/styles.scss";
|
|
|
|
|
|
|
|
.draggable * {
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
|
2018-10-29 23:53:49 +00:00
|
|
|
.lists {
|
2018-11-17 22:21:50 +00:00
|
|
|
user-select: none;
|
2018-10-29 23:53:49 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
height: calc(100vh - 48px);
|
|
|
|
padding: $gp;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: $color-gray;
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-x: overlay;
|
|
|
|
display: flex;
|
|
|
|
@include drag-cursor;
|
|
|
|
|
2018-11-02 01:42:43 +00:00
|
|
|
&.dark {
|
|
|
|
background: #222 !important;
|
|
|
|
}
|
|
|
|
|
2018-10-29 23:53:49 +00:00
|
|
|
&.drag-scroll-active {
|
|
|
|
@include dragging-cursor;
|
2018-10-19 05:15:28 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 23:53:49 +00:00
|
|
|
&.empty {
|
|
|
|
background: $color-white;
|
2018-10-19 05:15:28 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-29 23:53:49 +00:00
|
|
|
|
|
|
|
.list-placeholder {
|
|
|
|
opacity: 0.25;
|
|
|
|
}
|
2018-10-19 05:15:28 +00:00
|
|
|
</style>
|