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

inline_conflict_lines.vue « components « merge_conflicts « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9721481e6befb63f1d7f66f314c9ae2d867234e8 (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
<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>
  <table :class="['diff-wrap-lines code code-commit', $options.SYNTAX_HIGHLIGHT_CLASS]">
    <!-- Unfortunately there isn't a good key for these sections -->
    <!-- eslint-disable vue/require-v-for-key -->
    <tr v-for="line in file.inlineLines" class="line_holder diff-inline">
      <template v-if="line.isHeader">
        <td :class="lineCssClass(line)" class="diff-line-num header"></td>
        <td :class="lineCssClass(line)" class="diff-line-num header"></td>
        <td :class="lineCssClass(line)" class="line_content header">
          <strong>{{ line.richText }}</strong>
          <button class="btn" @click="handleSelected({ file, line })">
            {{ line.buttonTitle }}
          </button>
        </td>
      </template>
      <template v-else>
        <td :class="lineCssClass(line)" class="diff-line-num new_line">
          <a>{{ line.new_line }}</a>
        </td>
        <td :class="lineCssClass(line)" class="diff-line-num old_line">
          <a>{{ line.old_line }}</a>
        </td>
        <td v-safe-html="line.richText" :class="lineCssClass(line)" class="line_content"></td>
      </template>
    </tr>
  </table>
</template>