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

parallel_diff_view.vue « components « diffs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7280338b6897ccc65d49d2dadff6604d8484b5e (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
<script>
import { mapGetters } from 'vuex';
import parallelDiffTableRow from './parallel_diff_table_row.vue';
import parallelDiffCommentRow from './parallel_diff_comment_row.vue';
import { EMPTY_CELL_TYPE } from '../constants';
import { trimFirstCharOfLineContent } from '../store/utils';

export default {
  components: {
    parallelDiffTableRow,
    parallelDiffCommentRow,
  },
  props: {
    diffFile: {
      type: Object,
      required: true,
    },
    diffLines: {
      type: Array,
      required: true,
    },
  },
  computed: {
    ...mapGetters(['commit']),
    parallelDiffLines() {
      return this.diffLines.map(line => {
        if (line.left) {
          Object.assign(line, { left: trimFirstCharOfLineContent(line.left) });
        } else {
          Object.assign(line, { left: { type: EMPTY_CELL_TYPE } });
        }

        if (line.right) {
          Object.assign(line, { right: trimFirstCharOfLineContent(line.right) });
        } else {
          Object.assign(line, { right: { type: EMPTY_CELL_TYPE } });
        }

        return line;
      });
    },
    diffLinesLength() {
      return this.parallelDiffLines.length;
    },
    commitId() {
      return this.commit && this.commit.id;
    },
    userColorScheme() {
      return window.gon.user_color_scheme;
    },
  },
};
</script>

<template>
  <div
    :class="userColorScheme"
    :data-commit-id="commitId"
    class="code diff-wrap-lines js-syntax-highlight text-file"
  >
    <table>
      <tbody>
        <template
          v-for="(line, index) in parallelDiffLines"
        >
          <parallel-diff-table-row
            :diff-file="diffFile"
            :line="line"
            :is-bottom="index + 1 === diffLinesLength"
            :key="index"
          />
          <parallel-diff-comment-row
            :key="line.left.lineCode || line.right.lineCode"
            :line="line"
            :diff-file="diffFile"
            :diff-lines="parallelDiffLines"
            :line-index="index"
          />
        </template>
      </tbody>
    </table>
  </div>
</template>