gamebrary/src/components/Game/GameNotes.vue

113 lines
2.5 KiB
Vue
Raw Normal View History

2020-08-22 12:21:15 +00:00
<template lang="html">
<b-button v-b-modal.notes variant="warning">
<b-icon-file-earmark-text />
<b-modal
id="notes"
title="Game notes"
@show="show"
>
<b-form-textarea
v-model.trim="localNote"
placeholder="Type note here"
rows="3"
max-rows="20"
/>
<b-form-text id="input-live-help">
<a href="https://www.markdownguide.org/cheat-sheet/" target="_blank">
Markdown supported
</a>
</b-form-text>
<template v-slot:modal-footer>
<b-button
variant="danger"
:disabled="deleting"
@click="deleteNote"
>
<b-spinner small v-if="deleting" />
<span v-else>{{ $t('global.delete') }}</span>
</b-button>
<b-button
variant="primary"
:disabled="saving"
@click="saveNote"
>
<b-spinner small v-if="saving" />
<span v-else>{{ $t('global.save') }}</span>
</b-button>
</template>
</b-modal>
</b-button>
</template>
<script>
import { mapState } from 'vuex';
export default {
props: {
game: Object,
},
data() {
return {
localNote: '',
deleting: false,
saving: false,
};
},
computed: {
...mapState(['notes']),
},
methods: {
show() {
this.deleting = false;
this.saving = false;
const { id } = this.game;
this.localNote = this.notes[id]
? JSON.parse(JSON.stringify(this.notes[id]))
: '';
},
async saveNote() {
this.saving = true;
this.$store.commit('SET_GAME_NOTE', {
note: this.localNote,
gameId: this.game.id,
});
await this.$store.dispatch('SAVE_NOTES')
.catch(() => {
this.saving = false;
this.$bvToast.toast('There was an error saving your note', { title: 'Error', variant: 'danger' });
});
this.$bvToast.toast('Note saved', { title: 'Success', variant: 'success' });
this.$bvModal.hide('notes');
},
async deleteNote() {
this.deleting = true;
this.$store.commit('REMOVE_GAME_NOTE', this.game.id);
await this.$store.dispatch('SAVE_NOTES_NO_MERGE')
.catch(() => {
this.deleting = false;
this.$bvToast.toast('There was an error deleting your note', { title: 'Error', variant: 'danger' });
});
this.$bvToast.toast('Note deleted', { title: 'Success', variant: 'success' });
this.$bvModal.hide('notes');
},
},
};
</script>