gitlab-org--gitlab-foss/app/assets/javascripts/notes/components/note_awards_list.vue

68 lines
1.4 KiB
Vue

<script>
import { mapActions, mapGetters } from 'vuex';
import AwardsList from '~/vue_shared/components/awards_list.vue';
import Flash from '../../flash';
import { __ } from '~/locale';
export default {
components: {
AwardsList,
},
props: {
awards: {
type: Array,
required: true,
},
toggleAwardPath: {
type: String,
required: true,
},
noteAuthorId: {
type: Number,
required: true,
},
noteId: {
type: String,
required: true,
},
canAwardEmoji: {
type: Boolean,
required: true,
},
},
computed: {
...mapGetters(['getUserData']),
isAuthoredByMe() {
return this.noteAuthorId === this.getUserData.id;
},
addButtonClass() {
return this.isAuthoredByMe ? 'js-user-authored' : '';
},
},
methods: {
...mapActions(['toggleAwardRequest']),
handleAward(awardName) {
const data = {
endpoint: this.toggleAwardPath,
noteId: this.noteId,
awardName,
};
this.toggleAwardRequest(data).catch(() => Flash(__('Something went wrong on our end.')));
},
},
};
</script>
<template>
<div class="note-awards">
<awards-list
:awards="awards"
:can-award-emoji="canAwardEmoji"
:current-user-id="getUserData.id"
:add-button-class="addButtonClass"
@award="handleAward($event)"
/>
</div>
</template>