summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repo/components/repo_loading_file.vue
blob: 832b45b2b2944f5f30ef26d02d78f733f721e562 (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
<script>
  import repoMixin from '../mixins/repo_mixin';

  export default {
    mixins: [
      repoMixin,
    ],
    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="!isMini">
      <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>