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

app.vue « components « storage_counter « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a911ea3d9b479ea6d5220d7948b0071640daa2f (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
<script>
import { GlAlert, GlLink, GlLoadingIcon } from '@gitlab/ui';
import { sprintf } from '~/locale';
import UsageGraph from '~/vue_shared/components/storage_counter/usage_graph.vue';
import {
  ERROR_MESSAGE,
  LEARN_MORE_LABEL,
  USAGE_QUOTAS_LABEL,
  TOTAL_USAGE_TITLE,
  TOTAL_USAGE_SUBTITLE,
  TOTAL_USAGE_DEFAULT_TEXT,
  HELP_LINK_ARIA_LABEL,
} from '../constants';
import getProjectStorageCount from '../queries/project_storage.query.graphql';
import { parseGetProjectStorageResults } from '../utils';
import StorageTable from './storage_table.vue';

export default {
  name: 'StorageCounterApp',
  components: {
    GlAlert,
    GlLink,
    GlLoadingIcon,
    StorageTable,
    UsageGraph,
  },
  inject: ['projectPath', 'helpLinks'],
  apollo: {
    project: {
      query: getProjectStorageCount,
      variables() {
        return {
          fullPath: this.projectPath,
        };
      },
      update(data) {
        return parseGetProjectStorageResults(data, this.helpLinks);
      },
      error() {
        this.error = ERROR_MESSAGE;
      },
    },
  },
  data() {
    return {
      project: {},
      error: '',
    };
  },
  computed: {
    totalUsage() {
      return this.project?.storage?.totalUsage || TOTAL_USAGE_DEFAULT_TEXT;
    },
    storageTypes() {
      return this.project?.storage?.storageTypes || [];
    },
  },
  methods: {
    clearError() {
      this.error = '';
    },
    helpLinkAriaLabel(linkTitle) {
      return sprintf(HELP_LINK_ARIA_LABEL, {
        linkTitle,
      });
    },
  },
  LEARN_MORE_LABEL,
  USAGE_QUOTAS_LABEL,
  TOTAL_USAGE_TITLE,
  TOTAL_USAGE_SUBTITLE,
};
</script>
<template>
  <gl-loading-icon v-if="$apollo.queries.project.loading" class="gl-mt-5" size="md" />
  <gl-alert v-else-if="error" variant="danger" @dismiss="clearError">
    {{ error }}
  </gl-alert>
  <div v-else>
    <div class="gl-pt-5 gl-px-3">
      <div class="gl-display-flex gl-justify-content-space-between gl-align-items-center">
        <div>
          <p class="gl-m-0 gl-font-lg gl-font-weight-bold">{{ $options.TOTAL_USAGE_TITLE }}</p>
          <p class="gl-m-0 gl-text-gray-400">
            {{ $options.TOTAL_USAGE_SUBTITLE }}
            <gl-link
              :href="helpLinks.usageQuotasHelpPagePath"
              target="_blank"
              :aria-label="helpLinkAriaLabel($options.USAGE_QUOTAS_LABEL)"
              data-testid="usage-quotas-help-link"
            >
              {{ $options.LEARN_MORE_LABEL }}
            </gl-link>
          </p>
        </div>
        <p class="gl-m-0 gl-font-size-h-display gl-font-weight-bold" data-testid="total-usage">
          {{ totalUsage }}
        </p>
      </div>
    </div>
    <div v-if="project.statistics" class="gl-w-full">
      <usage-graph :root-storage-statistics="project.statistics" :limit="0" />
    </div>
    <storage-table :storage-types="storageTypes" />
  </div>
</template>