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: efd9f8db908953872c5a49efa7066d4ed653621b (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
<script>
import { GlSkeletonLoader } from '@gitlab/ui';

export default {
  components: {
    GlSkeletonLoader,
  },
  shapes: [
    { 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="gl-flex-direction-column gl-display-sm-none" data-testid="mobile-loader">
      <gl-skeleton-loader
        v-for="index in $options.rowsToRender.mobile"
        :key="index"
        :width="500"
        :height="170"
        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 width="500" height="10" x="0" y="135" rx="4" />
      </gl-skeleton-loader>
    </div>
    <div
      class="gl-display-none gl-display-sm-flex gl-flex-direction-column"
      data-testid="desktop-loader"
    >
      <gl-skeleton-loader
        v-for="index in $options.rowsToRender.desktop"
        :key="index"
        :width="1000"
        :height="54"
        preserve-aspect-ratio="xMinYMax meet"
      >
        <component
          :is="r.type"
          v-for="(r, rIndex) in $options.shapes"
          :key="rIndex"
          rx="4"
          v-bind="r"
        />
      </gl-skeleton-loader>
    </div>
  </div>
</template>