summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/added_commit_message.vue
blob: 492e68b636f2831465e89ebb91f26f5463858ff8 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<script>
import { GlSprintf } from '@gitlab/ui';
import { escape } from 'lodash';
import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import { n__, s__ } from '~/locale';

const mergeCommitCount = s__('mrWidgetCommitsAdded|1 merge commit');

export default {
  components: {
    GlSprintf,
  },
  mixins: [glFeatureFlagMixin()],
  props: {
    isSquashEnabled: {
      type: Boolean,
      required: false,
      default: false,
    },
    isFastForwardEnabled: {
      type: Boolean,
      required: true,
    },
    commitsCount: {
      type: Number,
      required: false,
      default: 0,
    },
    targetBranch: {
      type: String,
      required: true,
    },
  },
  computed: {
    targetBranchEscaped() {
      return escape(this.targetBranch);
    },
    commitsCountMessage() {
      return n__('%d commit', '%d commits', this.isSquashEnabled ? 1 : this.commitsCount);
    },
    message() {
      return this.isFastForwardEnabled
        ? s__('mrWidgetCommitsAdded|Adds %{commitCount} to %{targetBranch}.')
        : s__(
            'mrWidgetCommitsAdded|Adds %{commitCount} and %{mergeCommitCount} to %{targetBranch}%{squashedCommits}.',
          );
    },
    textDecorativeComponent() {
      return this.glFeatures.restructuredMrWidget ? 'span' : 'strong';
    },
  },
  mergeCommitCount,
};
</script>

<template>
  <span>
    <gl-sprintf :message="message">
      <template #commitCount>
        <component :is="textDecorativeComponent" class="commits-count-message">{{
          commitsCountMessage
        }}</component>
      </template>
      <template #mergeCommitCount>
        <component :is="textDecorativeComponent">{{ $options.mergeCommitCount }}</component>
      </template>
      <template #targetBranch>
        <span class="label-branch">{{ targetBranchEscaped }}</span>
      </template>
      <template #squashedCommits>
        <template v-if="glFeatures.restructuredMrWidget && isSquashEnabled">
          {{ n__('(squashes %d commit)', '(squashes %d commits)', commitsCount) }}</template
        ></template
      >
    </gl-sprintf>
  </span>
</template>