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

packages_list_loader.vue « components « shared « packages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd9ef74d46766b703db522ce5011a596a3a6f01a (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
<script>
import { GlSkeletonLoader } from '@gitlab/ui';

export default {
  components: {
    GlSkeletonLoader,
  },
  props: {
    isGroup: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  computed: {
    desktopShapes() {
      return this.isGroup ? this.$options.shapes.groups : this.$options.shapes.projects;
    },
    desktopHeight() {
      return this.isGroup ? 38 : 54;
    },
    mobileHeight() {
      return this.isGroup ? 160 : 170;
    },
  },
  shapes: {
    groups: [
      { type: 'rect', width: '100', height: '10', x: '0', y: '15' },
      { type: 'rect', width: '100', height: '10', x: '195', y: '15' },
      { type: 'rect', width: '60', height: '10', x: '475', y: '15' },
      { type: 'rect', width: '60', height: '10', x: '675', y: '15' },
      { type: 'rect', width: '100', height: '10', x: '900', y: '15' },
    ],
    projects: [
      { type: 'rect', width: '220', height: '10', x: '0', y: '20' },
      { type: 'rect', width: '60', height: '10', x: '305', y: '20' },
      { type: 'rect', width: '60', height: '10', x: '535', y: '20' },
      { type: 'rect', width: '100', height: '10', x: '760', y: '20' },
      { type: 'rect', width: '30', height: '30', x: '970', y: '10', ref: 'button-loader' },
    ],
  },
  rowsToRender: {
    mobile: 5,
    desktop: 20,
  },
};
</script>

<template>
  <div>
    <div class="d-xs-flex flex-column d-md-none">
      <gl-skeleton-loader
        v-for="index in $options.rowsToRender.mobile"
        :key="index"
        :width="500"
        :height="mobileHeight"
        preserve-aspect-ratio="xMinYMax meet"
      >
        <rect width="500" height="10" x="0" y="15" rx="4" />
        <rect width="500" height="10" x="0" y="45" rx="4" />
        <rect width="500" height="10" x="0" y="75" rx="4" />
        <rect width="500" height="10" x="0" y="105" rx="4" />
        <rect v-if="isGroup" width="500" height="10" x="0" y="135" rx="4" />
        <rect v-else width="30" height="30" x="470" y="135" rx="4" />
      </gl-skeleton-loader>
    </div>

    <div class="d-none d-md-flex flex-column">
      <gl-skeleton-loader
        v-for="index in $options.rowsToRender.desktop"
        :key="index"
        :width="1000"
        :height="desktopHeight"
        preserve-aspect-ratio="xMinYMax meet"
      >
        <component
          :is="r.type"
          v-for="(r, rIndex) in desktopShapes"
          :key="rIndex"
          rx="4"
          v-bind="r"
        />
      </gl-skeleton-loader>
    </div>
  </div>
</template>