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: f4dc0f04dc39164c8443d161ef3c915a0b1bd3ba (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
53
54
55
<script>
import { mapActions, mapState } from 'vuex';
import { __ } from '~/locale';
import LoadingButton from '~/vue_shared/components/loading_button.vue';
import DraftsCount from './drafts_count.vue';

export default {
  components: {
    LoadingButton,
    DraftsCount,
  },
  props: {
    showCount: {
      type: Boolean,
      required: false,
      default: false,
    },
    label: {
      type: String,
      required: false,
      default: __('Finish review'),
    },
    shouldPublish: {
      type: Boolean,
      required: true,
    },
  },
  computed: {
    ...mapState('batchComments', ['isPublishing']),
  },
  methods: {
    ...mapActions('batchComments', ['publishReview', 'toggleReviewDropdown']),
    onClick() {
      if (this.shouldPublish) {
        this.publishReview();
      } else {
        this.toggleReviewDropdown();
      }
    },
  },
};
</script>

<template>
  <loading-button
    :loading="isPublishing"
    container-class="btn btn-success js-publish-draft-button qa-submit-review"
    @click="onClick"
  >
    <span>
      {{ label }}
      <drafts-count v-if="showCount" />
    </span>
  </loading-button>
</template>