mirror of
https://github.com/romancm/gamebrary
synced 2024-12-19 07:43:15 +00:00
140 lines
2.8 KiB
Vue
140 lines
2.8 KiB
Vue
<template lang="html">
|
|
<div>
|
|
<b-button
|
|
v-b-modal="modalId"
|
|
class="mr-3"
|
|
:title="title"
|
|
ref="addList"
|
|
>
|
|
<b-icon-plus />
|
|
</b-button>
|
|
|
|
<b-modal
|
|
:id="modalId"
|
|
:title="title"
|
|
@shown="reset"
|
|
>
|
|
<form ref="addListForm" @submit.stop.prevent="submit">
|
|
<b-form-input
|
|
autofocus
|
|
v-model="listName"
|
|
:placeholder="$t('list.placeholder')"
|
|
required
|
|
/>
|
|
|
|
<b-alert
|
|
class="mt-3 mb-0"
|
|
:show="isDuplicate && !saving"
|
|
variant="warning"
|
|
>
|
|
{{ $t('list.duplicateWarning') }}
|
|
</b-alert>
|
|
</form>
|
|
|
|
<template v-slot:modal-footer="{ cancel }">
|
|
<b-button @click="cancel">
|
|
Cancel
|
|
</b-button>
|
|
|
|
<b-button
|
|
variant="primary"
|
|
:disabled="saving || isDuplicate"
|
|
@click="submit"
|
|
>
|
|
<b-spinner small v-if="saving" />
|
|
<span v-else>{{ buttonLabel }}</span>
|
|
</b-button>
|
|
</template>
|
|
</b-modal>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
listName: '',
|
|
saving: false,
|
|
modalId: 'add-list',
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
...mapState(['platform', 'board']),
|
|
|
|
title() {
|
|
return this.isEmptyBoard
|
|
? this.$t('list.addFirstTime')
|
|
: this.$t('list.add');
|
|
},
|
|
|
|
buttonLabel() {
|
|
return this.isEmptyBoard
|
|
? this.$t('list.getStarted')
|
|
: this.$t('global.save');
|
|
},
|
|
|
|
existingListNames() {
|
|
return this.board.lists
|
|
? this.board.lists.map(({ name }) => name.toLowerCase())
|
|
: [];
|
|
},
|
|
|
|
isDuplicate() {
|
|
return this.existingListNames.includes(this.listName.toLowerCase());
|
|
},
|
|
|
|
isEmptyBoard() {
|
|
return this.board.lists.length === 0;
|
|
},
|
|
|
|
disabled() {
|
|
return this.isDuplicate || !this.listName;
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
reset() {
|
|
this.listName = '';
|
|
},
|
|
|
|
submit(e) {
|
|
e.preventDefault();
|
|
|
|
if (this.$refs.addListForm.checkValidity()) {
|
|
this.addList();
|
|
}
|
|
},
|
|
|
|
async addList() {
|
|
const list = {
|
|
games: [],
|
|
name: this.listName,
|
|
settings: {},
|
|
};
|
|
|
|
this.saving = true;
|
|
|
|
await this.$store.dispatch('ADD_LIST', list)
|
|
.catch(() => {
|
|
this.$bvToast.toast('Error adding list', { title: 'Error', variant: 'danger' });
|
|
});
|
|
|
|
this.$bvToast.toast('List added', { variant: 'success' });
|
|
this.saving = false;
|
|
this.$bvModal.hide(this.modalId);
|
|
this.scroll();
|
|
},
|
|
|
|
scroll() {
|
|
this.$nextTick(() => {
|
|
const board = document.querySelector('.board');
|
|
|
|
board.scrollLeft = board.scrollWidth;
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|