2021-09-01 20:07:11 -05:00
|
|
|
<template>
|
|
|
|
<div class="w-full h-16 bg-primary relative">
|
2021-11-14 19:59:34 -06:00
|
|
|
<div id="appbar" class="absolute top-0 left-0 w-full h-full z-10 flex items-center px-2">
|
2021-09-02 12:19:26 -05:00
|
|
|
<nuxt-link v-show="!showBack" to="/" class="mr-3">
|
|
|
|
<img src="/Logo.png" class="h-10 w-10" />
|
2021-09-01 20:07:11 -05:00
|
|
|
</nuxt-link>
|
2021-09-02 12:19:26 -05:00
|
|
|
<a v-if="showBack" @click="back" class="rounded-full h-10 w-10 flex items-center justify-center hover:bg-white hover:bg-opacity-10 mr-2 cursor-pointer">
|
|
|
|
<span class="material-icons text-3xl text-white">arrow_back</span>
|
2021-09-01 20:07:11 -05:00
|
|
|
</a>
|
2021-11-14 19:59:34 -06:00
|
|
|
<div v-if="socketConnected">
|
2021-10-06 07:24:15 -05:00
|
|
|
<div class="px-4 py-2 bg-bg bg-opacity-30 rounded-md flex items-center" @click="clickShowLibraryModal">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 7v10c0 2.21 3.582 4 8 4s8-1.79 8-4V7M4 7c0 2.21 3.582 4 8 4s8-1.79 8-4M4 7c0-2.21 3.582-4 8-4s8 1.79 8 4m0 5c0 2.21-3.582 4-8 4s-8-1.79-8-4" />
|
|
|
|
</svg>
|
|
|
|
<p class="text-lg font-book leading-4 ml-2">{{ currentLibraryName }}</p>
|
|
|
|
</div>
|
2021-09-02 12:19:26 -05:00
|
|
|
</div>
|
2021-09-01 20:07:11 -05:00
|
|
|
<div class="flex-grow" />
|
2021-11-02 19:44:42 -05:00
|
|
|
|
2021-11-19 10:14:36 -06:00
|
|
|
<nuxt-link class="h-7 mx-2" to="/search">
|
|
|
|
<span class="material-icons" style="font-size: 1.75rem">search</span>
|
|
|
|
</nuxt-link>
|
|
|
|
|
2021-11-14 19:59:34 -06:00
|
|
|
<div class="h-7 mx-2">
|
|
|
|
<span class="material-icons" style="font-size: 1.75rem" @click="clickShowSideDrawer">menu</span>
|
|
|
|
</div>
|
2021-09-01 20:07:11 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
2021-12-05 18:31:47 -06:00
|
|
|
return {}
|
2021-09-01 20:07:11 -05:00
|
|
|
},
|
|
|
|
computed: {
|
2021-11-14 19:59:34 -06:00
|
|
|
socketConnected() {
|
|
|
|
return this.$store.state.socketConnected
|
|
|
|
},
|
2021-10-06 07:24:15 -05:00
|
|
|
currentLibrary() {
|
|
|
|
return this.$store.getters['libraries/getCurrentLibrary']
|
|
|
|
},
|
|
|
|
currentLibraryName() {
|
|
|
|
return this.currentLibrary ? this.currentLibrary.name : 'Main'
|
|
|
|
},
|
2021-09-01 20:07:11 -05:00
|
|
|
showBack() {
|
2021-11-14 19:59:34 -06:00
|
|
|
return this.$route.name !== 'index' && !this.$route.name.startsWith('bookshelf')
|
2021-09-01 20:07:11 -05:00
|
|
|
},
|
|
|
|
user() {
|
|
|
|
return this.$store.state.user.user
|
|
|
|
},
|
|
|
|
username() {
|
|
|
|
return this.user ? this.user.username : 'err'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2021-11-14 19:59:34 -06:00
|
|
|
clickShowSideDrawer() {
|
|
|
|
this.$store.commit('setShowSideDrawer', true)
|
|
|
|
},
|
2021-10-06 07:24:15 -05:00
|
|
|
clickShowLibraryModal() {
|
|
|
|
this.$store.commit('libraries/setShowModal', true)
|
|
|
|
},
|
2021-09-01 20:07:11 -05:00
|
|
|
back() {
|
|
|
|
if (this.$route.name === 'audiobook-id-edit') {
|
|
|
|
this.$router.push(`/audiobook/${this.$route.params.id}`)
|
|
|
|
} else {
|
2021-11-14 19:59:34 -06:00
|
|
|
this.$router.push('/bookshelf')
|
2021-09-01 20:07:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#appbar {
|
|
|
|
box-shadow: 0px 5px 5px #11111155;
|
|
|
|
}
|
2021-09-12 18:37:08 -05:00
|
|
|
.loader-dots div {
|
|
|
|
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
|
|
}
|
|
|
|
.loader-dots div:nth-child(1) {
|
|
|
|
left: 0px;
|
|
|
|
animation: loader-dots1 0.6s infinite;
|
|
|
|
}
|
|
|
|
.loader-dots div:nth-child(2) {
|
|
|
|
left: 0px;
|
|
|
|
animation: loader-dots2 0.6s infinite;
|
|
|
|
}
|
|
|
|
.loader-dots div:nth-child(3) {
|
|
|
|
left: 10px;
|
|
|
|
animation: loader-dots2 0.6s infinite;
|
|
|
|
}
|
|
|
|
.loader-dots div:nth-child(4) {
|
|
|
|
left: 20px;
|
|
|
|
animation: loader-dots3 0.6s infinite;
|
|
|
|
}
|
|
|
|
@keyframes loader-dots1 {
|
|
|
|
0% {
|
|
|
|
transform: scale(0);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes loader-dots3 {
|
|
|
|
0% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes loader-dots2 {
|
|
|
|
0% {
|
|
|
|
transform: translate(0, 0);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translate(10px, 0);
|
|
|
|
}
|
|
|
|
}
|
2021-09-01 20:07:11 -05:00
|
|
|
</style>
|