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

security_report_download_dropdown.vue « components « security_reports « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61bca18b0504ee1257b07d209df2d0cf426a8733 (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
<script>
import { GlDisclosureDropdown } from '@gitlab/ui';
import { s__, sprintf } from '~/locale';

export default {
  name: 'SecurityReportDownloadDropdown',
  components: {
    GlDisclosureDropdown,
  },
  props: {
    artifacts: {
      type: Array,
      required: true,
    },
    loading: {
      type: Boolean,
      required: false,
      default: false,
    },
    text: {
      type: String,
      required: false,
      default: '',
    },
  },
  computed: {
    showDropdown() {
      return this.loading || this.artifacts.length > 0;
    },
    items() {
      return this.artifacts.map(({ name, path }) => ({
        text: this.artifactText(name),
        href: path,
        extraAttrs: {
          download: '',
        },
      }));
    },
  },
  methods: {
    artifactText(name) {
      return sprintf(s__('SecurityReports|Download %{artifactName}'), {
        artifactName: name,
      });
    },
  },
};
</script>

<template>
  <gl-disclosure-dropdown
    v-if="showDropdown"
    :items="items"
    :toggle-text="text"
    :loading="loading"
    icon="download"
    size="small"
    placement="right"
  />
</template>