summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/artifacts_block.vue
blob: 2850a8e86fdfd23c9b0446df9df6b92f2ca40ddd (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<script>
import { GlIcon, GlLink } from '@gitlab/ui';
import TimeagoTooltip from '~/vue_shared/components/time_ago_tooltip.vue';
import timeagoMixin from '~/vue_shared/mixins/timeago';

export default {
  components: {
    TimeagoTooltip,
    GlIcon,
    GlLink,
  },
  mixins: [timeagoMixin],
  props: {
    artifact: {
      type: Object,
      required: true,
    },
    helpUrl: {
      type: String,
      required: true,
    },
  },
  computed: {
    isExpired() {
      return this.artifact?.expired && !this.isLocked;
    },
    isLocked() {
      return this.artifact?.locked;
    },
    // Only when the key is `false` we can render this block
    willExpire() {
      return this.artifact?.expired === false && !this.isLocked;
    },
  },
};
</script>
<template>
  <div class="block">
    <div class="title font-weight-bold">{{ s__('Job|Job artifacts') }}</div>
    <p
      v-if="isExpired || willExpire"
      class="build-detail-row"
      data-testid="artifacts-remove-timeline"
    >
      <span v-if="isExpired">{{ s__('Job|The artifacts were removed') }}</span>
      <span v-if="willExpire">{{ s__('Job|The artifacts will be removed') }}</span>
      <timeago-tooltip v-if="artifact.expire_at" :time="artifact.expire_at" />
      <gl-link
        :href="helpUrl"
        target="_blank"
        rel="noopener noreferrer nofollow"
        data-testid="artifact-expired-help-link"
      >
        <gl-icon name="question" />
      </gl-link>
    </p>
    <p v-else-if="isLocked" class="build-detail-row">
      <span data-testid="job-locked-message">{{
        s__(
          'Job|These artifacts are the latest. They will not be deleted (even if expired) until newer artifacts are available.',
        )
      }}</span>
    </p>
    <div class="btn-group d-flex gl-mt-3" role="group">
      <gl-link
        v-if="artifact.keep_path"
        :href="artifact.keep_path"
        class="btn btn-sm btn-default"
        data-method="post"
        data-testid="keep-artifacts"
        >{{ s__('Job|Keep') }}</gl-link
      >
      <gl-link
        v-if="artifact.download_path"
        :href="artifact.download_path"
        class="btn btn-sm btn-default"
        download
        rel="nofollow"
        data-testid="download-artifacts"
        >{{ s__('Job|Download') }}</gl-link
      >
      <gl-link
        v-if="artifact.browse_path"
        :href="artifact.browse_path"
        class="btn btn-sm btn-default"
        data-testid="browse-artifacts"
        data-qa-selector="browse_artifacts_button"
        >{{ s__('Job|Browse') }}</gl-link
      >
    </div>
  </div>
</template>