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

harbor_tags.vue « pages « harbor_registry « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1323d347d10bf4a94ab6004b0815273a85245495 (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
<script>
import TagsHeader from '~/packages_and_registries/harbor_registry/components/tags/tags_header.vue';
import TagsList from '~/packages_and_registries/harbor_registry/components/tags/tags_list.vue';
import { getHarborTags } from '~/rest_api';
import { FETCH_TAGS_ERROR_MESSAGE } from '~/packages_and_registries/harbor_registry/constants';
import { convertObjectPropsToCamelCase } from '~/lib/utils/common_utils';
import { createAlert } from '~/flash';
import { formatPagination } from '~/packages_and_registries/harbor_registry/utils';

export default {
  name: 'HarborTagsPage',
  components: {
    TagsHeader,
    TagsList,
  },
  inject: ['endpoint', 'breadCrumbState'],
  data() {
    return {
      tagsLoading: false,
      pageInfo: {},
      tags: [],
    };
  },
  computed: {
    currentPage() {
      return this.pageInfo?.page || 1;
    },
    artifactDetail() {
      const { project, image, digest } = this.$route.params;

      return {
        project,
        image,
        digest,
      };
    },
  },
  mounted() {
    this.updateBreadcrumb();
    this.fetchTagsData();
  },
  methods: {
    updateBreadcrumb() {
      const artifactPath = `${this.artifactDetail.project}/${this.artifactDetail.image}`;
      const nameList = [artifactPath, this.artifactDetail.digest];
      const hrefList = [`/${artifactPath}`, this.$route.path];

      this.breadCrumbState.updateName(nameList);
      this.breadCrumbState.updateHref(hrefList);
    },
    fetchPrevPage() {
      const prevPageNum = this.currentPage - 1;
      this.fetchTagsData(prevPageNum);
    },
    fetchNextPage() {
      const nextPageNum = this.currentPage + 1;
      this.fetchTagsData(nextPageNum);
    },
    fetchTagsData(requestPage) {
      this.tagsLoading = true;

      const params = {
        page: requestPage,
        requestPath: this.endpoint,
        repoName: this.artifactDetail.image,
        digest: this.artifactDetail.digest,
      };

      getHarborTags(params)
        .then((res) => {
          this.pageInfo = formatPagination(res.headers);

          this.tags = (res?.data || []).map((tagInfo) => {
            return convertObjectPropsToCamelCase(tagInfo);
          });
        })
        .catch(() => {
          createAlert({ message: FETCH_TAGS_ERROR_MESSAGE });
        })
        .finally(() => {
          this.tagsLoading = false;
        });
    },
  },
};
</script>

<template>
  <div>
    <tags-header
      :artifact-detail="artifactDetail"
      :page-info="pageInfo"
      :tags-loading="tagsLoading"
    />
    <tags-list
      :tags="tags"
      :is-loading="tagsLoading"
      :page-info="pageInfo"
      @prev-page="fetchPrevPage"
      @next-page="fetchNextPage"
    />
  </div>
</template>