Welcome to mirror list, hosted at ThFree Co, Russian Federation.

publish_button.vue « components « batch_comments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a7be605003809a2e6dbcde306053a8e42ad2080 (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
52
<script>
import { GlButton } from '@gitlab/ui';
import { mapActions, mapState } from 'vuex';
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"
    data-qa-selector="submit_review_button"
    :category="category"
    :variant="variant"
    @click="onClick"
  >
    {{ __('Submit review') }}
    <drafts-count v-if="showCount" />
  </gl-button>
</template>