mirror of
https://github.com/romancm/gamebrary
synced 2025-01-02 06:18:44 +00:00
146 lines
3.3 KiB
Vue
146 lines
3.3 KiB
Vue
<template lang="html">
|
|
<b-button
|
|
v-b-modal="modalId"
|
|
:title="$t('board.addList.title')"
|
|
size="sm"
|
|
variant="primary"
|
|
v-b-tooltip.hover.left
|
|
ref="addList"
|
|
>
|
|
<icon name="plus" white />
|
|
|
|
<b-modal
|
|
:id="modalId"
|
|
:title="$t('board.addList.title')"
|
|
:header-bg-variant="nightMode ? 'dark' : null"
|
|
:header-text-variant="nightMode ? 'white' : null"
|
|
:body-bg-variant="nightMode ? 'dark' : null"
|
|
:body-text-variant="nightMode ? 'white' : null"
|
|
:footer-bg-variant="nightMode ? 'dark' : null"
|
|
:footer-text-variant="nightMode ? 'white' : null"
|
|
footer-class="d-flex justify-content-between"
|
|
@show="reset"
|
|
>
|
|
<template v-slot:modal-header="{ close }">
|
|
<modal-header
|
|
:title="$t('board.addList.title')"
|
|
@close="close"
|
|
/>
|
|
</template>
|
|
|
|
<form ref="addListForm" @submit.stop.prevent="submit">
|
|
<b-form-input
|
|
autofocus
|
|
v-model="listName"
|
|
:placeholder="$t('board.addList.placeholder')"
|
|
required
|
|
/>
|
|
|
|
<b-alert
|
|
class="mt-3 mb-0"
|
|
:show="isDuplicate && !saving"
|
|
variant="warning"
|
|
>
|
|
{{ $t('board.list.duplicateWarning') }}
|
|
</b-alert>
|
|
</form>
|
|
|
|
<template v-slot:modal-footer="{ cancel }">
|
|
<b-button @click="cancel" variant="light">
|
|
{{ $t('global.cancel') }}
|
|
</b-button>
|
|
|
|
<b-button
|
|
variant="primary"
|
|
:disabled="saving || isDuplicate"
|
|
@click="submit"
|
|
>
|
|
<b-spinner small v-if="saving" />
|
|
<span v-else>{{ $t('global.save') }}</span>
|
|
</b-button>
|
|
</template>
|
|
</b-modal>
|
|
</b-button>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapGetters } from 'vuex';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
listName: '',
|
|
saving: false,
|
|
modalId: 'add-list',
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
...mapState(['platform', 'board']),
|
|
...mapGetters(['nightMode']),
|
|
|
|
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 && 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;
|
|
|
|
this.$store.commit('ADD_LIST', list);
|
|
|
|
await this.$store.dispatch('SAVE_BOARD')
|
|
.catch(() => {
|
|
this.$bvToast.toast('Error adding list', { title: 'Error', variant: 'danger' });
|
|
});
|
|
|
|
this.$forceUpdate();
|
|
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>
|