mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
61 lines
1.2 KiB
Vue
61 lines
1.2 KiB
Vue
<template>
|
|
<div class="flex h-full items-center justify-center" v-if="isLoading || isEmpty">
|
|
<!--Show message for user-->
|
|
<div v-if="!isLoading" class="text-content text-center">
|
|
<slot></slot>
|
|
</div>
|
|
|
|
<!--Show spinner when loading content-->
|
|
<div v-else class="fixed top-0 bottom-0 sm:relative">
|
|
<Spinner />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Spinner from './Spinner'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'EmptyFilePage',
|
|
components: {
|
|
Spinner,
|
|
},
|
|
computed: {
|
|
...mapGetters(['isLoading', 'entries']),
|
|
isEmpty() {
|
|
return this.entries && this.entries.length === 0
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '../../../sass/vuefilemanager/variables';
|
|
@import '../../../sass/vuefilemanager/mixins';
|
|
|
|
.title {
|
|
@include font-size(20);
|
|
color: $text;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
}
|
|
|
|
.description {
|
|
@include font-size(13);
|
|
color: $text-muted;
|
|
margin-bottom: 20px;
|
|
display: block;
|
|
}
|
|
|
|
.dark {
|
|
.title {
|
|
color: $dark_mode_text_primary;
|
|
}
|
|
|
|
.description {
|
|
color: $dark_mode_text_secondary;
|
|
}
|
|
}
|
|
</style>
|