mirror of
https://github.com/romancm/gamebrary
synced 2025-01-08 17:28:46 +00:00
135 lines
3.5 KiB
Vue
135 lines
3.5 KiB
Vue
|
<template lang="html">
|
||
|
<b-dropdown-item-button v-b-modal="modalId">
|
||
|
<b-icon-toggles /> List tweaks
|
||
|
|
||
|
<b-modal
|
||
|
:id="modalId"
|
||
|
title="List tweaks"
|
||
|
@shown="getSettings"
|
||
|
>
|
||
|
<form ref="renameListForm" @submit.stop.prevent="save">
|
||
|
<b-form-checkbox v-model="showReleaseDates" name="check-button" switch>
|
||
|
Show release date for unreleased games
|
||
|
</b-form-checkbox>
|
||
|
|
||
|
<b-form-checkbox v-model="showGameRatings" name="check-button" switch>
|
||
|
Show game ratings
|
||
|
</b-form-checkbox>
|
||
|
|
||
|
<b-form-checkbox v-model="showGameProgress" name="check-button" switch>
|
||
|
Show game progress
|
||
|
</b-form-checkbox>
|
||
|
|
||
|
<b-form-checkbox v-model="showGameNotes" name="check-button" switch>
|
||
|
Show game notes
|
||
|
</b-form-checkbox>
|
||
|
|
||
|
<b-form-checkbox v-model="showGameTags" name="check-button" switch>
|
||
|
Show game tags
|
||
|
</b-form-checkbox>
|
||
|
</form>
|
||
|
|
||
|
<template v-slot:modal-footer="{ cancel }">
|
||
|
<b-button @click="cancel">
|
||
|
Cancel
|
||
|
</b-button>
|
||
|
|
||
|
<b-button
|
||
|
variant="primary"
|
||
|
:disabled="saving"
|
||
|
@click="save"
|
||
|
>
|
||
|
<b-spinner small v-if="saving" />
|
||
|
<span v-else>Save</span>
|
||
|
</b-button>
|
||
|
</template>
|
||
|
</b-modal>
|
||
|
</b-dropdown-item-button>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { mapState } from 'vuex';
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
listIndex: {
|
||
|
type: Number,
|
||
|
required: true,
|
||
|
default: 0,
|
||
|
},
|
||
|
},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
showReleaseDates: false,
|
||
|
showGameRatings: false,
|
||
|
showGameProgress: false,
|
||
|
showGameNotes: false,
|
||
|
showGameTags: false,
|
||
|
saving: false,
|
||
|
};
|
||
|
},
|
||
|
|
||
|
computed: {
|
||
|
...mapState(['gameLists', 'platform']),
|
||
|
|
||
|
modalId() {
|
||
|
return `list-tweaks-${this.listIndex}`;
|
||
|
},
|
||
|
|
||
|
isDuplicate() {
|
||
|
return this.listName && this.existingListNames.includes(this.listName.toLowerCase());
|
||
|
},
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
getSettings() {
|
||
|
const {
|
||
|
showReleaseDates,
|
||
|
showGameRatings,
|
||
|
showGameProgress,
|
||
|
showGameNotes,
|
||
|
showGameTags,
|
||
|
} = this.gameLists[this.platform.code][this.listIndex];
|
||
|
|
||
|
this.showReleaseDates = showReleaseDates || false;
|
||
|
this.showGameRatings = showGameRatings || false;
|
||
|
this.showGameProgress = showGameProgress || false;
|
||
|
this.showGameNotes = showGameNotes || false;
|
||
|
this.showGameTags = showGameTags || false;
|
||
|
},
|
||
|
|
||
|
async save() {
|
||
|
this.saving = true;
|
||
|
|
||
|
const gameLists = JSON.parse(JSON.stringify(this.gameLists));
|
||
|
|
||
|
gameLists[this.platform.code][this.listIndex].showReleaseDates = this.showReleaseDates;
|
||
|
gameLists[this.platform.code][this.listIndex].showGameRatings = this.showGameRatings;
|
||
|
gameLists[this.platform.code][this.listIndex].showGameProgress = this.showGameProgress;
|
||
|
gameLists[this.platform.code][this.listIndex].showGameNotes = this.showGameNotes;
|
||
|
gameLists[this.platform.code][this.listIndex].showGameTags = this.showGameTags;
|
||
|
|
||
|
await this.$store.dispatch('SAVE_LIST', gameLists)
|
||
|
.catch(() => {
|
||
|
this.saving = false;
|
||
|
|
||
|
this.$bvToast.toast('There was an error renaming list', {
|
||
|
title: 'Error',
|
||
|
variant: 'danger',
|
||
|
});
|
||
|
});
|
||
|
|
||
|
this.saving = false;
|
||
|
|
||
|
this.$bvToast.toast('Settings saved', {
|
||
|
title: 'Success',
|
||
|
variant: 'success',
|
||
|
});
|
||
|
|
||
|
this.$bvModal.hide(this.modalId);
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|