summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/reports/components/summary_row.vue
blob: 4456d84c968ffb7c76da6ccd2608614fc5dfaf04 (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
<script>
import CiIcon from '~/vue_shared/components/ci_icon.vue';
import LoadingIcon from '~/vue_shared/components/loading_icon.vue';
import Popover from '~/vue_shared/components/help_popover.vue';

/**
 * Renders the summary row for each report
 *
 * Used both in MR widget and Pipeline's view for:
 * - Unit tests reports
 * - Security reports
 */

export default {
  name: 'ReportSummaryRow',
  components: {
    CiIcon,
    LoadingIcon,
    Popover,
  },
  props: {
    summary: {
      type: String,
      required: true,
    },
    statusIcon: {
      type: String,
      required: true,
    },
    popoverOptions: {
      type: Object,
      required: false,
      default: null,
    },
  },
  computed: {
    iconStatus() {
      return {
        group: this.statusIcon,
        icon: `status_${this.statusIcon}`,
      };
    },
  },
};
</script>
<template>
  <div class="report-block-list-issue report-block-list-issue-parent">
    <div class="report-block-list-icon append-right-10 prepend-left-5">
      <loading-icon
        v-if="statusIcon === 'loading'"
        css-class="report-block-list-loading-icon"
      />
      <ci-icon
        v-else
        :status="iconStatus"
      />
    </div>

    <div class="report-block-list-issue-description">
      <div class="report-block-list-issue-description-text">
        {{ summary }}
      </div>

      <popover
        v-if="popoverOptions"
        :options="popoverOptions"
      />

    </div>
  </div>
</template>