mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
38 lines
793 B
Vue
38 lines
793 B
Vue
<template>
|
|
<div class="page" :class="streamAudiobook ? 'streaming' : ''">
|
|
<div class="flex h-full">
|
|
<app-side-rail />
|
|
<div class="flex-grow">
|
|
<app-book-shelf-toolbar is-home />
|
|
<app-book-shelf-categorized />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
async asyncData({ store, params, redirect }) {
|
|
var libraryId = params.library
|
|
var library = await store.dispatch('libraries/fetch', libraryId)
|
|
if (!library) {
|
|
return redirect(`/oops?message=Library "${libraryId}" not found`)
|
|
}
|
|
return {
|
|
library
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {
|
|
streamAudiobook() {
|
|
return this.$store.state.streamAudiobook
|
|
}
|
|
},
|
|
methods: {},
|
|
mounted() {},
|
|
beforeDestroy() {}
|
|
}
|
|
</script>
|