debian-mirror-gitlab/app/assets/javascripts/admin/statistics_panel/components/app.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
997 B
Vue
Raw Normal View History

2019-12-04 20:38:33 +05:30
<script>
import { GlLoadingIcon } from '@gitlab/ui';
2021-03-11 19:13:27 +05:30
import { mapState, mapGetters, mapActions } from 'vuex';
2019-12-04 20:38:33 +05:30
import statisticsLabels from '../constants';
export default {
components: {
GlLoadingIcon,
},
data() {
return {
statisticsLabels,
};
},
computed: {
...mapState(['isLoading', 'statistics']),
...mapGetters(['getStatistics']),
},
mounted() {
this.fetchStatistics();
},
methods: {
...mapActions(['fetchStatistics']),
},
};
</script>
<template>
2021-03-11 19:13:27 +05:30
<div class="gl-card">
<div class="gl-card-body">
2019-12-04 20:38:33 +05:30
<h4>{{ __('Statistics') }}</h4>
2022-07-16 23:28:13 +05:30
<gl-loading-icon v-if="isLoading" size="lg" class="my-3" />
2019-12-04 20:38:33 +05:30
<template v-else>
<p
v-for="statistic in getStatistics(statisticsLabels)"
:key="statistic.key"
class="js-stats"
>
{{ statistic.label }}
<span class="light float-right">{{ statistic.value }}</span>
</p>
</template>
</div>
</div>
</template>