mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-09 01:24:26 +01:00
60 lines
1.6 KiB
Vue
60 lines
1.6 KiB
Vue
<template>
|
|
<div class="w-full my-4">
|
|
<div class="w-full bg-primary px-6 py-1 flex items-center cursor-pointer" @click.stop="clickBar">
|
|
<p class="pr-4">{{ title }}</p>
|
|
<span class="bg-black-400 rounded-xl py-0.5 px-2 text-sm font-mono">{{ files.length }}</span>
|
|
<div class="flex-grow" />
|
|
<div class="cursor-pointer h-9 w-9 rounded-full hover:bg-black-400 flex justify-center items-center duration-500" :class="expand ? 'transform rotate-180' : ''">
|
|
<span class="material-icons text-3xl">expand_more</span>
|
|
</div>
|
|
</div>
|
|
<transition name="slide">
|
|
<div class="w-full" v-show="expand">
|
|
<table class="text-sm tracksTable">
|
|
<tr class="font-book">
|
|
<th class="text-left">Filename</th>
|
|
<th class="text-left">Size</th>
|
|
<th class="text-left">Type</th>
|
|
</tr>
|
|
<template v-for="file in files">
|
|
<tr :key="file.path">
|
|
<td class="font-book pl-2">
|
|
{{ file.name }}
|
|
</td>
|
|
<td class="font-mono">
|
|
{{ $bytesPretty(file.size) }}
|
|
</td>
|
|
<td class="font-book">
|
|
{{ file.filetype }}
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
</table>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
title: String,
|
|
files: {
|
|
type: Array,
|
|
default: () => []
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
expand: false
|
|
}
|
|
},
|
|
computed: {},
|
|
methods: {
|
|
clickBar() {
|
|
this.expand = !this.expand
|
|
}
|
|
},
|
|
mounted() {}
|
|
}
|
|
</script> |