summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/batch_comments/components/publish_button.vue
blob: ecced36771e6ac1091ac8ab4652477ccf192be45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<script>
import { mapActions, mapState } from 'vuex';
import { GlButton } from '@gitlab/ui';
import DraftsCount from './drafts_count.vue';

export default {
  components: {
    GlButton,
    DraftsCount,
  },
  props: {
    showCount: {
      type: Boolean,
      required: false,
      default: false,
    },
    category: {
      type: String,
      required: false,
      default: 'primary',
    },
    variant: {
      type: String,
      required: false,
      default: 'success',
    },
  },
  computed: {
    ...mapState('batchComments', ['isPublishing']),
  },
  methods: {
    ...mapActions('batchComments', ['publishReview']),
    onClick() {
      this.publishReview();
    },
  },
};
</script>

<template>
  <gl-button
    :loading="isPublishing"
    class="js-publish-draft-button qa-submit-review"
    :category="category"
    :variant="variant"
    @click="onClick"
  >
    {{ __('Submit review') }}
    <drafts-count v-if="showCount" />
  </gl-button>
</template>