summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/components/merge_conflict_warning.vue
blob: 6cb1ed4cbcf7d5e7efa029e9d82291f3607a3dda (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
<script>
import { GlButton, GlAlert, GlModalDirective } from '@gitlab/ui';

export default {
  components: {
    GlAlert,
    GlButton,
  },
  directives: {
    GlModalDirective,
  },
  props: {
    mergeable: {
      type: Boolean,
      required: true,
    },
    resolutionPath: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div>
    <gl-alert
      :dismissible="false"
      :title="__('There are merge conflicts')"
      variant="warning"
      class="gl-mb-5"
    >
      <p class="gl-mb-2">
        {{ __('The comparison view may be inaccurate due to merge conflicts.') }}
      </p>
      <p class="gl-mb-0">
        {{
          __(
            'Resolve these conflicts, or ask someone with write access to this repository to resolve them locally.',
          )
        }}
      </p>
      <template #actions>
        <gl-button
          v-if="resolutionPath"
          :href="resolutionPath"
          variant="confirm"
          class="gl-mr-3 gl-alert-action"
        >
          {{ __('Resolve conflicts') }}
        </gl-button>
        <gl-button
          v-if="mergeable"
          v-gl-modal-directive="'modal-merge-info'"
          class="gl-alert-action"
        >
          {{ __('Resolve locally') }}
        </gl-button>
      </template>
    </gl-alert>
  </div>
</template>