summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repo/components/repo_loading_file.vue
blob: bc8c64c8362b1e44d0b9e507040573eb6b07eb7d (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
<script>
const RepoLoadingFile = {
  props: {
    loading: {
      type: Object,
      required: false,
      default: {},
    },
    hasFiles: {
      type: Boolean,
      required: false,
      default: false,
    },
    isMini: {
      type: Boolean,
      required: false,
      default: false,
    },
  },

  computed: {
    showGhostLines() {
      return this.loading.tree && !this.hasFiles;
    },
  },

  methods: {
    lineOfCode(n) {
      return `skeleton-line-${n}`;
    },
  },
};

export default RepoLoadingFile;
</script>

<template>
  <tr
    v-if="showGhostLines"
    class="loading-file">
    <td>
      <div
        class="animation-container animation-container-small">
        <div
          v-for="n in 6"
          :key="n"
          :class="lineOfCode(n)">
        </div>
      </div>
    </td>

    <td
      v-if="!isMini"
      class="hidden-sm hidden-xs">
      <div class="animation-container">
        <div
          v-for="n in 6"
          :key="n"
          :class="lineOfCode(n)">
        </div>
      </div>
    </td>

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