summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages/shared/components/publish_method.vue
blob: 1e18562a42142b146ee75b0f6a5c1ddb3a3b8183 (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
<script>
import { GlIcon, GlLink } from '@gitlab/ui';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import { getCommitLink } from '../utils';

export default {
  name: 'PublishMethod',
  components: {
    ClipboardButton,
    GlIcon,
    GlLink,
  },
  props: {
    packageEntity: {
      type: Object,
      required: true,
    },
    isGroup: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  computed: {
    hasPipeline() {
      return Boolean(this.packageEntity.pipeline);
    },
    packageShaShort() {
      return this.packageEntity.pipeline?.sha.substring(0, 8);
    },
    linkToCommit() {
      return getCommitLink(this.packageEntity, this.isGroup);
    },
  },
};
</script>

<template>
  <div class="d-flex align-items-center text-secondary order-1 order-md-0 mb-md-1">
    <template v-if="hasPipeline">
      <gl-icon name="git-merge" class="mr-1" />
      <strong ref="pipeline-ref" class="mr-1 text-dark">{{ packageEntity.pipeline.ref }}</strong>

      <gl-icon name="commit" class="mr-1" />
      <gl-link ref="pipeline-sha" :href="linkToCommit" class="mr-1">{{ packageShaShort }}</gl-link>

      <clipboard-button
        :text="packageEntity.pipeline.sha"
        :title="__('Copy commit SHA')"
        css-class="border-0 text-secondary py-0 px-1"
      />
    </template>

    <template v-else>
      <gl-icon name="upload" class="mr-1" />
      <strong ref="manual-ref" class="text-dark">{{
        s__('PackageRegistry|Manually Published')
      }}</strong>
    </template>
  </div>
</template>