2018-05-09 12:01:36 +05:30
|
|
|
<script>
|
|
|
|
import { mapState } from 'vuex';
|
|
|
|
import skeletonLoadingContainer from '~/vue_shared/components/skeleton_loading_container.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
skeletonLoadingContainer,
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState([
|
|
|
|
'leftPanelCollapsed',
|
|
|
|
]),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<tr
|
|
|
|
class="loading-file"
|
|
|
|
aria-label="Loading files"
|
|
|
|
>
|
|
|
|
<td class="multi-file-table-col-name">
|
|
|
|
<skeleton-loading-container
|
|
|
|
:small="true"
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
<template v-if="!leftPanelCollapsed">
|
2018-11-08 19:23:39 +05:30
|
|
|
<td class="d-none d-sm-none d-md-block">
|
2018-05-09 12:01:36 +05:30
|
|
|
<skeleton-loading-container
|
|
|
|
:small="true"
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
<td class="d-none d-sm-block">
|
2018-05-09 12:01:36 +05:30
|
|
|
<skeleton-loading-container
|
|
|
|
:small="true"
|
2018-11-08 19:23:39 +05:30
|
|
|
class="animation-container-right"
|
2018-05-09 12:01:36 +05:30
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</template>
|
|
|
|
</tr>
|
|
|
|
</template>
|