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

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

export default RepoLoadingFile;
</script>

<template>
<tr v-if="loading.tree && !hasFiles" class="loading-file">
  <td>
    <div class="animation-container animation-container-small">
      <div v-for="n in 6" :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" :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" :class="lineOfCode(n)"></div>
    </div>
  </td>
</tr>
</template>