summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages/details/components/package_history.vue
blob: 413ab1d15cbbd817ed98e2629ac1d91fc0aed146 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<script>
import { GlLink, GlSprintf } from '@gitlab/ui';
import { s__ } from '~/locale';
import TimeAgoTooltip from '~/vue_shared/components/time_ago_tooltip.vue';
import HistoryItem from '~/vue_shared/components/registry/history_item.vue';

export default {
  name: 'PackageHistory',
  i18n: {
    createdOn: s__('PackageRegistry|%{name} version %{version} was created %{datetime}'),
    updatedAtText: s__('PackageRegistry|%{name} version %{version} was updated %{datetime}'),
    commitText: s__('PackageRegistry|Commit %{link} on branch %{branch}'),
    pipelineText: s__('PackageRegistry|Pipeline %{link} triggered %{datetime} by %{author}'),
    publishText: s__('PackageRegistry|Published to the %{project} Package Registry %{datetime}'),
  },
  components: {
    GlLink,
    GlSprintf,
    HistoryItem,
    TimeAgoTooltip,
  },
  props: {
    packageEntity: {
      type: Object,
      required: true,
    },
    projectName: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      showDescription: false,
    };
  },
  computed: {
    packagePipeline() {
      return this.packageEntity.pipeline?.id ? this.packageEntity.pipeline : null;
    },
  },
};
</script>

<template>
  <div class="issuable-discussion">
    <h3 class="gl-font-lg" data-testid="title">{{ __('History') }}</h3>
    <ul class="timeline main-notes-list notes gl-mb-4" data-testid="timeline">
      <history-item icon="clock" data-testid="created-on">
        <gl-sprintf :message="$options.i18n.createdOn">
          <template #name>
            <strong>{{ packageEntity.name }}</strong>
          </template>
          <template #version>
            <strong>{{ packageEntity.version }}</strong>
          </template>
          <template #datetime>
            <time-ago-tooltip :time="packageEntity.created_at" />
          </template>
        </gl-sprintf>
      </history-item>
      <history-item icon="pencil" data-testid="updated-at">
        <gl-sprintf :message="$options.i18n.updatedAtText">
          <template #name>
            <strong>{{ packageEntity.name }}</strong>
          </template>
          <template #version>
            <strong>{{ packageEntity.version }}</strong>
          </template>
          <template #datetime>
            <time-ago-tooltip :time="packageEntity.updated_at" />
          </template>
        </gl-sprintf>
      </history-item>
      <template v-if="packagePipeline">
        <history-item icon="commit" data-testid="commit">
          <gl-sprintf :message="$options.i18n.commitText">
            <template #link>
              <gl-link :href="packagePipeline.project.commit_url">{{
                packagePipeline.sha
              }}</gl-link>
            </template>
            <template #branch>
              <strong>{{ packagePipeline.ref }}</strong>
            </template>
          </gl-sprintf>
        </history-item>
        <history-item icon="pipeline" data-testid="pipeline">
          <gl-sprintf :message="$options.i18n.pipelineText">
            <template #link>
              <gl-link :href="packagePipeline.project.pipeline_url"
                >#{{ packagePipeline.id }}</gl-link
              >
            </template>
            <template #datetime>
              <time-ago-tooltip :time="packagePipeline.created_at" />
            </template>
            <template #author>{{ packagePipeline.user.name }}</template>
          </gl-sprintf>
        </history-item>
      </template>
      <history-item icon="package" data-testid="published">
        <gl-sprintf :message="$options.i18n.publishText">
          <template #project>
            <strong>{{ projectName }}</strong>
          </template>
          <template #datetime>
            <time-ago-tooltip :time="packageEntity.created_at" />
          </template>
        </gl-sprintf>
      </history-item>
    </ul>
  </div>
</template>