mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
101 lines
3.5 KiB
Vue
101 lines
3.5 KiB
Vue
<template>
|
|
<div ref="wrapper" class="relative" v-click-outside="clickOutside">
|
|
<button type="button" class="relative w-full h-full bg-fg border border-gray-500 hover:border-gray-300 rounded shadow-sm pl-3 pr-3 py-0 text-left focus:outline-none sm:text-sm cursor-pointer" aria-haspopup="listbox" aria-expanded="true" aria-labelledby="listbox-label" @click.prevent="showMenu = !showMenu">
|
|
<span class="flex items-center justify-between">
|
|
<span class="block truncate" :class="!selectedText ? 'text-gray-300' : ''">{{ selectedText }}</span>
|
|
<span class="material-icons text-xl text-yellow-400">{{ descending ? 'expand_more' : 'expand_less' }}</span>
|
|
</span>
|
|
<!-- <span class="ml-3 absolute inset-y-0 right-0 flex items-center pr-2 pointer-events-none">
|
|
<svg class="h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
|
|
<path fill-rule="evenodd" d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z" clip-rule="evenodd" />
|
|
</svg>
|
|
</span> -->
|
|
</button>
|
|
|
|
<ul v-show="showMenu" class="absolute z-10 mt-1 w-full bg-bg border border-black-200 shadow-lg max-h-56 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm" tabindex="-1" role="listbox" aria-labelledby="listbox-label" aria-activedescendant="listbox-option-3">
|
|
<template v-for="item in items">
|
|
<li :key="item.value" class="text-gray-50 select-none relative py-2 pr-9 cursor-pointer hover:bg-black-400" id="listbox-option-0" role="option" @click="clickedOption(item.value)">
|
|
<div class="flex items-center">
|
|
<span class="font-normal ml-3 block truncate">{{ item.text }}</span>
|
|
</div>
|
|
<span v-if="item.value === selected" class="text-yellow-400 absolute inset-y-0 right-0 flex items-center pr-4">
|
|
<span class="material-icons text-xl">{{ descending ? 'expand_more' : 'expand_less' }}</span>
|
|
</span>
|
|
</li>
|
|
</template>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: String,
|
|
descending: Boolean
|
|
},
|
|
data() {
|
|
return {
|
|
showMenu: false,
|
|
items: [
|
|
{
|
|
text: 'Title',
|
|
value: 'book.title'
|
|
},
|
|
{
|
|
text: 'Author',
|
|
value: 'book.author'
|
|
},
|
|
{
|
|
text: 'Added At',
|
|
value: 'addedAt'
|
|
},
|
|
{
|
|
text: 'Duration',
|
|
value: 'duration'
|
|
},
|
|
{
|
|
text: 'Size',
|
|
value: 'size'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
computed: {
|
|
selected: {
|
|
get() {
|
|
return this.value
|
|
},
|
|
set(val) {
|
|
this.$emit('input', val)
|
|
}
|
|
},
|
|
selectedDesc: {
|
|
get() {
|
|
return this.descending
|
|
},
|
|
set(val) {
|
|
this.$emit('update:descending', val)
|
|
}
|
|
},
|
|
selectedText() {
|
|
var _sel = this.items.find((i) => i.value === this.selected)
|
|
if (!_sel) return ''
|
|
return _sel.text
|
|
}
|
|
},
|
|
methods: {
|
|
clickOutside() {
|
|
this.showMenu = false
|
|
},
|
|
clickedOption(val) {
|
|
if (this.selected === val) {
|
|
this.selectedDesc = !this.selectedDesc
|
|
} else {
|
|
this.selected = val
|
|
}
|
|
this.showMenu = false
|
|
this.$nextTick(() => this.$emit('change', val))
|
|
}
|
|
}
|
|
}
|
|
</script> |