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: 38e9f16d04135e152dcb3e2d9639d63af8598b0a (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)" :key="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)" :key="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)" :key="n"></div>
    </div>
  </td>
</tr>
</template>