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

repo_loading_file.vue « components « repo « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e6c405f292ea475505aa9dbdbda5a6116266935 (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
<script>
  import { mapGetters } from 'vuex';

  export default {
    computed: {
      ...mapGetters([
        'isCollapsed',
      ]),
    },
    methods: {
      lineOfCode(n) {
        return `skeleton-line-${n}`;
      },
    },
  };
</script>

<template>
  <tr
    class="loading-file"
    aria-label="Loading files"
  >
    <td>
      <div
        class="animation-container animation-container-small">
        <div
          v-for="n in 6"
          :key="n"
          :class="lineOfCode(n)">
        </div>
      </div>
    </td>
    <template v-if="!isCollapsed">
      <td
        class="hidden-sm hidden-xs">
        <div class="animation-container">
          <div
            v-for="n in 6"
            :key="n"
            :class="lineOfCode(n)">
          </div>
        </div>
      </td>

      <td
        class="hidden-xs">
        <div class="animation-container animation-container-small animation-container-right">
          <div
            v-for="n in 6"
            :key="n"
            :class="lineOfCode(n)">
          </div>
        </div>
      </td>
    </template>
  </tr>
</template>