mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-24 19:11:44 +01:00
37 lines
1.1 KiB
Vue
37 lines
1.1 KiB
Vue
|
<template>
|
||
|
<div v-show="isScanning" class="fixed bottom-0 left-0 right-0 mx-auto z-20 max-w-lg">
|
||
|
<div class="w-full my-1 rounded-lg drop-shadow-lg px-4 py-2 flex items-center justify-center text-center transition-all border border-white border-opacity-40 shadow-md bg-warning">
|
||
|
<p class="text-lg font-sans" v-html="text" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {
|
||
|
text() {
|
||
|
return `Scanning... <span class="font-mono">${this.scanNum}</span> of <span class="font-mono">${this.scanTotal}</span> <strong class='font-mono px-2'>${this.scanPercent}</strong>`
|
||
|
},
|
||
|
isScanning() {
|
||
|
return this.$store.state.isScanning
|
||
|
},
|
||
|
scanProgress() {
|
||
|
return this.$store.state.scanProgress
|
||
|
},
|
||
|
scanPercent() {
|
||
|
return this.scanProgress ? this.scanProgress.progress + '%' : '0%'
|
||
|
},
|
||
|
scanNum() {
|
||
|
return this.scanProgress ? this.scanProgress.done : 0
|
||
|
},
|
||
|
scanTotal() {
|
||
|
return this.scanProgress ? this.scanProgress.total : 0
|
||
|
}
|
||
|
},
|
||
|
methods: {},
|
||
|
mounted() {}
|
||
|
}
|
||
|
</script>
|