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

abuse_report_notes.vue « components « abuse_report « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29de7e1ad1d3a88f33d6a3ae84d30f6b260804b6 (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
<script>
import { uniqueId } from 'lodash';
import { __ } from '~/locale';
import { createAlert } from '~/alert';
import SkeletonLoadingContainer from '~/vue_shared/components/notes/skeleton_note.vue';
import { SKELETON_NOTES_COUNT } from '~/admin/abuse_report/constants';
import abuseReportNotesQuery from '../graphql/notes/abuse_report_notes.query.graphql';
import AbuseReportDiscussion from './notes/abuse_report_discussion.vue';
import AbuseReportAddNote from './notes/abuse_report_add_note.vue';

export default {
  name: 'AbuseReportNotes',
  SKELETON_NOTES_COUNT,
  i18n: {
    fetchError: __('An error occurred while fetching comments, please try again.'),
  },
  components: {
    SkeletonLoadingContainer,
    AbuseReportDiscussion,
    AbuseReportAddNote,
  },
  props: {
    abuseReportId: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      addNoteKey: uniqueId(`abuse-report-add-note-${this.abuseReportId}`),
    };
  },
  apollo: {
    abuseReportNotes: {
      query: abuseReportNotesQuery,
      variables() {
        return {
          id: this.abuseReportId,
        };
      },
      update(data) {
        return data.abuseReport?.discussions || [];
      },
      skip() {
        return !this.abuseReportId;
      },
      error() {
        createAlert({ message: this.$options.i18n.fetchError });
      },
    },
  },
  computed: {
    initialLoading() {
      return this.$apollo.queries.abuseReportNotes.loading;
    },
    notesArray() {
      return this.abuseReportNotes?.nodes || [];
    },
  },
  methods: {
    getDiscussionKey(discussion) {
      const discussionId = discussion.notes.nodes[0].id;
      return discussionId.split('/')[discussionId.split('/').length - 1];
    },
    updateKey() {
      this.addNoteKey = uniqueId(`abuse-report-add-note-${this.abuseReportId}`);
    },
  },
};
</script>

<template>
  <div>
    <div class="issuable-discussion gl-mb-5 gl-clearfix!">
      <template v-if="initialLoading">
        <ul class="notes main-notes-list timeline">
          <skeleton-loading-container
            v-for="index in $options.SKELETON_NOTES_COUNT"
            :key="index"
            class="note-skeleton"
          />
        </ul>
      </template>

      <template v-else>
        <ul class="notes main-notes-list timeline">
          <abuse-report-discussion
            v-for="discussion in notesArray"
            :key="getDiscussionKey(discussion)"
            :discussion="discussion.notes.nodes"
            :abuse-report-id="abuseReportId"
          />
        </ul>
        <div class="js-comment-form">
          <ul class="notes notes-form timeline">
            <abuse-report-add-note
              :key="addNoteKey"
              :is-new-discussion="true"
              :abuse-report-id="abuseReportId"
              @cancelEditing="updateKey"
            />
          </ul>
        </div>
      </template>
    </div>
  </div>
</template>