mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-21 12:29:02 +02:00
66 lines
2.4 KiB
Vue
66 lines
2.4 KiB
Vue
|
<template>
|
||
|
<modals-modal v-model="show" :width="300" :processing="processing" height="100%">
|
||
|
<template #outer>
|
||
|
<div class="absolute top-4 left-4 z-40" style="max-width: 80%">
|
||
|
<p class="text-white text-2xl truncate">Libraries</p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<div class="w-full h-full overflow-hidden absolute top-0 left-0 flex items-center justify-center" @click="show = false">
|
||
|
<div class="w-full overflow-x-hidden overflow-y-auto bg-primary rounded-lg border border-white border-opacity-20" style="max-height: 75%" @click.stop>
|
||
|
<ul class="h-full w-full" role="listbox" aria-labelledby="listbox-label">
|
||
|
<template v-for="library in libraries">
|
||
|
<li :key="library.id" class="text-gray-50 select-none relative py-3 cursor-pointer hover:bg-black-400" :class="currentLibraryId === library.id ? 'bg-bg bg-opacity-80' : ''" role="option" @click="clickedOption(library)">
|
||
|
<div v-show="currentLibraryId === library.id" class="absolute top-0 left-0 w-0.5 bg-warning h-full" />
|
||
|
<div class="flex items-center px-3">
|
||
|
<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>
|
||
|
|
||
|
<span class="font-normal block truncate text-lg ml-4">{{ library.name }}</span>
|
||
|
</div>
|
||
|
</li>
|
||
|
</template>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</modals-modal>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
processing: false
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
show: {
|
||
|
get() {
|
||
|
return this.$store.state.libraries.showModal
|
||
|
},
|
||
|
set(val) {
|
||
|
this.$store.commit('libraries/setShowModal', val)
|
||
|
}
|
||
|
},
|
||
|
currentLibraryId() {
|
||
|
return this.$store.state.libraries.currentLibraryId
|
||
|
},
|
||
|
libraries() {
|
||
|
return this.$store.state.libraries.libraries
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
async clickedOption(lib) {
|
||
|
this.show = false
|
||
|
|
||
|
this.$store.commit('libraries/setCurrentLibrary', lib.id)
|
||
|
await this.$store.dispatch('audiobooks/load')
|
||
|
|
||
|
this.$localStore.setCurrentLibrary(lib)
|
||
|
}
|
||
|
},
|
||
|
mounted() {}
|
||
|
}
|
||
|
</script>
|