summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/merge_conflicts/components/parallel_conflict_lines.vue
blob: 2c59e7bfa2fa35d122ce35b61ed0efed66479cca (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
<script>
import { GlSafeHtmlDirective as SafeHtml } from '@gitlab/ui';
import { mapActions } from 'vuex';
import syntaxHighlight from '~/syntax_highlight';
import { SYNTAX_HIGHLIGHT_CLASS } from '../constants';
import utilsMixin from '../mixins/line_conflict_utils';

export default {
  directives: {
    SafeHtml,
  },
  mixins: [utilsMixin],
  SYNTAX_HIGHLIGHT_CLASS,
  props: {
    file: {
      type: Object,
      required: true,
    },
  },
  mounted() {
    syntaxHighlight(document.querySelectorAll(`.${SYNTAX_HIGHLIGHT_CLASS}`));
  },
  methods: {
    ...mapActions(['handleSelected']),
  },
};
</script>
<template>
  <!-- Unfortunately there isn't a good key for these sections -->
  <!-- eslint-disable vue/require-v-for-key -->
  <table :class="['diff-wrap-lines code', $options.SYNTAX_HIGHLIGHT_CLASS]">
    <tr v-for="section in file.parallelLines" class="line_holder parallel">
      <template v-for="line in section">
        <template v-if="line.isHeader">
          <td class="diff-line-num header" :class="lineCssClass(line)"></td>
          <td class="line_content header" :class="lineCssClass(line)">
            <strong>{{ line.richText }}</strong>
            <button
              type="button"
              class="gl-border-1 gl-border-solid"
              @click="handleSelected({ file, line })"
            >
              {{ line.buttonTitle }}
            </button>
          </td>
        </template>
        <template v-else>
          <td class="diff-line-num old_line" :class="lineCssClass(line)">
            {{ line.lineNumber }}
          </td>
          <td
            v-safe-html="line.richText"
            class="line_content parallel"
            :class="lineCssClass(line)"
          ></td>
        </template>
      </template>
    </tr>
  </table>
</template>