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

button.vue « metadata « components « ci_secure_files « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a45c1313ca5aa15e393d2b628b288d03ee9fdee (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
<!-- eslint-disable vue/multi-word-component-names -->
<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"
    icon="doc-text"
    :aria-label="$options.i18n.metadataLabel"
    @click="selectSecureFile()"
  />
</template>