summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diffs/components/parallel_diff_comment_row.vue
blob: c00b0e010ff0a680370bfb263d5d6d95e96a9cce (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<script>
import { mapActions } from 'vuex';
import DiffDiscussions from './diff_discussions.vue';
import DiffLineNoteForm from './diff_line_note_form.vue';
import DiffDiscussionReply from './diff_discussion_reply.vue';

export default {
  components: {
    DiffDiscussions,
    DiffLineNoteForm,
    DiffDiscussionReply,
  },
  props: {
    line: {
      type: Object,
      required: true,
    },
    diffFileHash: {
      type: String,
      required: true,
    },
    lineIndex: {
      type: Number,
      required: true,
    },
    helpPagePath: {
      type: String,
      required: false,
      default: '',
    },
  },
  computed: {
    hasExpandedDiscussionOnLeft() {
      return this.line.left && this.line.left.discussions.length
        ? this.line.left.discussionsExpanded
        : false;
    },
    hasExpandedDiscussionOnRight() {
      return this.line.right && this.line.right.discussions.length
        ? this.line.right.discussionsExpanded
        : false;
    },
    hasAnyExpandedDiscussion() {
      return this.hasExpandedDiscussionOnLeft || this.hasExpandedDiscussionOnRight;
    },
    shouldRenderDiscussionsOnLeft() {
      return (
        this.line.left &&
        this.line.left.discussions &&
        this.line.left.discussions.length &&
        this.hasExpandedDiscussionOnLeft
      );
    },
    shouldRenderDiscussionsOnRight() {
      return (
        this.line.right &&
        this.line.right.discussions &&
        this.line.right.discussions.length &&
        this.hasExpandedDiscussionOnRight &&
        this.line.right.type
      );
    },
    showRightSideCommentForm() {
      return this.line.right && this.line.right.type && this.line.right.hasForm;
    },
    showLeftSideCommentForm() {
      return this.line.left && this.line.left.hasForm;
    },
    className() {
      return (this.left && this.line.left.discussions.length > 0) ||
        (this.right && this.line.right.discussions.length > 0)
        ? ''
        : 'js-temp-notes-holder';
    },
    shouldRender() {
      const { line } = this;
      const hasDiscussion =
        (line.left && line.left.discussions && line.left.discussions.length) ||
        (line.right && line.right.discussions && line.right.discussions.length);

      if (
        hasDiscussion &&
        (this.hasExpandedDiscussionOnLeft || this.hasExpandedDiscussionOnRight)
      ) {
        return true;
      }

      const hasCommentFormOnLeft = line.left && line.left.hasForm;
      const hasCommentFormOnRight = line.right && line.right.hasForm;

      return hasCommentFormOnLeft || hasCommentFormOnRight;
    },
    shouldRenderReplyPlaceholderOnLeft() {
      return Boolean(
        this.line.left && this.line.left.discussions && this.line.left.discussions.length,
      );
    },
    shouldRenderReplyPlaceholderOnRight() {
      return Boolean(
        this.line.right && this.line.right.discussions && this.line.right.discussions.length,
      );
    },
  },
  methods: {
    ...mapActions('diffs', ['showCommentForm']),
    showNewDiscussionForm() {
      this.showCommentForm({ lineCode: this.line.line_code, fileHash: this.diffFileHash });
    },
  },
};
</script>

<template>
  <tr v-if="shouldRender" :class="className" class="notes_holder">
    <td class="notes-content parallel old" colspan="2">
      <div v-if="shouldRenderDiscussionsOnLeft" class="content">
        <diff-discussions
          :discussions="line.left.discussions"
          :line="line.left"
          :help-page-path="helpPagePath"
        />
      </div>
      <diff-discussion-reply
        :has-form="showLeftSideCommentForm"
        :render-reply-placeholder="shouldRenderReplyPlaceholderOnLeft"
        @showNewDiscussionForm="showNewDiscussionForm"
      >
        <template #form>
          <diff-line-note-form
            :diff-file-hash="diffFileHash"
            :line="line.left"
            :note-target-line="line.left"
            :help-page-path="helpPagePath"
            line-position="left"
          />
        </template>
      </diff-discussion-reply>
    </td>
    <td class="notes-content parallel new" colspan="2">
      <div v-if="shouldRenderDiscussionsOnRight" class="content">
        <diff-discussions
          :discussions="line.right.discussions"
          :line="line.right"
          :help-page-path="helpPagePath"
        />
      </div>
      <diff-discussion-reply
        :has-form="showRightSideCommentForm"
        :render-reply-placeholder="shouldRenderReplyPlaceholderOnRight"
        @showNewDiscussionForm="showNewDiscussionForm"
      >
        <template #form>
          <diff-line-note-form
            :diff-file-hash="diffFileHash"
            :line="line.right"
            :note-target-line="line.right"
            line-position="right"
          />
        </template>
      </diff-discussion-reply>
    </td>
  </tr>
</template>