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

added_commit_message.vue « components « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 437d035fbf5d09ef72f26a3191083bff3bae88ee (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<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: {
    state: {
      type: String,
      required: false,
      default: '',
    },
    isSquashEnabled: {
      type: Boolean,
      required: false,
      default: false,
    },
    isFastForwardEnabled: {
      type: Boolean,
      required: true,
    },
    commitsCount: {
      type: Number,
      required: false,
      default: 0,
    },
    targetBranch: {
      type: String,
      required: true,
    },
    mergeCommitSha: {
      type: String,
      required: false,
      default: '',
    },
  },
  computed: {
    isMerged() {
      return this.state === 'merged';
    },
    targetBranchEscaped() {
      return escape(this.targetBranch);
    },
    commitsCountMessage() {
      return n__('%d commit', '%d commits', this.isSquashEnabled ? 1 : this.commitsCount);
    },
    message() {
      if (this.glFeatures.restructuredMrWidget) {
        if (this.state === 'closed') {
          return s__('mrWidgetCommitsAdded|The changes were not merged into %{targetBranch}.');
        } else if (this.isMerged) {
          return s__(
            'mrWidgetCommitsAdded|Changes merged into %{targetBranch} with %{mergeCommitSha}%{squashedCommits}.',
          );
        }

        return this.isFastForwardEnabled
          ? s__('mrWidgetCommitsAdded|%{commitCount} will be added to %{targetBranch}.')
          : s__(
              'mrWidgetCommitsAdded|%{commitCount} and %{mergeCommitCount} will be added to %{targetBranch}%{squashedCommits}.',
            );
      }

      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';
    },
    squashCommitMessage() {
      if (this.isMerged) {
        return s__('mergedCommitsAdded|(commits were squashed)');
      }

      return n__('(squashes %d commit)', '(squashes %d commits)', this.commitsCount);
    },
  },
  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">
          {{ squashCommitMessage }}</template
        ></template
      >
      <template #mergeCommitSha>
        <template v-if="glFeatures.restructuredMrWidget"
          ><span class="label-branch">{{ mergeCommitSha }}</span></template
        >
      </template>
    </gl-sprintf>
  </span>
</template>