summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/markdown/suggestion_diff.vue
blob: a351ca62c94bbfa38ebcf3017140a204d95552f0 (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
<script>
import SuggestionDiffHeader from './suggestion_diff_header.vue';

export default {
  components: {
    SuggestionDiffHeader,
  },
  props: {
    newLines: {
      type: Array,
      required: true,
    },
    fromContent: {
      type: String,
      required: false,
      default: '',
    },
    fromLine: {
      type: Number,
      required: true,
    },
    suggestion: {
      type: Object,
      required: true,
    },
    disabled: {
      type: Boolean,
      required: false,
      default: false,
    },
    helpPagePath: {
      type: String,
      required: true,
    },
  },
  methods: {
    applySuggestion(callback) {
      this.$emit('apply', { suggestionId: this.suggestion.id, callback });
    },
  },
};
</script>

<template>
  <div class="md-suggestion">
    <suggestion-diff-header
      class="qa-suggestion-diff-header"
      :can-apply="suggestion.appliable && suggestion.current_user.can_apply && !disabled"
      :is-applied="suggestion.applied"
      :help-page-path="helpPagePath"
      @apply="applySuggestion"
    />
    <table class="mb-3 md-suggestion-diff js-syntax-highlight code">
      <tbody>
        <!-- Old Line -->
        <tr class="line_holder old">
          <td class="diff-line-num old_line qa-old-diff-line-number old">{{ fromLine }}</td>
          <td class="diff-line-num new_line old"></td>
          <td class="line_content old">
            <span>{{ fromContent }}</span>
          </td>
        </tr>
        <!-- New Line(s) -->
        <tr v-for="(line, key) of newLines" :key="key" class="line_holder new">
          <td class="diff-line-num old_line new"></td>
          <td class="diff-line-num new_line qa-new-diff-line-number new">{{ line.lineNumber }}</td>
          <td class="line_content new">
            <span>{{ line.content }}</span>
          </td>
        </tr>
      </tbody>
    </table>
  </div>
</template>