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

add_context_commits_modal_trigger.vue « components « add_context_commits_modal « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78a575ffe965a7735598e2b48343a31c05ad1842 (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
<script>
import { GlButton } from '@gitlab/ui';
import { s__ } from '~/locale';
import eventHub from '../event_hub';

export default {
  components: {
    GlButton,
  },
  props: {
    commitsEmpty: {
      type: Boolean,
      required: false,
      default: false,
    },
    contextCommitsEmpty: {
      type: Boolean,
      required: true,
    },
  },
  computed: {
    buttonText() {
      return this.contextCommitsEmpty || this.commitsEmpty
        ? s__('AddContextCommits|Add previously merged commits')
        : s__('AddContextCommits|Add/remove');
    },
  },
  methods: {
    openModal() {
      eventHub.$emit('openModal');
    },
  },
};
</script>

<template>
  <gl-button
    :class="[
      {
        'ml-3': !contextCommitsEmpty,
        'mt-3': !commitsEmpty && contextCommitsEmpty,
      },
    ]"
    :variant="commitsEmpty ? 'info' : 'default'"
    @click="openModal"
  >
    {{ buttonText }}
  </gl-button>
</template>