summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci_secure_files/components/metadata/button.vue
blob: 799c6ec79d4ed7cc4fb1f0ae9edcd94d896e64ec (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
<script>
import { GlButton, GlModalDirective, GlTooltipDirective } from '@gitlab/ui';
import { __ } from '~/locale';

export default {
  components: {
    GlButton,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
    GlModal: GlModalDirective,
  },
  props: {
    secureFile: {
      type: Object,
      required: true,
    },
    admin: {
      type: Boolean,
      required: true,
    },
    modalId: {
      type: String,
      required: true,
    },
  },
  i18n: {
    metadataLabel: __('View File Metadata'),
  },
  metadataModalId: 'metadataModalId',
  methods: {
    selectSecureFile() {
      this.$emit('selectSecureFile', this.secureFile);
    },
    hasMetadata() {
      return this.secureFile.metadata !== null;
    },
  },
};
</script>

<template>
  <gl-button
    v-if="admin && hasMetadata()"
    v-gl-modal="modalId"
    v-gl-tooltip.hover.top="$options.i18n.metadataLabel"
    category="secondary"
    variant="info"
    icon="doc-text"
    :aria-label="$options.i18n.metadataLabel"
    data-testid="metadata-button"
    @click="selectSecureFile()"
  />
</template>